@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);
  }
}
.com_joeworkman_stacks_link_stack a{display:block;text-decoration:none !important;padding:0;margin:0}
/* https://github.com/una/CSSgram */

/* The MIT License (MIT)

Copyright (c) 2015 Una Kravets

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. */

.aden{position:relative;-webkit-filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2);filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)}.aden:after,.aden:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.aden img{width:100%;z-index:1}.aden:before{z-index:2}.aden:after{z-index:3}.aden::after{background:-webkit-linear-gradient(left,rgba(66,10,14,.2),transparent);background:linear-gradient(to right,rgba(66,10,14,.2),transparent);mix-blend-mode:darken}.gingham::after,.perpetua::after,.reyes::after{mix-blend-mode:soft-light}.inkwell{position:relative;-webkit-filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1);filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)}.inkwell:after,.inkwell:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.inkwell img{width:100%;z-index:1}.inkwell:before{z-index:2}.inkwell:after{z-index:3}.perpetua{position:relative}.perpetua:after,.perpetua:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.perpetua img{width:100%;z-index:1}.perpetua:before{z-index:2}.perpetua:after{z-index:3}.perpetua::after{background:-webkit-linear-gradient(top,#005b9a,#e6c13d);background:linear-gradient(to bottom,#005b9a,#e6c13d);opacity:.5}.reyes{position:relative;-webkit-filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75);filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)}.reyes:after,.reyes:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.reyes img{width:100%;z-index:1}.reyes:before{z-index:2}.reyes:after{z-index:3}.reyes::after{background:#efcdad;opacity:.5}.gingham{position:relative;-webkit-filter:brightness(1.05) hue-rotate(-10deg);filter:brightness(1.05) hue-rotate(-10deg)}.gingham:after,.gingham:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.gingham img{width:100%;z-index:1}.gingham:before{z-index:2}.gingham:after{z-index:3}.gingham::after{background:#e6e6fa}.toaster{position:relative;-webkit-filter:contrast(1.5) brightness(.9);filter:contrast(1.5) brightness(.9)}.toaster:after,.toaster:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.toaster img{width:100%;z-index:1}.toaster:before{z-index:2}.toaster:after{z-index:3}.toaster::after{background:-webkit-radial-gradient(circle,#804e0f,#3b003b);background:radial-gradient(circle,#804e0f,#3b003b);mix-blend-mode:screen}.walden{position:relative;-webkit-filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6);filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)}.walden:after,.walden:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.walden img{width:100%;z-index:1}.walden:before{z-index:2}.walden:after{z-index:3}.walden::after{background:#04c;mix-blend-mode:screen;opacity:.3}.hudson{position:relative;-webkit-filter:brightness(1.2) contrast(.9) saturate(1.1);filter:brightness(1.2) contrast(.9) saturate(1.1)}.hudson:after,.hudson:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.hudson img{width:100%;z-index:1}.hudson:before{z-index:2}.hudson:after{z-index:3}.hudson::after{background:-webkit-radial-gradient(circle,#a6b1ff 50%,#342134);background:radial-gradient(circle,#a6b1ff 50%,#342134);mix-blend-mode:multiply;opacity:.5}.earlybird{position:relative;-webkit-filter:contrast(.9) sepia(.2);filter:contrast(.9) sepia(.2)}.earlybird:after,.earlybird:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.earlybird img{width:100%;z-index:1}.earlybird:before{z-index:2}.earlybird:after{z-index:3}.earlybird::after{background:-webkit-radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%);mix-blend-mode:overlay}.mayfair{position:relative;-webkit-filter:contrast(1.1) saturate(1.1);filter:contrast(1.1) saturate(1.1)}.mayfair:after,.mayfair:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.mayfair img{width:100%;z-index:1}.mayfair:before{z-index:2}.mayfair:after{z-index:3}.mayfair::after{background:-webkit-radial-gradient(40% 40%,circle,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%);mix-blend-mode:overlay;opacity:.4}.lofi{position:relative;-webkit-filter:saturate(1.1) contrast(1.5);filter:saturate(1.1) contrast(1.5)}.lofi:after,.lofi:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.lofi img{width:100%;z-index:1}.lofi:before{z-index:2}.lofi:after{z-index:3}.lofi::after{background:-webkit-radial-gradient(circle,transparent 70%,#222 150%);background:radial-gradient(circle,transparent 70%,#222 150%);mix-blend-mode:multiply}._1977{position:relative;-webkit-filter:contrast(1.1) brightness(1.1) saturate(1.3);filter:contrast(1.1) brightness(1.1) saturate(1.3)}._1977:after,._1977:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}._1977 img{width:100%;z-index:1}._1977:before{z-index:2}._1977:after{z-index:3;background:rgba(243,106,188,.3);mix-blend-mode:screen}.brooklyn{position:relative;-webkit-filter:contrast(.9) brightness(1.1);filter:contrast(.9) brightness(1.1)}.brooklyn:after,.brooklyn:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.brooklyn img{width:100%;z-index:1}.brooklyn:before{z-index:2}.brooklyn:after{z-index:3}.brooklyn::after{background:-webkit-radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8);mix-blend-mode:overlay}.xpro2{position:relative;-webkit-filter:sepia(.3);filter:sepia(.3)}.xpro2:after,.xpro2:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.xpro2 img{width:100%;z-index:1}.xpro2:before{z-index:2}.xpro2:after{z-index:3}.xpro2::after{background:-webkit-radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%);mix-blend-mode:color-burn}.nashville{position:relative;-webkit-filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2);filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)}.nashville:after,.nashville:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.nashville img{width:100%;z-index:1}.nashville:before{z-index:2}.nashville:after{z-index:3}.nashville::after{background:rgba(0,70,150,.4);mix-blend-mode:lighten}.nashville::before{background:rgba(247,176,153,.56);mix-blend-mode:darken}.lark{position:relative;-webkit-filter:contrast(.9);filter:contrast(.9)}.lark:after,.lark:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.lark img{width:100%;z-index:1}.lark:before{z-index:2}.lark:after{z-index:3}.lark::after{background:rgba(242,242,242,.8);mix-blend-mode:darken}.lark::before{background:#22253f;mix-blend-mode:color-dodge}.moon{position:relative;-webkit-filter:grayscale(1) contrast(1.1) brightness(1.1);filter:grayscale(1) contrast(1.1) brightness(1.1)}.moon:after,.moon:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.moon img{width:100%;z-index:1}.moon:before{z-index:2}.moon:after{z-index:3}.moon::before{background:#a0a0a0;mix-blend-mode:soft-light}.moon::after{background:#383838;mix-blend-mode:lighten}.clarendon{position:relative;-webkit-filter:contrast(1.2) saturate(1.35);filter:contrast(1.2) saturate(1.35)}.clarendon:after,.clarendon:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.clarendon img{width:100%;z-index:1}.clarendon:before{z-index:2;background:rgba(127,187,227,.2);mix-blend-mode:overlay}.clarendon:after{z-index:3}.willow{position:relative;-webkit-filter:grayscale(.5) contrast(.95) brightness(.9);filter:grayscale(.5) contrast(.95) brightness(.9)}.willow:after,.willow:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.willow img{width:100%;z-index:1}.willow:before{z-index:2}.willow:after{z-index:3}.willow::before{background-color:radial-gradient(40%,circle,#d4a9af 55%,#000 150%);mix-blend-mode:overlay}.willow::after{background-color:#d8cdcb;mix-blend-mode:color}.rise{position:relative;-webkit-filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9);filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)}.rise:after,.rise:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.rise img{width:100%;z-index:1}.rise:before{z-index:2}.rise:after{z-index:3}.rise::after{background:-webkit-radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%);mix-blend-mode:overlay;opacity:.6}.rise::before{background:-webkit-radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4));mix-blend-mode:multiply}.slumber{position:relative;-webkit-filter:saturate(.66) brightness(1.05);filter:saturate(.66) brightness(1.05)}.slumber:after,.slumber:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.slumber img{width:100%;z-index:1}.slumber:before{z-index:2}.slumber:after{z-index:3}.slumber::after{background:rgba(125,105,24,.5);mix-blend-mode:soft-light}.slumber::before{background:rgba(69,41,12,.4);mix-blend-mode:lighten}.brannan{position:relative;-webkit-filter:sepia(.5) contrast(1.4);filter:sepia(.5) contrast(1.4)}.brannan:after,.brannan:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.brannan img{width:100%;z-index:1}.brannan:before{z-index:2}.brannan:after{z-index:3}.brannan::after{background-color:rgba(161,44,199,.31);mix-blend-mode:lighten}.valencia{position:relative;-webkit-filter:contrast(1.08) brightness(1.08) sepia(.08);filter:contrast(1.08) brightness(1.08) sepia(.08)}.valencia:after,.valencia:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.valencia img{width:100%;z-index:1}.valencia:before{z-index:2}.valencia:after{z-index:3}.valencia::after{background:#3a0339;mix-blend-mode:exclusion;opacity:.5}.kelvin{position:relative}.kelvin:after,.kelvin:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.kelvin img{width:100%;z-index:1}.kelvin:before{z-index:2}.kelvin:after{z-index:3}.kelvin::after{background:#b77d21;mix-blend-mode:overlay}.kelvin::before{background:#382c34;mix-blend-mode:color-dodge}.maven{position:relative;-webkit-filter:sepia(.25) brightness(.95) contrast(.95) saturate(1.5);filter:sepia(.25) brightness(.95) contrast(.95) saturate(1.5)}.maven:after,.maven:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.maven img{width:100%;z-index:1}.maven:before{z-index:2}.maven:after{z-index:3;background:rgba(3,230,26,.2);mix-blend-mode:hue}.stinson{position:relative;-webkit-filter:contrast(.75) saturate(.85) brightness(1.15);filter:contrast(.75) saturate(.85) brightness(1.15)}.stinson:after,.stinson:before{content:'';display:block;height:100%;width:100%;top:0;left:0;position:absolute;pointer-events:none}.stinson img{width:100%;z-index:1}.stinson:before{z-index:2}.stinson:after{z-index:3}.stinson::before{background:rgba(240,149,128,.2);mix-blend-mode:soft-light}
@font-face {
	font-family: 'icomoon';
	src: url("../index_files/icons/icomoon.eot?hg8hv3");
	src: url("../index_files/icons/icomoon.eot?#iefixhg8hv3") format("embedded-opentype"), url("../index_files/icons/icomoon.woff2?hg8hv3") format("woff2"), url("../index_files/icons/icomoon.ttf?hg8hv3") format("truetype"), url("../index_files/icons/icomoon.woff?hg8hv3") format("woff"), url("../index_files/icons/icomoon.svg?hg8hv3#icomoon") format("svg");
	font-weight: normal;
	font-style: normal; }
[class^="sp-icon-"], [class*=" sp-icon-"] {
	font-family: 'icomoon';
	speak: none;
	color: #1A2B4E;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; }

.sp-icon-chevron-rounded:before{content: "\e600"; }
.sp-icon-chevron-rounded-thick:before{content: "\e601"; }
.sp-icon-chevron-thin:before{content: "\e602"; }
.sp-icon-chevron-thick:before{content: "\e603"; }
.sp-icon-arrow:before{content: "\e604"; }
.sp-icon-arrow-thin:before{content: "\e605"; }
.sp-icon-arrow-thick:before{content: "\e606"; }
.sp-icon-round-1:before{content: "\e607"; }
.sp-icon-round-2:before{content: "\e608"; }
.sp-icon-round-3:before{content: "\e609"; }
.sp-icon-round-4:before{content: "\e60a"; }

#ncd-sp-arrow {
	display: inline-block;
	line-height: 0;
	z-index: 10000;
	padding: 0;
	background: #FFFFFF;
	border-radius: 100px;
	border-width: 0;
	border-style: solid;
	
	background: none;
	
	opacity: 0;
	border-color: #BF6F3D;
}
#ncd-sp-arrow i {font-size: 44px;}
#ncd-sp-arrow.show i {cursor: pointer;}


#ncd-sp-arrow {
	position: fixed;
	opacity: 0;
	margin: 30px;
	-webkit-transition: opacity 150ms, -webkit-transform 150ms;
	transition: opacity 150ms, transform 150ms;
	-webkit-transform: translateY(-30px);
			-ms-transform: translateY(-30px);
					transform: translateY(-30px);}

#ncd-sp-arrow.show.down-amount, 
#ncd-sp-arrow.show.down-container{
-webkit-transition: opacity 750ms 0, -webkit-transform 750ms 0;
	transition: opacity 750ms 0, transform 750ms 0;
}

#ncd-sp-arrow .rotateThis{
	-webkit-transition: -webkit-transform 700ms;
					transition: transform 700ms;}

#ncd-sp-arrow.show.down-amount .rotateThis, 
#ncd-sp-arrow.show.down-container .rotateThis{
	position: relative;
	-webkit-transform: rotate(-180deg);
					transform: rotate(-180deg);}
#ncd-sp-arrow.down-amount .rotateThis, 
#ncd-sp-arrow.down-container .rotateThis{
	position: relative;
	-webkit-transform: rotate(0);
					transform: rotate(0);}

#ncd-sp-arrow.show {
	opacity: 1; 
	-webkit-transform: rotateY(0) translateX(0) translateY(0) scale(1);
					transform: rotateY(0) translateX(0) translateY(0) scale(1);}

#ncd-sp-arrow.tl{top: 0;left: 0; }
#ncd-sp-arrow.tc{top: 0;left: 50%; }
#ncd-sp-arrow.tr{top: 0;right: 0; }
#ncd-sp-arrow.bl{bottom: 0;left: 0; }
#ncd-sp-arrow.bc{bottom: 0;left: 50%; }
#ncd-sp-arrow.br{bottom: 0;right: 0; }


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



.wow {
	visibility: hidden;
}

#stacks_in_5608 { position: fixed; z-index: 300; width: 135px; font-size: 14px; }

#stacks_in_5608 { top: 5%; left: 1%; float: left; }



.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_5610 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_5610 {
		display: none !important;
	}
}

#stacks_out_5625 {
	margin-left:0;
}
/* DropSlideButtonThing by RapidWeaver Central  */

#dropslidebuttonthingstacks_in_5627 {
	text-align: Center;
}

#stacks_in_5627 .dropslidebuttonthing {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 33px;
	padding: 0 20px;
	font-size: 30px;
	border: 1px solid #1A2B4E;
	color: #1A2B4E;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_5627 .dropslidebuttonthing:hover {
	background: #1A2B4E;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_5627 .dropslidebuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}
#stacks_in_5628 { position: fixed; z-index: 300; width: 135px; font-size: 14px; }

#stacks_in_5628 { top: 5%; right: 1%; float: right; }

@media screen and (max-width:200px) { #stacks_in_5628 { display: none; } }

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_5630 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_5630 {
		display: none !important;
	}
}

#stacks_out_5631 {
	margin-right:0;
}
/* DropSlideButtonThing by RapidWeaver Central  */

#dropslidebuttonthingstacks_in_5633 {
	text-align: Center;
}

#stacks_in_5633 .dropslidebuttonthing {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 33px;
	padding: 0 20px;
	font-size: 30px;
	border: 1px solid #1A2B4E;
	color: #1A2B4E;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_5633 .dropslidebuttonthing:hover {
	background: #1A2B4E;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_5633 .dropslidebuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}#stacks_in_621 *,
#stacks_in_621 *:before,
#stacks_in_621 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_624 {
	line-height: 3em;
	letter-spacing: 3px;
	text-transform: capitalize;
	font-size: 239%;
}
/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../../../rw_common/plugins/stacks/fontawesome/fontawesome-webfont.eot?v=4.4.0');src:url('../../../rw_common/plugins/stacks/fontawesome/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'),url('../../../rw_common/plugins/stacks/fontawesome/fontawesome-webfont.woff2?v=4.4.0') format('woff2'),url('../../../rw_common/plugins/stacks/fontawesome/fontawesome-webfont.woff?v=4.4.0') format('woff'),url('../../../rw_common/plugins/stacks/fontawesome/fontawesome-webfont.ttf?v=4.4.0') format('truetype'),url('../../../rw_common/plugins/stacks/fontawesome/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}

/*Below the Fold*/

.cf:after {
  content: "";
  display: table;
  clear: both;
}

/* Navigation */

#rails-wrapper{
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
#rails-wrapper *{
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
}
.rails-rail {
  float: left;
  width: 250px;
  /*height: 100vh;*/
  /*background: ;*/
  bottom: 0;
  margin: 0;
  z-index: 10;
  position: relative; }

#rails-nav ul,
#rails-nav li,
#rails-nav a{
  padding: 0;
  margin: 0;
  text-shadow: none;
  list-style: none;
  text-decoration: none;
}
#rails-nav{
  -webkit-transition: padding 300ms;
  transition: padding 300ms;
}
#rails-nav.pinned{padding-top: 80px;left: auto !important;}

#rails-nav ul{
	padding: 0 !important;
	margin: 0 !important;
	box-shadow: 0px 0 0 #EAEAEA;
}
#rails-nav ul li {
	padding-top: 0 !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
	margin-top: 0 !important;
	margin-right: 0 !important;
	margin-left: 0 !important;}
#rails-nav ul li div{
	background: #000;
}
#rails-nav ul li {
  background: none !important;
  border-top-style: solid;
  border-top-width: 1px;
  /*
  padding-bottom: px;
  margin-bottom: px;
  */
  font-size: 16px;}

#rails-nav ul li a {
	position: relative;
  display: block;

  padding: 18px;
  border-radius: 0px;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-transition: color 300ms ease-out, background 150ms ease-out;
          transition: color 300ms ease-out, background 150ms ease-out;}

#rails-nav ul li a:hover {
  border: inherent;
  text-decoration: none;}

#rails-nav ul li a i{
  position: relative;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: color 200ms ease-out;
          transition: color 200ms ease-out;}

/* Sections */

#rails-sections {
  margin-right: -250px;
  width: 100%;
  float: right;
  overflow: hidden;
	padding-bottom: 100px;}
	
#rails-sections #rails-push {
  border-width: 0;
  height: auto;
  border-style: solid;
  border-left-width: 0px;
  padding-right: 250px;}

.ts-box{
	padding-top: 0%;
	padding-right: 0%;
	padding-bottom: 5%;
	padding-left: 8%;
}

/* Right Align */

.rail-right .rails-rail{
  float: right;
}
.rail-right #rails-nav ul{
	box-shadow: -0px 0 0 #EAEAEA;
}
.rail-right #rails-sections {
  margin-left: -250px;
  margin-right: 0;
  float: left;
  border-left: none;}
  
.rail-right #rails-sections #rails-push {
  padding-left: 250px;
  border-left-width: 0;
  border-right-width: 0px;
  padding-right: 0;}

/* Colors */

#rails-nav ul li a{color: #BF4B12;}
#rails-nav ul li a:hover{color: #868686;}
#rails-nav ul li a:active{color: #000000;}
#rails-nav ul li a.current{color: #FFFFFF;}

#rails-nav ul li a i{color: #1A2B4E;}
#rails-nav ul li a:hover i{color: #FFFF88;}
#rails-nav ul li a:active i{color: #6C11FF;}
#rails-nav ul li a.current i{color: #BF4B12;}

#rails-nav ul li{border-top-color: #EAEAEA !important;}
#rails-nav ul li div{background: #EAEAEA;}
#rails-sections #rails-push {border-color: #EAEAEA !important;}
#rails-nav ul li a{background: #FFFFFF;}
#rails-nav ul li a:hover{background: #F1F5FF;}
#rails-nav ul li a.current{background: #2E4D8B;}

@media (max-width: 700px) {
  .rails-rail {
    display: none; }
  #rails-sections {
    margin-right: 0;
    padding-bottom: 0;
    box-shadow: none;
    float: none; }
  .rail-right #rails-sections {
    margin-left: 0;
    padding-bottom: 0;
    box-shadow: none;
    float: none; }
  #rails-sections #rails-push {
    padding-right: 0; 
  	border-left-width:0;}
  .rail-right #rails-sections #rails-push {
    padding-left: 0; 
  	border-right-width:0;}
  #rails-sections #rails-push .ts-box{
		padding-right: 5%;
		padding-left: 5%;
  }
}

/*********************
***  PUBLISH MODE  ***
**********************/



#rails-nav ul li.separate,
#rails-nav ul li:first-child{
	border-top-style: none;
  border-top-width: 0;}



/*********************
*****  EDIT MODE  ****
**********************/


#stacks_in_686259 {
	font-size: 126%;
}
#stacks_in_686255_136001 *,
#stacks_in_686255_136001 *:before,
#stacks_in_686255_136001 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686255_136001 {
	width: 62%;
	margin-left:0;
}

#stacks_in_686255_136006 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686255_136007 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686255_136007 {
		display: none !important;
	}
}
#stacks_in_686323 *,
#stacks_in_686323 *:before,
#stacks_in_686323 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686323 {
	width: 62%;
	margin-left:0;
}
/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_686329 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_686329 {
	position: relative;
}

#imageWizardstacks_in_686329 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

#imageWizardLinkstacks_in_686329 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url('../index_files/imageWizardAssets/glass.gif') repeat;
	z-index: 100;
}

#imageWizardLinkstacks_in_686329 a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 102;
	outline: none;
}

#linkIconstacks_in_686329 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 101;
}

#linkIconstacks_in_686329 [class^="fa fa-"] {
	color: #ffffff;
	font-size: 100px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.0;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_686329:hover #linkIconstacks_in_686329 [class^="fa fa-"] {
	opacity: 0.99;
}

#linkShadestacks_in_686329 {
	background: #000000;
	opacity: 0.0;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_686329:hover #linkShadestacks_in_686329 {
	opacity: 0.1;
}

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#imageWizardstacks_in_686329 img {
	-webkit-transform: scale(0.90);
	-moz-transform: scale(0.90);
	-o-transform: scale(0.90);
	-ms-transform: scale(0.90);
	transform: scale(0.90);
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

#imageWizardstacks_in_686329:hover img {
	-webkit-transform: scale(1.00);
	-moz-transform: scale(1.00);
	-o-transform: scale(1.00);
	-ms-transform: scale(1.00);
	transform: scale(1.00);
}

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_686341 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_686341 {
	position: relative;
}

#imageWizardstacks_in_686341 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

#imageWizardLinkstacks_in_686341 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url('../index_files/imageWizardAssets/glass.gif') repeat;
	z-index: 100;
}

#imageWizardLinkstacks_in_686341 a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 102;
	outline: none;
}

#linkIconstacks_in_686341 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 101;
}

#linkIconstacks_in_686341 [class^="fa fa-"] {
	color: #ffffff;
	font-size: 100px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.0;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_686341:hover #linkIconstacks_in_686341 [class^="fa fa-"] {
	opacity: 0.99;
}

#linkShadestacks_in_686341 {
	background: #000000;
	opacity: 0.0;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_686341:hover #linkShadestacks_in_686341 {
	opacity: 0.1;
}

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#imageWizardstacks_in_686341 img {
	-webkit-transform: scale(0.90);
	-moz-transform: scale(0.90);
	-o-transform: scale(0.90);
	-ms-transform: scale(0.90);
	transform: scale(0.90);
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

#imageWizardstacks_in_686341:hover img {
	-webkit-transform: scale(1.00);
	-moz-transform: scale(1.00);
	-o-transform: scale(1.00);
	-ms-transform: scale(1.00);
	transform: scale(1.00);
}

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_682481_136057 {
	width: 100%;
	clear: both;
	padding-top: 100px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_682481_136057 .theDivider1,
#simpleDivider_stacks_in_682481_136057 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_682481_136057 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_682481_136057.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_682481_136057.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_682481_136057 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_682481_136057.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_682481_136057.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_682481_136057.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_682481_136057.bgImageOn .theDivider1 img {
	display: block;
}

/* Start Video Plus stack CSS code */.stacks_in_633178overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_633178leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_633178leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_633178leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_633178leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_633178rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_633178rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_633178theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_633178overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_633178leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_633178leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_633178leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_633178leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_633178rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_633178rightcolContent{		margin: auto;	}}			.stacks_in_633178posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_633178posterWrapper img:hover{	cursor: pointer;}.stacks_in_633178rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_633178videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code *//*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/cleanTabs/
 * Support: support@1littledesigner.com
 * cleanTabs Version 3.9.3
 * Uses jQuery EasyTabs plugin 3.2.0 (licensing listed in script.js)
 */

/* ====================
 * CLEARFIX
 ====================== */
.clearfix:after,
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.clearfix,
.forceClearfix .panel-container div {
	display: inline-block;
}
/* start commented backslash hack \*/
* html .clearfix,
* html .forceClearfix .panel-container div {
	height: 1%;
}
.clearfix,
.forceClearfix .panel-container div {
	display: block;
}
/* close commented backslash hack */
/* ====================
 * REMOVE INTRUSIVE CODING
 ====================== */
#tabContainer_stacks_in_633182,
#tabContainer_stacks_in_633182 .tab-container,
#tabContainer_stacks_in_633182 .etabs,
#tabContainer_stacks_in_633182 .tab,
#tabContainer_stacks_in_633182 .tab a,
#tabContainer_stacks_in_633182 .panel-container,
#tabContainer_stacks_in_633182 .tabContent {
	margin: 0; 
	padding: 0;
	opacity: 1;
}
#tabContainer_stacks_in_633182 li {
	margin-left: 0;
	margin-right: 0;
}
#tabContainer_stacks_in_633182 li a {
	line-height: 2.1 !important;
}
#tabContainer_stacks_in_633182 li a.active {
	line-height: 2.1 !important; 
	-webkit-backface-visible: visible !important;
}
#tabContainer_stacks_in_633182 a,
#tabContainer_stacks_in_633182 a:hover {
	text-decoration: none;
}
#tabContainer_stacks_in_633182 .tab a,
#tabContainer_stacks_in_633182 .tab a:focus,
#tabContainer_stacks_in_633182 .tab a:active,
#tabContainer_stacks_in_633182 .tab a:visited,
#tabContainer_stacks_in_633182 .tab a:link {
	outline: none !important;
	border: none !important;
}
#tabContainer_stacks_in_633182 li,
#tabContainer_stacks_in_633182 li a {
	cursor: pointer;
}
/* ====================
 * TRANSPARENCY OPTION
 ====================== */
#tabContainer_stacks_in_633182.borderTransparencyOn .tab,
.tabDemo #tabContainer_stacks_in_633182.borderTransparencyOn .tab,
#tabContainer_stacks_in_633182.borderTransparencyOn #tab-container ul.etabs,
#tabContainer_stacks_in_633182.borderTransparencyOn #tab-container .panel-container,
.tabDemo #tabContainer_stacks_in_633182.borderTransparencyOn #tab-container .panel-container {
	border: none !important;
	border-top: none !important;
	border-right: none !important;
	border-left: none !important;
}
#tabContainer_stacks_in_633182.tabTransparencyOn .tab,
.tabDemo #tabContainer_stacks_in_633182.tabTransparencyOn .tab,
#tabContainer_stacks_in_633182.tabTransparencyOn .tab:hover,
.tabDemo #tabContainer_stacks_in_633182.tabTransparencyOn .tab:hover {
	background: none !important;
	background-color: none !important;
}
#tabContainer_stacks_in_633182.contentTransparencyOn #tab-container .panel-container {
	background: none !important;
	background-color: none !important;
}
/* ====================
 * DEFAULT STYLING
 ====================== */
#tabContainer_stacks_in_633182 {
	width: 98%;
	padding-right: 3px;
}
#tabContainer_stacks_in_633182 #tab-container {
	min-width: 200px;
}
#tabContainer_stacks_in_633182 .etabs { 
	margin: 0; 
	padding: 0; 
}
#tabContainer_stacks_in_633182.controlTabWidthOn #tab-container ul.etabs li.tab {
	width: 150px;
}
#tabContainer_stacks_in_633182 .tab, .tabDemo #tabContainer_stacks_in_633182 .tab { 
	display: inline-block; 
	zoom: 1; 
	*display: inline; /* IE7 */
	background: #EEEEEE; 
	border: solid 1px #999999; 
	border-bottom: none;
	border-radius: 4px 4px 0 0; 
	-moz-border-radius: 4px 4px 0 0; 
	-webkit-border-radius: 4px 4px 0 0;
	
}
#tabContainer_stacks_in_633182 #tab-container ul.etabs.firstTabPixels li.tab:first-child {
	margin-left: 0px;
}
#tabContainer_stacks_in_633182 #tab-container ul.etabs.firstTabPerc li.tab:first-child {
	margin-left: 0%;
}
#tabContainer_stacks_in_633182 #tab-container ul.etabs .tab:hover,
.tabDemo #tabContainer_stacks_in_633182 #tab-container ul.etabs .tab:hover {
	background-color: #E0E0E0;
	border-color: #999999;
}
#tabContainer_stacks_in_633182 #tab-container .tab a {
	position: relative;
	font-size: 14px; 
	line-height: 2em;
	display: block; 
	padding: 0 10px; 
	outline: none; 
	text-decoration: none;
}
#tabContainer_stacks_in_633182.linkInheritOff #tab-container ul.etabs .tab a {
	color: #708090 !important;
}
#tabContainer_stacks_in_633182.linkInheritOff #tab-container ul.etabs .tab a:hover { 
	text-decoration: none;
	color: #0D4F8B !important;
}
#tabContainer_stacks_in_633182 #tab-container ul.etabs .tab.active { 
	background: #FFFFFF; 
	padding-top: 6px; 
	position: relative; 
	top: 1px; 
	border-color: #666666; 
}
#tabContainer_stacks_in_633182.linkInheritOff #tab-container ul.etabs .tab a.active { 
	font-weight: bold;
	color: #4E78A0 !important; 
}
#tabContainer_stacks_in_633182.linkInheritOff #tab-container ul.etabs .tab a.active:hover {
	color: #0D4F8B !important;
}
#tabContainer_stacks_in_633182 #tab-container .panel-container {
	background: #FFFFFF;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 15px;
	padding-bottom: 10px;
	border-radius: 0 4px 4px 4px; 
	-moz-border-radius: 0 4px 4px 4px; 
	-webkit-border-radius: 0 4px 4px 4px;
}
#tabContainer_stacks_in_633182.textInheritOff #tab-container .panel-container {
	color: #333333 !important;
	font-size: 14px;
}
#tabContainer_stacks_in_633182.borderTransparencyOff #tab-container .panel-container {
	border: solid #666666 1px; 
}
#tabContainer_stacks_in_633182.linkInheritOff #tab-container .panel-container a {
	color: #4E78A0;
}
#tabContainer_stacks_in_633182.linkInheritOff #tab-container .panel-container a:hover {
	color: #0D4F8B;
}
#tabContainer_stacks_in_633182 .panel-container { 
	margin-bottom: 10px; 
}

/* ====================
 * TAB COUNT CONTROL
 * Adds display none depending on total count
 ====================== */
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent2, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent3, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent4, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent5, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent6, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent7, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent8, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent9, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent10, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent11, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent12,
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent13, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter1 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter2 .tabContent3, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent4, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent5, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent6, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent7, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent8, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent9, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent10, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent11, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent12, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent13, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter2 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter3 .tabContent4, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent5, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent6, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent7, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent8, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent9, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent10, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent11, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent12,
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent13, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter3 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter4 .tabContent5, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent6, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent7, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent8, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent9, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent10, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent11, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent12, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent13, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter4 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter5 .tabContent6, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent7, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent8, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent9, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent10, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent11, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent12, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent13, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter5 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter6 .tabContent7, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent8, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent9, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent10, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent11, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent12, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent13, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter6 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter7 .tabContent8, 
#tabContainer_stacks_in_633182 .tabCounter7 .tabContent9, 
#tabContainer_stacks_in_633182 .tabCounter7 .tabContent10, 
#tabContainer_stacks_in_633182 .tabCounter7 .tabContent11, 
#tabContainer_stacks_in_633182 .tabCounter7 .tabContent12, 
#tabContainer_stacks_in_633182 .tabCounter7 .tabContent13, 
#tabContainer_stacks_in_633182 .tabCounter7 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter7 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter7 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter7 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter7 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter7 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter7 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter8 .tabContent9, 
#tabContainer_stacks_in_633182 .tabCounter8 .tabContent10, 
#tabContainer_stacks_in_633182 .tabCounter8 .tabContent11, 
#tabContainer_stacks_in_633182 .tabCounter8 .tabContent12, 
#tabContainer_stacks_in_633182 .tabCounter8 .tabContent13, 
#tabContainer_stacks_in_633182 .tabCounter8 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter8 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter8 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter8 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter8 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter8 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter8 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter9 .tabContent10, 
#tabContainer_stacks_in_633182 .tabCounter9 .tabContent11, 
#tabContainer_stacks_in_633182 .tabCounter9 .tabContent12, 
#tabContainer_stacks_in_633182 .tabCounter9 .tabContent13, 
#tabContainer_stacks_in_633182 .tabCounter9 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter9 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter9 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter9 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter9 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter9 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter9 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter10 .tabContent11, 
#tabContainer_stacks_in_633182 .tabCounter10 .tabContent12,
#tabContainer_stacks_in_633182 .tabCounter10 .tabContent13, 
#tabContainer_stacks_in_633182 .tabCounter10 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter10 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter10 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter10 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter10 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter10 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter10 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter11 .tabContent12,
#tabContainer_stacks_in_633182 .tabCounter11 .tabContent13, 
#tabContainer_stacks_in_633182 .tabCounter11 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter11 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter11 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter11 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter11 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter11 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter11 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter12 .tabContent13, 
#tabContainer_stacks_in_633182 .tabCounter12 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter12 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter12 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter12 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter12 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter12 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter12 .tabContent20,

#tabContainer_stacks_in_633182 .tabCounter13 .tabContent14, 
#tabContainer_stacks_in_633182 .tabCounter13 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter13 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter13 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter13 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter13 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter13 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter14 .tabContent15, 
#tabContainer_stacks_in_633182 .tabCounter14 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter14 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter14 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter14 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter14 .tabContent20,

#tabContainer_stacks_in_633182 .tabCounter15 .tabContent16, 
#tabContainer_stacks_in_633182 .tabCounter15 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter15 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter15 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter15 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter16 .tabContent17, 
#tabContainer_stacks_in_633182 .tabCounter16 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter16 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter16 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter17 .tabContent18, 
#tabContainer_stacks_in_633182 .tabCounter17 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter17 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter18 .tabContent19, 
#tabContainer_stacks_in_633182 .tabCounter18 .tabContent20, 

#tabContainer_stacks_in_633182 .tabCounter19 .tabContent20 {
	display: none !important;
}
/* ====================
 * BACKEND
 ====================== */
.tabDemo #tabContainer_stacks_in_633182 .panel-container div.tabContent div {
	padding-top: 5px;
}
.tabDemo #tabContainer_stacks_in_633182 .tab {
	width: inherit;
}
/* ====================
 * THEMES
 ====================== */
#tabContainer_stacks_in_633182 #tab-container.tabTheme2 ul.etabs .tab.active,
#tabContainer_stacks_in_633182 #tab-container.tabTheme3 ul.etabs .tab.active {
	border-color: #666666;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme2 ul.etabs {
	margin-bottom: 5px;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme2 .panel-container {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme2 ul.etabs .tab {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-bottom: solid 1px #999999;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme2 ul.etabs .tab.active,
#tabContainer_stacks_in_633182 #tab-container.tabTheme3 ul.etabs .tab.active,
#tabContainer_stacks_in_633182 #tab-container.tabTheme7 ul.etabs .tab.active {
	padding-top: 1px; 
	padding-bottom: -1px;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme3 ul.etabs {
	padding: 3px 4px; 
	border-right: solid 1px #666666; 
	border-left: solid 1px #666666;
	background: #FFFFFF;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme3.tabsBottomOff ul.etabs {
	border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-top: solid 1px #666666; 
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme3.tabsBottomOn ul.etabs {
	border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-bottom: solid 1px #666666; 
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme3 ul.etabs .tab {
	border-bottom: solid 1px #999999;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme3.tabsBottomOff .panel-container {
	border-radius: 0 0 4px 4px;
	border-top: 0;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme3.tabsBottomOn .panel-container {
	border-radius: 4px 4px 0 0;
	border-bottom: 0;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme2.tabsBottomOn .panel-container,
#tabContainer_stacks_in_633182 #tab-container.tabTheme3.tabsBottomOn .panel-container,
#tabContainer_stacks_in_633182 #tab-container.tabTheme5.tabsBottomOn .panel-container,
#tabContainer_stacks_in_633182 #tab-container.tabTheme6.tabsBottomOn .panel-container {
	margin-bottom: 0;
}  
#tabContainer_stacks_in_633182 #tab-container.tabTheme4 .panel-container,
#tabContainer_stacks_in_633182 #tab-container.tabTheme7 .panel-container {
	border-bottom: none;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme4 .panel-container,
#tabContainer_stacks_in_633182 #tab-container.tabTheme5 .panel-container,
#tabContainer_stacks_in_633182 #tab-container.tabTheme6 .panel-container,
#tabContainer_stacks_in_633182 #tab-container.tabTheme7 .panel-container {
	border-right: none;
	border-left: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme5.tabsBottomOff .panel-container,
#tabContainer_stacks_in_633182 #tab-container.tabTheme6.tabsBottomOff .panel-container {
	border-bottom: none;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme5.tabsBottomOn .panel-container {
	border-top: none;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme6.tabsBottomOn .panel-container {
	border: none;
	border-top: none;
	border-bottom: none;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme4 ul.etabs .tab.marginOpt,
#tabContainer_stacks_in_633182 #tab-container.tabTheme5 ul.etabs .tab.marginOpt,
#tabContainer_stacks_in_633182 #tab-container.tabTheme6 ul.etabs .tab.marginOpt {
	margin-left: 10px;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme5 ul.etabs .tab,
#tabContainer_stacks_in_633182 #tab-container.tabTheme6 ul.etabs .tab,
#tabContainer_stacks_in_633182 #tab-container.tabTheme7 ul.etabs .tab {
	border: none;
	background: none;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme5.tabsBottomOff ul.etabs .tab.active {
	border-bottom: solid 5px #666666;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme6.tabsBottomOff ul.etabs .tab.active {
	border-bottom: solid 5px #666666;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme6.tabsBottomOff .panel-container {
	border-top: none;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme5.tabsBottomOn ul.etabs .tab.active,
#tabContainer_stacks_in_633182 #tab-container.tabTheme6.tabsBottomOn ul.etabs .tab.active {
	border-top: solid 5px #666666;
	top: 0;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme5.tabsBottomOn ul.etabs .tab,
#tabContainer_stacks_in_633182 #tab-container.tabTheme6.tabsBottomOn ul.etabs .tab {
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme7.themeDots1 ul.etabs li a {
	padding-bottom: 10px;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme7.themeDots1 ul.etabs li a:after {
	content:'';
	position: absolute;
	left: 45%;
	bottom: -6px;
	width: 12px;
	height: 12px;
	background: #00B2EE;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme7.themeDots1 ul.etabs li a:hover:after,
#tabContainer_stacks_in_633182 #tab-container.tabTheme7.themeDots1 ul.etabs li a.active:after {
	background: #325C74;
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme7.themeDots2 ul.etabs li a.active:after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 45%;
	margin-left: 24px;
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 12px solid #00B2EE;
	margin: 0 auto;
	z-index: 0;
	
}
#tabContainer_stacks_in_633182 #tab-container.tabTheme7.themeDots2 ul.etabs li a:hover:after,
#tabContainer_stacks_in_633182 #tab-container.tabTheme7.themeDots2 ul.etabs li a.active:after {
	border-top-color: #325C74;
}
/* ====================
 * RESPONSIVENESS
 ====================== */

/* iPads */
@media (max-width : 768px) {
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme1 ul.etabs .tab,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme2 ul.etabs .tab,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme3 ul.etabs .tab,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme4 ul.etabs .tab,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme5 ul.etabs .tab,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme6 ul.etabs .tab {
		width: 47%;
		margin: 1%;
		border-bottom: solid 1px #666666;
		border-radius: 4px; 
		-moz-border-radius: 4px; 
		-webkit-border-radius: 4px;
	}
	#tabContainer_stacks_in_633182.responsiveOn ul.etabs .tab.active {padding-top: 0;}
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme4 ul.etabs .tab.marginOpt,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme5 ul.etabs .tab.marginOpt,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme6 ul.etabs .tab.marginOpt {
		margin-left: 1%;
	}
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme5 ul.etabs .tab,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme6 ul.etabs .tab {
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
	}
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme5 .panel-container {
		border-top: none;
	}
	#tabContainer_stacks_in_633182 #tab-container ul.etabs.firstTabPixels li.tab:first-child {
		margin-left: 3px;
	}
	#tabContainer_stacks_in_633182 #tab-container.tabTheme3 ul.etabs.firstTabPixels li.tab:first-child {
		margin-left: 6px;
	}
	#tabContainer_stacks_in_633182 #tab-container ul.etabs .tab.active {
		padding-top: 0;
		top: 0;
	}
}

/* iPhones */
@media (max-width : 480px) {
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme1 ul.etabs .tab,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme2 ul.etabs .tab,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme3 ul.etabs .tab,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme4 ul.etabs .tab,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme5 ul.etabs .tab,
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme6 ul.etabs .tab {
		width: 98%;
	}
	#tabContainer_stacks_in_633182.responsiveOn #tab-container.tabTheme7 .panel-container {
		border-top: none;
	}
	#tabContainer_stacks_in_633182 #tab-container.tabTheme3 ul.etabs.firstTabPixels li.tab:first-child {
		margin-left: 3px;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_633230 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_633230 {
		display: none !important;
	}
}
/*
    _____  __     _____  _____  _____ 
   | __  ||  |   |     ||     ||     |
   | __ -||  |__ |  |  ||  |  || | | |
   |_____||_____||_____||_____||_|_|_|
                                   
    Version 1.0.1

*/







#stacks_in_633231 img {
  max-width: 100%;
  height: auto; }


#stacks_in_633231 .cd-slider-wrapper ol, 
#stacks_in_633231 .cd-slider-wrapper ul,
#stacks_in_633231 .cd-slider-wrapper li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

#stacks_in_633231 * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#stacks_in_633231 img {
  max-width: 100%; 
  
  border-radius: 4px;
  
}

/* -------------------------------- 

Main Components 

-------------------------------- */


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

#stacks_in_633231 .cd-single-item {
  position: relative;
 }

#stacks_in_633231 .cd-slider-wrapper {
  position: relative;
  z-index: 1;
  -webkit-transition: width 0.4s;
  -moz-transition: width 0.4s;
  transition: width 0.4s;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: width; } 
  @media only screen and (min-width: 1024px) {
    #stacks_in_633231 .cd-slider-wrapper {
      width: 50%; 
      
    }
      #stacks_in_633231 .cd-slider-active .cd-slider-wrapper {
        width: 100%; } }

#stacks_in_633231 .cd-slider {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  #stacks_in_633231 .cd-slider::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none; }
  #stacks_in_633231 .cd-slider li {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s; }
    #stacks_in_633231 .cd-slider li img {
      display: block;
      width: 100%; }
    #stacks_in_633231 .cd-slider li.selected {
      position: relative;
      z-index: 2;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
      transform: translateX(0); }
    #stacks_in_633231 .cd-slider li.move-left {
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      -o-transform: translateX(-100%);
      transform: translateX(-100%); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_633231 .cd-slider {
      cursor: pointer; }
      #stacks_in_633231 .cd-slider::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop'; }
      #stacks_in_633231 .cd-slider::after {
        /* slider cover layer - to indicate the image is clickable */
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* OVERLAY COLORS */
        background: rgba(81, 62, 93, 0.4) url("../index_files/bloom_images/cd-icon-zoom-white.svg") no-repeat center center;
        /* size of the icon */
        background-size: 48px;
        
        opacity: 0.6;
        
        z-index: 4;
        -webkit-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        transition: opacity 0.3s; }
      #stacks_in_633231 .cd-slider:hover::after {
        opacity: 1; }
      #stacks_in_633231 .cd-slider-active .cd-slider {
        cursor: auto; }
        #stacks_in_633231 .cd-slider-active .cd-slider::after {
          display: none; } }

@media only screen and (min-width: 1024px) {
  #stacks_in_633231 .cd-slider-navigation li, #stacks_in_633231 .cd-slider-pagination {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
    transition: opacity 0.4s 0s, visibility 0s 0.4s; }
    #stacks_in_633231 .cd-slider-active .cd-slider-navigation li, #stacks_in_633231 .cd-slider-active .cd-slider-pagination {
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      -moz-transition: opacity 0.4s 0.4s, visibility 0s 0.4s;
      transition: opacity 0.4s 0.4s, visibility 0s 0.4s; } }
#stacks_in_633231 .cd-slider-navigation li {
  position: absolute;
  z-index: 2;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }
  #stacks_in_633231 .cd-slider-navigation li:first-of-type {
    left: 10px; }
  #stacks_in_633231 .cd-slider-navigation li:last-of-type {
    right: 10px; }
  #stacks_in_633231 .cd-slider-navigation li a {
    display: block;
    width: 48px;
    height: 48px;
    background: url("../index_files/bloom_images/cd-icon-arrow-white.svg") no-repeat center center;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.2s 0s, visibility 0s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0s;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }
    #stacks_in_633231 .cd-slider-navigation li a.inactive {
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      -moz-transition: opacity 0.2s 0s, visibility 0s 0.2s;
      transition: opacity 0.2s 0s, visibility 0s 0.2s; }
    #stacks_in_633231 .cd-slider-navigation li a:hover {
      opacity: .7; }
  #stacks_in_633231 .cd-slider-navigation li:first-of-type a {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_633231 .cd-slider-navigation li:first-child {
      left: 30px; }
    #stacks_in_633231 .cd-slider-navigation li:last-child {
      right: 30px; } }

#stacks_in_633231 .cd-slider-pagination {
  /* you won't see this element in the html but it will be created using jQuery */
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  visibility: hidden; }
  #stacks_in_633231 .cd-slider-pagination:after {
    content: "";
    display: table;
    clear: both; }
  #stacks_in_633231 .touch .cd-slider-pagination {
    visibility: hidden; }
  #stacks_in_633231 .cd-slider-pagination li {
    display: inline-block;
    float: left;
    margin: 0 5px !important; }
    #stacks_in_633231 .cd-slider-pagination li.selected a {
     
      background: #f5f4f3;
           }
  #stacks_in_633231 .cd-slider-pagination a {
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
     
    border: 1px solid #f5f4f3;
    /* fix a bug in IE9/10 - transparent anchor not clickable */
    background-color: rgba(255, 255, 255, 0);
    
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap; }

#stacks_in_633231 .cd-slider-wrapper .cd-close {
  display: none;
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: url("../index_files/bloom_images/cd-icon-close-white.svg") no-repeat center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.4s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.4s;
  transition: transform 0.3s 0s, visibility 0s 0.4s; }
  #stacks_in_633231 .cd-slider-active .cd-slider-wrapper .cd-close {
    visibility: visible;
    opacity: 1;
    -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s;
    transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.4s 0.4s; }
  #stacks_in_633231 .cd-slider-active .cd-slider-wrapper .cd-close:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  @media only screen and (min-width: 1024px) {
    #stacks_in_633231 .cd-slider-wrapper .cd-close {
      display: block; } }

#stacks_in_633231 .cd-item-info {
  padding: 0; }

  @media only screen and (min-width: 1024px) {
    #stacks_in_633231 .cd-item-info {
      position: absolute;
      width: 50%;
      top: 0;
      padding: 0;
      margin: 0;
      
      right: 0; 
      padding-left: 30px; 
      
 } }

#stacks_in_633231 .cd-content p {
  width: 90%;
  max-width: 1024px;
  padding: 4em 0;
  margin: 0 auto;
  color: #afa8a0;
  line-height: 1.8; }






#stacks_in_633236 {
	margin:  10px;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686470 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686470 {
		display: none !important;
	}
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/

	@font-face {
		font-family: 'Lora';
		src: url('../index_files/lora-regular-webfont.woff') format('woff');
		font-weight: 400;
		font-style: normal;
	}

	@font-face {
		font-family: 'Montserrat';
		src: url('../index_files/montserrat-regular-webfont.woff') format('woff');
		font-weight: 400;
		font-style: normal;
	}

	@font-face {
		font-family: 'Open Sans';
		src: url('../index_files/opensans-regular-webfont.woff') format('woff');
		font-weight: 400;
		font-style: normal;
	}

	@font-face {
		font-family: 'Roboto Slab';
		src: url('../index_files/robotoslab-regular-webfont.woff') format('woff');
		font-weight: 400;
		font-style: normal;
	}


ul#stacks_in_686367_accordion {
	display: block;
	list-style: none;
	border-radius: 4px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

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

#stacks_in_686367 .hide_toggle {
	display: none;
}


/* Label Font Choices */

	ul#stacks_in_686367_accordion .accordion_label {
		font-family: 'Open Sans', sans-serif;
	}















/* Content Font Choices */

	ul#stacks_in_686367_accordion .accordion_content {
		font-family: 'Open Sans', sans-serif;
	}









ul#stacks_in_686367_accordion .accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

ul#stacks_in_686367_accordion .accordion_label i {
}

ul#stacks_in_686367_accordion .stacks_in_686367_accordion_selectedarrow_icon {
}

ul#stacks_in_686367_accordion .accordion_content {
	
		padding: 40px;
	

}

ul#stacks_in_686367_accordion li:last-child .accordion_content {
}

ul#stacks_in_686367_accordion  .accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		position: absolute;
		right: 20px;
		top: 15px;
		margin-right: 0px;
	
	
}

ul#stacks_in_686367_accordion .accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

ul#stacks_in_686367_accordion .stacks_in_686367_accordion_selectedarrow_icon .accordion_icon i {
	
}

#stacks_in_686367_open_all {
	cursor: pointer;
	font-size: 20px;
	
	margin-bottom: 12px;
	
	

}

#stacks_in_686367 .show_all_alignment {
	text-align: left;
	
	
}



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

/* Ghost */
	ul#stacks_in_686367_accordion.ghost {
		border: 1px solid #d4d4d4;
	}

	ul#stacks_in_686367_accordion.ghost .accordion_label {
		color: #434343;
		border-bottom: 1px solid #d4d4d4;
	}

	ul#stacks_in_686367_accordion.ghost .stacks_in_686367_accordion_selectedarrow_icon {
		background-color: #f2f2f2;
	}

	ul#stacks_in_686367_accordion.ghost .accordion_content {
		color: #434343;
		border-bottom: 1px solid #d4d4d4;
	}

	ul#stacks_in_686367_accordion.ghost li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #d4d4d4;
	}

	ul#stacks_in_686367_accordion.ghost li:last-child .accordion_content {
		border-bottom: none;
	}



/* Dark Grey */
	ul#stacks_in_686367_accordion.dark_grey {
		border: 1px solid #adadad;
	}

	ul#stacks_in_686367_accordion.dark_grey .accordion_label {
		color: #FCFEF9;
		border-bottom: 1px solid #4E4F54;
		background: rgb(108,109,113); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzZjNmQ3MSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0ZTRmNTQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(108,109,113,1) 0%, rgba(78,79,84,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(108,109,113,1)), color-stop(100%,rgba(78,79,84,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(108,109,113,1) 0%,rgba(78,79,84,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(108,109,113,1) 0%,rgba(78,79,84,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(108,109,113,1) 0%,rgba(78,79,84,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(108,109,113,1) 0%,rgba(78,79,84,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6c6d71', endColorstr='#4e4f54',GradientType=0 ); /* IE6-8 */
	}

	ul#stacks_in_686367_accordion.dark_grey .stacks_in_686367_accordion_selectedarrow_icon {
		color: #4E4F54;
		border-bottom: 1px solid #adadad;
		background: rgb(238,238,238); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjY2NjY2MiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(204,204,204,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(238,238,238,1)), color-stop(100%,rgba(204,204,204,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-8 */
	}

	ul#stacks_in_686367_accordion.dark_grey .accordion_content {
		color: #434343;
		border-bottom: 1px solid #adadad;
		background-color: #EFEFEF;
	}

	ul#stacks_in_686367_accordion.dark_grey li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #adadad;
	}

	ul#stacks_in_686367_accordion.dark_grey li:last-child .accordion_content {
		border-bottom: none;
	}




/* Light Blue */
	ul#stacks_in_686367_accordion.light_blue {
		border: 1px solid #E6E6E6;
	}

	ul#stacks_in_686367_accordion.light_blue .accordion_label {
		color: #939496;
		border-top: 1px solid #f3f3f3;
		border-bottom: 1px solid #dedede;
		background: rgb(244,249,249); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: rgb(239,239,239); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VmZWZlZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlNmU2ZTYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(239,239,239,1) 0%, rgba(230,230,230,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(239,239,239,1)), color-stop(100%,rgba(230,230,230,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(239,239,239,1) 0%,rgba(230,230,230,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(239,239,239,1) 0%,rgba(230,230,230,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(239,239,239,1) 0%,rgba(230,230,230,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(239,239,239,1) 0%,rgba(230,230,230,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#e6e6e6',GradientType=0 ); /* IE6-8 */
	}

	ul#stacks_in_686367_accordion.light_blue .stacks_in_686367_accordion_selectedarrow_icon {
		color: #fff;
		border-top: 1px solid #98eaff;
		border-bottom: 1px solid #1EB0F4;
		background: rgb(36,210,253); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI0ZDJmZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMGJlZmMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(36,210,253,1) 0%, rgba(32,190,252,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(36,210,253,1)), color-stop(100%,rgba(32,190,252,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(36,210,253,1) 0%,rgba(32,190,252,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(36,210,253,1) 0%,rgba(32,190,252,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(36,210,253,1) 0%,rgba(32,190,252,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(36,210,253,1) 0%,rgba(32,190,252,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#24d2fd', endColorstr='#20befc',GradientType=0 ); /* IE6-8 */
	}


	ul#stacks_in_686367_accordion.light_blue .accordion_content {
		background: #d6d6d6;
		color: #3E3E3E;
		box-shadow: inset 0 0 5px 0 rgba(0,0,0,0.4);
		border-bottom: 1px solid #E6E6E6;
	}

	ul#stacks_in_686367_accordion.light_blue li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #1EB0F4;
	}

	ul#stacks_in_686367_accordion.light_blue li:last-child .accordion_content {
		border-bottom: none;
	}



/* Flat Teal */
	ul#stacks_in_686367_accordion.flat_teal {
		border: 1px solid #E2E2E2;
	}

	ul#stacks_in_686367_accordion.flat_teal .accordion_label {
		color: #ABABAB;
		background: #FFFFFF;
		border-bottom: 1px solid #E2E2E2;
	}

	ul#stacks_in_686367_accordion.flat_teal .stacks_in_686367_accordion_selectedarrow_icon {
		color: #fff;
		background: #61BBC3;
		border-bottom: 1px solid #61BBC3;
	}

	ul#stacks_in_686367_accordion.flat_teal .accordion_content {
		background: #576465;
		color: #dfdfdf;
		border-bottom: 1px solid #E2E2E2;
		box-shadow: inset 0 0 5px 0 rgba(0,0,0,0.4);
	}

	ul#stacks_in_686367_accordion.flat_teal li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #E2E2E2;
	}

	ul#stacks_in_686367_accordion.flat_teal li:last-child .accordion_content {
		border-bottom: none;
	}



/* Blue Grey */
	ul#stacks_in_686367_accordion.blue_grey {
		border: 1px solid #2D2E32;
	}

	ul#stacks_in_686367_accordion.blue_grey .accordion_label {
		color: #DADEDF;
		text-shadow: 0 -1px 0 #111820;
		border-top: 1px solid #606872;
		border-bottom: 1px solid #212226;
		background: rgb(75,84,91); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRiNTQ1YiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZjQ4NTYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(75,84,91,1) 0%, rgba(63,72,86,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(75,84,91,1)), color-stop(100%,rgba(63,72,86,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b545b', endColorstr='#3f4856',GradientType=0 ); /* IE6-8 */
	}

	ul#stacks_in_686367_accordion.blue_grey .stacks_in_686367_accordion_selectedarrow_icon {
		color: #DADEDF;
		text-shadow: 0 -1px 0 #111820;
		border-bottom: 1px solid #212226;
		background: rgb(75,84,91); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRiNTQ1YiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZjQ4NTYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(75,84,91,1) 0%, rgba(63,72,86,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(75,84,91,1)), color-stop(100%,rgba(63,72,86,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b545b', endColorstr='#3f4856',GradientType=0 ); /* IE6-8 */
	}

	ul#stacks_in_686367_accordion.blue_grey .accordion_content {
		background: #363D45;
		color: #C4C5C9;
		border-bottom: 1px solid #2D2E32;
		box-shadow: inset 0 1px 3px 0 rgba(0,0,0,0.25);
	}

	ul#stacks_in_686367_accordion.blue_grey li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #212226;
	}

	ul#stacks_in_686367_accordion.blue_grey li:last-child .accordion_content {
		border-bottom: none;
	}



/* Flat Orange */
	ul#stacks_in_686367_accordion.flat_orange {
	}

	ul#stacks_in_686367_accordion.flat_orange .accordion_label {
		color: #F6F1E3;
		background: #DC614F;
	}

	ul#stacks_in_686367_accordion.flat_orange .stacks_in_686367_accordion_selectedarrow_icon {
		color: #F6F1E3;
		background: #DC614F;
		border-bottom: 2px solid #B94537;
	}

	ul#stacks_in_686367_accordion.flat_orange .accordion_content {
		background: #CC5545;
		color: #FCE1DB;
		border-bottom: 1px solid #B94537;
	}

	ul#stacks_in_686367_accordion.flat_orange li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #B94537;
	}

	ul#stacks_in_686367_accordion.flat_orange li:last-child .accordion_content {
		border-bottom: none;
	}



/* Forest Green */
	ul#stacks_in_686367_accordion.forest_green {
	}

	ul#stacks_in_686367_accordion.forest_green .accordion_label {
		color: #99C676;
		background: #679341;
		border-top: 1px solid #96BE74;
		border-bottom: 1px solid #425F2E;
	}

	ul#stacks_in_686367_accordion.forest_green .stacks_in_686367_accordion_selectedarrow_icon {
		color: #384D24;
		background: #95BF70;
		border-bottom: 1px solid #29371d;
	}

	ul#stacks_in_686367_accordion.forest_green .accordion_content {
		background: #394D27;
		color: #F0F8E7;
		border-bottom: 1px solid #29371d;
	}

	ul#stacks_in_686367_accordion.forest_green li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #29371d;
	}

	ul#stacks_in_686367_accordion.forest_green li:last-child .accordion_content {
		border-bottom: none;
	}



/* Earthy */
	ul#stacks_in_686367_accordion.earthy {
		border: 1px solid #645B51;
	}

	ul#stacks_in_686367_accordion.earthy .accordion_label {
		color: #F7E7D4;
		background: #806F63;
		border-top: 1px solid #908279;
		border-bottom: 1px solid #645B51;
	}

	ul#stacks_in_686367_accordion.earthy .stacks_in_686367_accordion_selectedarrow_icon {
		color: #F7E7D5;
		background: #D95943;
		border-top: 1px solid #E58669;
		border-bottom: 2px solid #D01C1F;
	}

	ul#stacks_in_686367_accordion.earthy .accordion_content {
		background: #645548;
		color: #c4bcb1;
		border-bottom: 1px solid #52453b;
	}

	ul#stacks_in_686367_accordion.earthy li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #29371d;
	}

	ul#stacks_in_686367_accordion.earthy li:last-child .accordion_content {
		border-bottom: none;
	}



/* Purple Power */
	ul#stacks_in_686367_accordion.purple_power {
	}

	ul#stacks_in_686367_accordion.purple_power .accordion_label {
		color: #fff;
		background: #B05B9E;
		border-top: 1px solid #c069ae;
		border-bottom: 1px solid #a45693;
	}

	ul#stacks_in_686367_accordion.purple_power .stacks_in_686367_accordion_selectedarrow_icon {
		color: #fff;
		background: #B05B9E;
		border-top: 1px solid #c069ae;
		border-bottom: 1px solid #4d3572;
	}

	ul#stacks_in_686367_accordion.purple_power .accordion_content {
		background: #6B4E99;
		color: #fff;
		border-bottom: 1px solid #4d3572;
	}

	ul#stacks_in_686367_accordion.purple_power li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #4d3572;
	}

	ul#stacks_in_686367_accordion.purple_power li:last-child .accordion_content {
		border-bottom: none;
	}



/* Bold Blue */
	ul#stacks_in_686367_accordion.bold_blue {
		border: 1px solid #DBDBDB;
	}

	ul#stacks_in_686367_accordion.bold_blue .accordion_label {
	  color: #333333;
	  background-color: #f5f5f5;
	  *background-color: #e6e6e6;
	  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
	  background-repeat: repeat-x;
		border-top: 1px solid #ffffff;
		border-bottom: 1px solid #DBDBDB;
	}

	ul#stacks_in_686367_accordion.bold_blue .stacks_in_686367_accordion_selectedarrow_icon {
	  color: #ffffff;
	  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	  background-color: #006dcc;
	  *background-color: #0044cc;
	  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
	  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
	  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
	  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
	  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
	  background-repeat: repeat-x;
	  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
	  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
		border-top: 1px solid #0d93d6;
		border-bottom: 1px solid #02369f;
	}

	ul#stacks_in_686367_accordion.bold_blue .accordion_content {
		background: rgb(247,247,247); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZWZlZmUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(247,247,247,1) 0%, rgba(254,254,254,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(247,247,247,1)), color-stop(100%,rgba(254,254,254,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(254,254,254,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(254,254,254,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(254,254,254,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(247,247,247,1) 0%,rgba(254,254,254,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#fefefe',GradientType=0 ); /* IE6-8 */
		color: #434343;
		border-bottom: 1px solid #e2e2e2;
	}

	ul#stacks_in_686367_accordion.bold_blue li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #02369f;
	}

	ul#stacks_in_686367_accordion.bold_blue li:last-child .accordion_content {
		border-bottom: none;
	}



/* Baby Blue */
	ul#stacks_in_686367_accordion.baby_blue {
		border: 1px solid #C4CDDF;
	}

	ul#stacks_in_686367_accordion.baby_blue .accordion_label {
		color: #8BAEF7;
		background: #E0ECFD;
		border-top: 1px solid #e9f2fe;
		border-bottom: 1px solid #C4CDDF;
	}

	ul#stacks_in_686367_accordion.baby_blue .stacks_in_686367_accordion_selectedarrow_icon {
		color: #8BAEF7;
		background: #E0ECFD;
		border-top: 1px solid #e9f2fe;
		border-bottom: 1px solid #C4CDDF;
	}

	ul#stacks_in_686367_accordion.baby_blue .accordion_content {
		background: #F8F8F8;
		color: #797979;
		border-bottom: 1px solid #C4CDDF;
	}

	ul#stacks_in_686367_accordion.baby_blue li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #C4CDDF;
	}

	ul#stacks_in_686367_accordion.baby_blue li:last-child .accordion_content {
		border-bottom: none;
	}



/* Shamrock */
	ul#stacks_in_686367_accordion.shamrock {
	}

	ul#stacks_in_686367_accordion.shamrock .accordion_label {
		color: #FFFFFF;
		background: #3EBF9C;
		border-bottom: 1px solid #2ba483;
	}

	ul#stacks_in_686367_accordion.shamrock .stacks_in_686367_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #DE4641;
		border-bottom: 1px solid #283444;
	}

	ul#stacks_in_686367_accordion.shamrock .accordion_content {
		background: #2F3D4F;
		color: #EFF3F3;
		border-bottom: 1px solid #283444;
	}

	ul#stacks_in_686367_accordion.shamrock li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #283444;
	}

	ul#stacks_in_686367_accordion.shamrock li:last-child .accordion_content {
		border-bottom: none;
	}



/* Crimson */
	ul#stacks_in_686367_accordion.crimson {
		border: 1px solid #000000;
	}

	ul#stacks_in_686367_accordion.crimson .accordion_label {
		color: #EEFFFF;
		background: #222222;
		border-bottom: 1px solid #000000;
	}

	ul#stacks_in_686367_accordion.crimson .stacks_in_686367_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #DE4641;
		border-bottom: 1px solid #cc3f3a;
	}

	ul#stacks_in_686367_accordion.crimson .accordion_content {
		background: #000000;
		color: #999999;
	}

	ul#stacks_in_686367_accordion.crimson li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #cc3f3a;
	}

	ul#stacks_in_686367_accordion.crimson li:last-child .accordion_content {
		border-bottom: none;
	}



/* Gun Metal */
	ul#stacks_in_686367_accordion.gun_metal {
	}

	ul#stacks_in_686367_accordion.gun_metal .accordion_label {
		color: #F7F8F8;
		background: #47545E;
		border-bottom: 1px solid #2E363C;
	}

	ul#stacks_in_686367_accordion.gun_metal .stacks_in_686367_accordion_selectedarrow_icon {
		color: #3A4753;
		background: #49A2E0;
		border-bottom: 1px solid #2E363C;
	}

	ul#stacks_in_686367_accordion.gun_metal .accordion_content {
		background: #3C474F;
		color: #F8F9F9;
		border-bottom: 1px solid #2E363C;
	}

	ul#stacks_in_686367_accordion.gun_metal li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #2E363C;
	}

	ul#stacks_in_686367_accordion.gun_metal li:last-child .accordion_content {
		border-bottom: none;
	}



/* Bright Blue */
	ul#stacks_in_686367_accordion.bright_blue {
		border: 1px solid #E0E9ED;
	}

	ul#stacks_in_686367_accordion.bright_blue .accordion_label {
		color: #5C7F89;
		background: #FFFFFF;
		border-bottom: 1px solid #E0E9ED;
	}

	ul#stacks_in_686367_accordion.bright_blue .stacks_in_686367_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #1FBDD0;
		border-bottom: none;
	}

	ul#stacks_in_686367_accordion.bright_blue .accordion_content {
		background: #E0E9ED;
		color: #668b94;
	}

	ul#stacks_in_686367_accordion.bright_blue li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
	}

	ul#stacks_in_686367_accordion.bright_blue li:last-child .accordion_content {
		border-bottom: none;
	}



/* Pinky */
	ul#stacks_in_686367_accordion.pinky {
	}

	ul#stacks_in_686367_accordion.pinky .accordion_label {
		color: #695E5D;
		background: #F1C1BC;
		border-bottom: 1px solid #dab0ad;
	}

	ul#stacks_in_686367_accordion.pinky .stacks_in_686367_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #F1A7AC;
		border-bottom: 1px solid #d79498;
	}

	ul#stacks_in_686367_accordion.pinky .accordion_content {
		background: #EFE8D4;
		color: #837974;
	}

	ul#stacks_in_686367_accordion.pinky li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #dab0ad;
	}

	ul#stacks_in_686367_accordion.pinky li:last-child .accordion_content {
		border-bottom: none;
	}



/* Tesla */
	ul#stacks_in_686367_accordion.tesla {
	}

	ul#stacks_in_686367_accordion.tesla .accordion_label {
		color: #ffffff;
		background: #B48ECB;
		border-bottom: 1px solid #9a73b2;
		border-top: 1px solid #c9aadc;
	}

	ul#stacks_in_686367_accordion.tesla .stacks_in_686367_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #67487C;
		border-bottom: 1px solid #573769;
		border-top: 1px solid transparent;
	}

	ul#stacks_in_686367_accordion.tesla .accordion_content {
		background: #F7F7F7;
		color: #414141;
		border-bottom: 1px solid #9a73b2;
	}

	ul#stacks_in_686367_accordion.tesla li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #573769;
	}

	ul#stacks_in_686367_accordion.tesla li:last-child .accordion_content {
		border-bottom: none;
	}



/* Rustic */
	ul#stacks_in_686367_accordion.rustic {
	}

	ul#stacks_in_686367_accordion.rustic .accordion_label {
		color: #ffffff;
		background: #A6C8A7;
		border-bottom: 1px solid #96b597;
	}

	ul#stacks_in_686367_accordion.rustic .stacks_in_686367_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #585858;
		border-bottom: 1px solid #484848;
	}

	ul#stacks_in_686367_accordion.rustic .accordion_content {
		background: #EDEDED;
		color: #414141;
		border-bottom: 1px solid #96b597;
	}

	ul#stacks_in_686367_accordion.rustic li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #484848;
	}

	ul#stacks_in_686367_accordion.rustic li:last-child .accordion_content {
		border-bottom: none;
	}



/* Ruby */
	ul#stacks_in_686367_accordion.ruby {
	}

	ul#stacks_in_686367_accordion.ruby .accordion_label {
		color: #ffffff;
		background: #D9385A;
		border-bottom: 1px solid #aa0639;
	}

	ul#stacks_in_686367_accordion.ruby .stacks_in_686367_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #BF0740;
		border-bottom: 1px solid #aa0639;
	}

	ul#stacks_in_686367_accordion.ruby .accordion_content {
		background: #ededed;
		color: #7A7A7A;
		border-bottom: 1px solid #aa0639;
	}

	ul#stacks_in_686367_accordion.ruby li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #aa0639;
	}

	ul#stacks_in_686367_accordion.ruby li:last-child .accordion_content {
		border-bottom: none;
	}



/* Feather */
	ul#stacks_in_686367_accordion.feather {
	}

	ul#stacks_in_686367_accordion.feather .accordion_label {
		color: #ffffff;
		background: #DC8364;
		border-bottom: 1px solid #D66C5A;
	}

	ul#stacks_in_686367_accordion.feather .stacks_in_686367_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #3EBF9C;
		border-bottom: 1px solid #3BAE8D;
	}

	ul#stacks_in_686367_accordion.feather .accordion_content {
		background: #E3DFDE;
		color: #7A7A7A;
		border-bottom: 1px solid #D46C5D;
	}

	ul#stacks_in_686367_accordion.feather li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #3BAE8D;
	}

	ul#stacks_in_686367_accordion.feather li:last-child .accordion_content {
		border-bottom: none;
	}



/* Abstract */
	ul#stacks_in_686367_accordion.abstract {
	}

	ul#stacks_in_686367_accordion.abstract .accordion_label {
		color: #ffffff;
		background: #2C2B2C;
		border-bottom: 1px solid #1B1A1D;
	}

	ul#stacks_in_686367_accordion.abstract .stacks_in_686367_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #D6395C;
		border-bottom: 1px solid #c03353;
	}

	ul#stacks_in_686367_accordion.abstract .accordion_content {
		background: #1B1A1D;
		color: #CDCDCD;
		border-bottom: 1px solid #1B1A1D;
	}

	ul#stacks_in_686367_accordion.abstract li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #c03353;
	}

	ul#stacks_in_686367_accordion.abstract li:last-child .accordion_content {
		border-bottom: none;
	}




/* Hive */
	ul#stacks_in_686367_accordion.hive {
	}

	ul#stacks_in_686367_accordion.hive .accordion_label {
		color: #ffffff;
		background: #F28753;
		border-bottom: 1px solid #CB6B22;
	}

	ul#stacks_in_686367_accordion.hive .stacks_in_686367_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #29BB9C;
		border-bottom: 1px solid #3F9D8E;
	}

	ul#stacks_in_686367_accordion.hive .accordion_content {
		background: #FAEBE2;
		color: #646464;
		border-bottom: 1px solid #FAEBE3;
	}

	ul#stacks_in_686367_accordion.hive li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #3F9D8E;
	}

	ul#stacks_in_686367_accordion.hive li:last-child .accordion_content {
		border-bottom: none;
	}




/* Navigator */
	ul#stacks_in_686367_accordion.navigator {
	}

	ul#stacks_in_686367_accordion.navigator .accordion_label {
		color: #ffffff;
		background: #63b8f5;
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzYzYjhmNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1N2EyZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  #63b8f5 0%, #57a2f6 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#63b8f5), color-stop(100%,#57a2f6));
		background: -webkit-linear-gradient(top,  #63b8f5 0%,#57a2f6 100%);
		background: -o-linear-gradient(top,  #63b8f5 0%,#57a2f6 100%);
		background: -ms-linear-gradient(top,  #63b8f5 0%,#57a2f6 100%);
		background: linear-gradient(to bottom,  #63b8f5 0%,#57a2f6 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#63b8f5', endColorstr='#57a2f6',GradientType=0 );
		border-bottom: 1px solid #559dee;
		border-top: 1px solid #81caff;
	}

	ul#stacks_in_686367_accordion.navigator .stacks_in_686367_accordion_selectedarrow_icon {
		color: #1858a1;
		background: #469af4;
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ2OWFmNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0NmFjZjQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  #469af4 0%, #46acf4 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#469af4), color-stop(100%,#46acf4));
		background: -webkit-linear-gradient(top,  #469af4 0%,#46acf4 100%);
		background: -o-linear-gradient(top,  #469af4 0%,#46acf4 100%);
		background: -ms-linear-gradient(top,  #469af4 0%,#46acf4 100%);
		background: linear-gradient(to bottom,  #469af4 0%,#46acf4 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#469af4', endColorstr='#46acf4',GradientType=0 );
		border-bottom: 1px solid #4289da;
		border-top: 1px solid transparent;
	}

	ul#stacks_in_686367_accordion.navigator .accordion_content {
		background: #F7F7F7;
		color: #414141;
		border-bottom: 1px solid #81caff;
	}

	ul#stacks_in_686367_accordion.navigator li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #573769;
	}

	ul#stacks_in_686367_accordion.navigator li:last-child .accordion_content {
		border-bottom: none;
	}



/* Majestic */
	ul#stacks_in_686367_accordion.majestic {
	}

	ul#stacks_in_686367_accordion.majestic .accordion_label {
		color: #ffffff;
		background: #4AC7CB;
		border-bottom: 1px solid #3aabaf;
	}

	ul#stacks_in_686367_accordion.majestic .stacks_in_686367_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #DE425A;
		border-bottom: 1px solid #c83d52;
	}

	ul#stacks_in_686367_accordion.majestic .accordion_content {
		background: #f4f4f4;
		color: #7A7A7A;
		border-bottom: 1px solid #e8e8e8;
	}

	ul#stacks_in_686367_accordion.majestic li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #c83d52;
	}

	ul#stacks_in_686367_accordion.majestic li:last-child .accordion_content {
		border-bottom: none;
	}



/* END OF STYLES */



/* CUSTOM */


	ul#stacks_in_686367_accordion {
		border: 1px solid #DEDEDE;
	}

	ul#stacks_in_686367_accordion .accordion_label {
		color: #000000;
		background: rgba(242, 242, 242, 1.00);
		border-bottom: 1px solid #DEDEDE;
	}

	ul#stacks_in_686367_accordion .stacks_in_686367_accordion_selectedarrow_icon {
		color: #FFFFFF;
		background: rgba(26, 43, 78, 1.00);
		border-bottom: 1px solid #2359BF;
	}

	ul#stacks_in_686367_accordion .accordion_content {
		background: rgba(255, 255, 255, 1.00);
		color: #000000;
		border-bottom: 1px solid #DEDEDE;
	}

	ul#stacks_in_686367_accordion li:last-child .stacks_in_686367_accordion_selectedarrow_icon {
		border-bottom: 1px solid #2359BF;
	}

	ul#stacks_in_686367_accordion li:last-child .accordion_content {
		border-bottom: none;
	}

	#stacks_in_686367_open_all {
		color: #757575;
	}

	#stacks_in_686367_open_all_text {
		color: #757575;
	}

	#stacks_in_686367_close_all_text {
		color: #757575;
	}








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


@media only screen {
	ul#stacks_in_686367_accordion .accordion_label {
		font-size: 20px;
	}

	ul#stacks_in_686367_accordion .accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			padding-right: 60px;
		
		
	}

}

@media only screen and (max-width: 1024px) {
	ul#stacks_in_686367_accordion .accordion_label {
		font-size: 18px;
	}

	ul#stacks_in_686367_accordion .accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			padding-right: 60px;
		
		
	}
}

@media only screen and (max-width: 768px) {
	ul#stacks_in_686367_accordion .accordion_label {
		font-size: 16px;
	}

	ul#stacks_in_686367_accordion .accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			padding-right: 50px;
		
		
	}
}

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

	ul#stacks_in_686367_accordion .accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			padding-right: 50px;
		
		
	}
}


/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686521_136057 {
	width: 100%;
	clear: both;
	padding-top: 100px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686521_136057 .theDivider1,
#simpleDivider_stacks_in_686521_136057 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686521_136057 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686521_136057.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686521_136057.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686521_136057 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686521_136057.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686521_136057.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686521_136057.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686521_136057.bgImageOn .theDivider1 img {
	display: block;
}



/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686473_136057 {
	width: 100%;
	clear: both;
	padding-top: 100px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686473_136057 .theDivider1,
#simpleDivider_stacks_in_686473_136057 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686473_136057 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686473_136057.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686473_136057.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686473_136057 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686473_136057.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686473_136057.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686473_136057.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686473_136057.bgImageOn .theDivider1 img {
	display: block;
}

/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686516_136057 {
	width: 100%;
	clear: both;
	padding-top: 100px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686516_136057 .theDivider1,
#simpleDivider_stacks_in_686516_136057 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686516_136057 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686516_136057.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686516_136057.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686516_136057 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686516_136057.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686516_136057.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686516_136057.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686516_136057.bgImageOn .theDivider1 img {
	display: block;
}

/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686513_136057 {
	width: 100%;
	clear: both;
	padding-top: 100px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686513_136057 .theDivider1,
#simpleDivider_stacks_in_686513_136057 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686513_136057 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686513_136057.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686513_136057.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686513_136057 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686513_136057.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686513_136057.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686513_136057.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686513_136057.bgImageOn .theDivider1 img {
	display: block;
}


/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686474_136057 {
	width: 100%;
	clear: both;
	padding-top: 100px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686474_136057 .theDivider1,
#simpleDivider_stacks_in_686474_136057 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686474_136057 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686474_136057.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686474_136057.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686474_136057 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686474_136057.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686474_136057.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686474_136057.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686474_136057.bgImageOn .theDivider1 img {
	display: block;
}












#embedIframestacks_in_686464 {
	width: 100%;
	height: 500px;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	display: block;
}









/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686269_136057 {
	width: 100%;
	clear: both;
	padding-top: 100px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686269_136057 .theDivider1,
#simpleDivider_stacks_in_686269_136057 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686269_136057 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686269_136057.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686269_136057.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686269_136057 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686269_136057.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686269_136057.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686269_136057.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686269_136057.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_686274 {
	font-size: 126%;
}
#stacks_in_686270_136001 *,
#stacks_in_686270_136001 *:before,
#stacks_in_686270_136001 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686270_136001 {
	width: 62%;
	margin-left:0;
}

#stacks_in_686270_136006 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686270_136007 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686270_136007 {
		display: none !important;
	}
}
/* Start Video Plus stack CSS code */.stacks_in_2323overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_2323leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_2323leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_2323leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_2323leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_2323rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_2323rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_2323theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_2323overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_2323leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_2323leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_2323leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_2323leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_2323rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_2323rightcolContent{		margin: auto;	}}			.stacks_in_2323posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_2323posterWrapper img:hover{	cursor: pointer;}.stacks_in_2323rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_2323videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686588 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686588 {
		display: none !important;
	}
}






#embedWrapperstacks_in_686587 #videostacks_in_686587 {
	max-width: 100%;
	height: auto;
	display: block;
}

















/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686344_136057 {
	width: 100%;
	clear: both;
	padding-top: 100px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686344_136057 .theDivider1,
#simpleDivider_stacks_in_686344_136057 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686344_136057 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686344_136057.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686344_136057.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686344_136057 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686344_136057.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686344_136057.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686344_136057.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686344_136057.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_686281 {
	font-size: 126%;
}
#stacks_in_686277_136001 *,
#stacks_in_686277_136001 *:before,
#stacks_in_686277_136001 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686277_136001 {
	width: 62%;
	margin-left:0;
}

#stacks_in_686277_136006 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686277_136007 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686277_136007 {
		display: none !important;
	}
}











#embedIframestacks_in_633304 {
	width: 100%;
	height: 500px;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	display: block;
}









/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686284_136057 {
	width: 100%;
	clear: both;
	padding-top: 100px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686284_136057 .theDivider1,
#simpleDivider_stacks_in_686284_136057 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686284_136057 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686284_136057.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686284_136057.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686284_136057 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686284_136057.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686284_136057.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686284_136057.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686284_136057.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_686289 {
	font-size: 126%;
}
#stacks_in_686285_136001 *,
#stacks_in_686285_136001 *:before,
#stacks_in_686285_136001 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686285_136001 {
	width: 62%;
	margin-left:0;
}

#stacks_in_686285_136006 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686285_136007 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686285_136007 {
		display: none !important;
	}
}
/* @group ImageWizard Basic Styling */

#imageWizardstacks_in_686350 {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	box-shadow: none;
	border: none;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	overflow: hidden;
}

#imageWizardInnerstacks_in_686350 {
	position: relative;
}

#imageWizardstacks_in_686350 img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	padding: 0;
	border: none;
	outline: none;
	overflow: hidden;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	margin: 0 auto;
}



/* @end */

/* @group Hyperlink */

/*  */

#imageWizardLinkstacks_in_686350 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url('../index_files/imageWizardAssets/glass.gif') repeat;
	z-index: 100;
}

#imageWizardLinkstacks_in_686350 a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 102;
	outline: none;
}

#linkIconstacks_in_686350 {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 101;
}

#linkIconstacks_in_686350 [class^="fa fa-"] {
	color: #ffffff;
	font-size: 100px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.0;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_686350:hover #linkIconstacks_in_686350 [class^="fa fa-"] {
	opacity: 0.99;
}

#linkShadestacks_in_686350 {
	background: #000000;
	opacity: 0.0;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	transition: all 300ms ease-in-out;
}

#imageWizardstacks_in_686350:hover #linkShadestacks_in_686350 {
	opacity: 0.1;
}

/*  */

/* @end */

/* @group Captions */

/*  */

/* @end */

/* @group Box shadow */

/*  */

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#imageWizardstacks_in_686350 img {
	-webkit-transform: scale(0.90);
	-moz-transform: scale(0.90);
	-o-transform: scale(0.90);
	-ms-transform: scale(0.90);
	transform: scale(0.90);
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

#imageWizardstacks_in_686350:hover img {
	-webkit-transform: scale(1.00);
	-moz-transform: scale(1.00);
	-o-transform: scale(1.00);
	-ms-transform: scale(1.00);
	transform: scale(1.00);
}

/*  */




/* @group Pinterest Sharing */

/*  */

/* @end */

/* @group Inset Shadow */

/*  */

/* @end */

/* @group Copy Protection */

/*  */

/* @end */

/* @group Image Blackout */

/*  */

/* @end */

/* @group Scroll Fade */

/*  */

/* @end */



/* @group Edit Mode Styling */

/*  */

/* @end */

#stacks_in_686360 {
	font-size: 126%;
}
#stacks_in_686359_135915 *,
#stacks_in_686359_135915 *:before,
#stacks_in_686359_135915 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686359_135915 {
	width: 62%;
}

#stacks_in_686359_135918 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686586 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686586 {
		display: none !important;
	}
}

#stacks_in_686584 {
	font-size: 126%;
}
#stacks_in_686582_136001 *,
#stacks_in_686582_136001 *:before,
#stacks_in_686582_136001 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686582_136001 {
	width: 62%;
	margin-left:0;
}

#stacks_in_686582_136006 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686582_136007 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686582_136007 {
		display: none !important;
	}
}
/* Start Video Plus stack CSS code */.stacks_in_686529overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_686529leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_686529leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_686529leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_686529leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_686529rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_686529rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_686529theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_686529overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_686529leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_686529leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_686529leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_686529leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_686529rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_686529rightcolContent{		margin: auto;	}}			.stacks_in_686529posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_686529posterWrapper img:hover{	cursor: pointer;}.stacks_in_686529rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_686529videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code *//*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686545 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686545 .theDivider1,
#simpleDivider_stacks_in_686545 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686545 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686545.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686545.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686545 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686545.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686545.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686545.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686545.bgImageOn .theDivider1 img {
	display: block;
}

/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686292_136057 {
	width: 100%;
	clear: both;
	padding-top: 100px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686292_136057 .theDivider1,
#simpleDivider_stacks_in_686292_136057 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686292_136057 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686292_136057.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686292_136057.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686292_136057 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686292_136057.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686292_136057.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686292_136057.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686292_136057.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_686298 {
	font-size: 126%;
}
#stacks_in_686294_136001 *,
#stacks_in_686294_136001 *:before,
#stacks_in_686294_136001 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686294_136001 {
	width: 62%;
	margin-left:0;
}

#stacks_in_686294_136006 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686294_136007 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686294_136007 {
		display: none !important;
	}
}

#stacks_in_668929 {
	font-size: 126%;
}
#stacks_in_668927_135915 *,
#stacks_in_668927_135915 *:before,
#stacks_in_668927_135915 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_668927_135915 {
	width: 62%;
}

#stacks_in_668927_135918 {
	font-size: 126%;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686293_136057 {
	width: 100%;
	clear: both;
	padding-top: 100px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686293_136057 .theDivider1,
#simpleDivider_stacks_in_686293_136057 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686293_136057 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686293_136057.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686293_136057.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686293_136057 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686293_136057.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686293_136057.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686293_136057.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686293_136057.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_686305 {
	font-size: 126%;
}
#stacks_in_686301_136001 *,
#stacks_in_686301_136001 *:before,
#stacks_in_686301_136001 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686301_136001 {
	width: 62%;
	margin-left:0;
}

#stacks_in_686301_136006 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686301_136007 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686301_136007 {
		display: none !important;
	}
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/

	@font-face {
		font-family: 'Lora';
		src: url('../index_files/lora-regular-webfont.woff') format('woff');
		font-weight: 400;
		font-style: normal;
	}

	@font-face {
		font-family: 'Montserrat';
		src: url('../index_files/montserrat-regular-webfont.woff') format('woff');
		font-weight: 400;
		font-style: normal;
	}

	@font-face {
		font-family: 'Open Sans';
		src: url('../index_files/opensans-regular-webfont.woff') format('woff');
		font-weight: 400;
		font-style: normal;
	}

	@font-face {
		font-family: 'Roboto Slab';
		src: url('../index_files/robotoslab-regular-webfont.woff') format('woff');
		font-weight: 400;
		font-style: normal;
	}


ul#stacks_in_2327_accordion {
	display: block;
	list-style: none;
	border-radius: 4px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

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

#stacks_in_2327 .hide_toggle {
	display: none;
}


/* Label Font Choices */

	ul#stacks_in_2327_accordion .accordion_label {
		font-family: 'Open Sans', sans-serif;
	}















/* Content Font Choices */

	ul#stacks_in_2327_accordion .accordion_content {
		font-family: 'Open Sans', sans-serif;
	}









ul#stacks_in_2327_accordion .accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

ul#stacks_in_2327_accordion .accordion_label i {
}

ul#stacks_in_2327_accordion .stacks_in_2327_accordion_selectedarrow_icon {
}

ul#stacks_in_2327_accordion .accordion_content {
	
		padding: 40px;
	

}

ul#stacks_in_2327_accordion li:last-child .accordion_content {
}

ul#stacks_in_2327_accordion  .accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
	
		position: absolute;
		right: 20px;
		top: 15px;
		margin-right: 0px;
	
	
}

ul#stacks_in_2327_accordion .accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

ul#stacks_in_2327_accordion .stacks_in_2327_accordion_selectedarrow_icon .accordion_icon i {
	
}

#stacks_in_2327_open_all {
	cursor: pointer;
	font-size: 20px;
	
	margin-bottom: 12px;
	
	

}

#stacks_in_2327 .show_all_alignment {
	text-align: left;
	
	
}



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

/* Ghost */
	ul#stacks_in_2327_accordion.ghost {
		border: 1px solid #d4d4d4;
	}

	ul#stacks_in_2327_accordion.ghost .accordion_label {
		color: #434343;
		border-bottom: 1px solid #d4d4d4;
	}

	ul#stacks_in_2327_accordion.ghost .stacks_in_2327_accordion_selectedarrow_icon {
		background-color: #f2f2f2;
	}

	ul#stacks_in_2327_accordion.ghost .accordion_content {
		color: #434343;
		border-bottom: 1px solid #d4d4d4;
	}

	ul#stacks_in_2327_accordion.ghost li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #d4d4d4;
	}

	ul#stacks_in_2327_accordion.ghost li:last-child .accordion_content {
		border-bottom: none;
	}



/* Dark Grey */
	ul#stacks_in_2327_accordion.dark_grey {
		border: 1px solid #adadad;
	}

	ul#stacks_in_2327_accordion.dark_grey .accordion_label {
		color: #FCFEF9;
		border-bottom: 1px solid #4E4F54;
		background: rgb(108,109,113); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzZjNmQ3MSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0ZTRmNTQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(108,109,113,1) 0%, rgba(78,79,84,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(108,109,113,1)), color-stop(100%,rgba(78,79,84,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(108,109,113,1) 0%,rgba(78,79,84,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(108,109,113,1) 0%,rgba(78,79,84,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(108,109,113,1) 0%,rgba(78,79,84,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(108,109,113,1) 0%,rgba(78,79,84,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6c6d71', endColorstr='#4e4f54',GradientType=0 ); /* IE6-8 */
	}

	ul#stacks_in_2327_accordion.dark_grey .stacks_in_2327_accordion_selectedarrow_icon {
		color: #4E4F54;
		border-bottom: 1px solid #adadad;
		background: rgb(238,238,238); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjY2NjY2MiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(238,238,238,1) 0%, rgba(204,204,204,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(238,238,238,1)), color-stop(100%,rgba(204,204,204,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-8 */
	}

	ul#stacks_in_2327_accordion.dark_grey .accordion_content {
		color: #434343;
		border-bottom: 1px solid #adadad;
		background-color: #EFEFEF;
	}

	ul#stacks_in_2327_accordion.dark_grey li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #adadad;
	}

	ul#stacks_in_2327_accordion.dark_grey li:last-child .accordion_content {
		border-bottom: none;
	}




/* Light Blue */
	ul#stacks_in_2327_accordion.light_blue {
		border: 1px solid #E6E6E6;
	}

	ul#stacks_in_2327_accordion.light_blue .accordion_label {
		color: #939496;
		border-top: 1px solid #f3f3f3;
		border-bottom: 1px solid #dedede;
		background: rgb(244,249,249); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: rgb(239,239,239); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VmZWZlZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlNmU2ZTYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(239,239,239,1) 0%, rgba(230,230,230,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(239,239,239,1)), color-stop(100%,rgba(230,230,230,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(239,239,239,1) 0%,rgba(230,230,230,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(239,239,239,1) 0%,rgba(230,230,230,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(239,239,239,1) 0%,rgba(230,230,230,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(239,239,239,1) 0%,rgba(230,230,230,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#e6e6e6',GradientType=0 ); /* IE6-8 */
	}

	ul#stacks_in_2327_accordion.light_blue .stacks_in_2327_accordion_selectedarrow_icon {
		color: #fff;
		border-top: 1px solid #98eaff;
		border-bottom: 1px solid #1EB0F4;
		background: rgb(36,210,253); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI0ZDJmZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMGJlZmMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(36,210,253,1) 0%, rgba(32,190,252,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(36,210,253,1)), color-stop(100%,rgba(32,190,252,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(36,210,253,1) 0%,rgba(32,190,252,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(36,210,253,1) 0%,rgba(32,190,252,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(36,210,253,1) 0%,rgba(32,190,252,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(36,210,253,1) 0%,rgba(32,190,252,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#24d2fd', endColorstr='#20befc',GradientType=0 ); /* IE6-8 */
	}


	ul#stacks_in_2327_accordion.light_blue .accordion_content {
		background: #d6d6d6;
		color: #3E3E3E;
		box-shadow: inset 0 0 5px 0 rgba(0,0,0,0.4);
		border-bottom: 1px solid #E6E6E6;
	}

	ul#stacks_in_2327_accordion.light_blue li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #1EB0F4;
	}

	ul#stacks_in_2327_accordion.light_blue li:last-child .accordion_content {
		border-bottom: none;
	}



/* Flat Teal */
	ul#stacks_in_2327_accordion.flat_teal {
		border: 1px solid #E2E2E2;
	}

	ul#stacks_in_2327_accordion.flat_teal .accordion_label {
		color: #ABABAB;
		background: #FFFFFF;
		border-bottom: 1px solid #E2E2E2;
	}

	ul#stacks_in_2327_accordion.flat_teal .stacks_in_2327_accordion_selectedarrow_icon {
		color: #fff;
		background: #61BBC3;
		border-bottom: 1px solid #61BBC3;
	}

	ul#stacks_in_2327_accordion.flat_teal .accordion_content {
		background: #576465;
		color: #dfdfdf;
		border-bottom: 1px solid #E2E2E2;
		box-shadow: inset 0 0 5px 0 rgba(0,0,0,0.4);
	}

	ul#stacks_in_2327_accordion.flat_teal li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #E2E2E2;
	}

	ul#stacks_in_2327_accordion.flat_teal li:last-child .accordion_content {
		border-bottom: none;
	}



/* Blue Grey */
	ul#stacks_in_2327_accordion.blue_grey {
		border: 1px solid #2D2E32;
	}

	ul#stacks_in_2327_accordion.blue_grey .accordion_label {
		color: #DADEDF;
		text-shadow: 0 -1px 0 #111820;
		border-top: 1px solid #606872;
		border-bottom: 1px solid #212226;
		background: rgb(75,84,91); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRiNTQ1YiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZjQ4NTYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(75,84,91,1) 0%, rgba(63,72,86,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(75,84,91,1)), color-stop(100%,rgba(63,72,86,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b545b', endColorstr='#3f4856',GradientType=0 ); /* IE6-8 */
	}

	ul#stacks_in_2327_accordion.blue_grey .stacks_in_2327_accordion_selectedarrow_icon {
		color: #DADEDF;
		text-shadow: 0 -1px 0 #111820;
		border-bottom: 1px solid #212226;
		background: rgb(75,84,91); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRiNTQ1YiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZjQ4NTYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(75,84,91,1) 0%, rgba(63,72,86,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(75,84,91,1)), color-stop(100%,rgba(63,72,86,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(75,84,91,1) 0%,rgba(63,72,86,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b545b', endColorstr='#3f4856',GradientType=0 ); /* IE6-8 */
	}

	ul#stacks_in_2327_accordion.blue_grey .accordion_content {
		background: #363D45;
		color: #C4C5C9;
		border-bottom: 1px solid #2D2E32;
		box-shadow: inset 0 1px 3px 0 rgba(0,0,0,0.25);
	}

	ul#stacks_in_2327_accordion.blue_grey li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #212226;
	}

	ul#stacks_in_2327_accordion.blue_grey li:last-child .accordion_content {
		border-bottom: none;
	}



/* Flat Orange */
	ul#stacks_in_2327_accordion.flat_orange {
	}

	ul#stacks_in_2327_accordion.flat_orange .accordion_label {
		color: #F6F1E3;
		background: #DC614F;
	}

	ul#stacks_in_2327_accordion.flat_orange .stacks_in_2327_accordion_selectedarrow_icon {
		color: #F6F1E3;
		background: #DC614F;
		border-bottom: 2px solid #B94537;
	}

	ul#stacks_in_2327_accordion.flat_orange .accordion_content {
		background: #CC5545;
		color: #FCE1DB;
		border-bottom: 1px solid #B94537;
	}

	ul#stacks_in_2327_accordion.flat_orange li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #B94537;
	}

	ul#stacks_in_2327_accordion.flat_orange li:last-child .accordion_content {
		border-bottom: none;
	}



/* Forest Green */
	ul#stacks_in_2327_accordion.forest_green {
	}

	ul#stacks_in_2327_accordion.forest_green .accordion_label {
		color: #99C676;
		background: #679341;
		border-top: 1px solid #96BE74;
		border-bottom: 1px solid #425F2E;
	}

	ul#stacks_in_2327_accordion.forest_green .stacks_in_2327_accordion_selectedarrow_icon {
		color: #384D24;
		background: #95BF70;
		border-bottom: 1px solid #29371d;
	}

	ul#stacks_in_2327_accordion.forest_green .accordion_content {
		background: #394D27;
		color: #F0F8E7;
		border-bottom: 1px solid #29371d;
	}

	ul#stacks_in_2327_accordion.forest_green li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #29371d;
	}

	ul#stacks_in_2327_accordion.forest_green li:last-child .accordion_content {
		border-bottom: none;
	}



/* Earthy */
	ul#stacks_in_2327_accordion.earthy {
		border: 1px solid #645B51;
	}

	ul#stacks_in_2327_accordion.earthy .accordion_label {
		color: #F7E7D4;
		background: #806F63;
		border-top: 1px solid #908279;
		border-bottom: 1px solid #645B51;
	}

	ul#stacks_in_2327_accordion.earthy .stacks_in_2327_accordion_selectedarrow_icon {
		color: #F7E7D5;
		background: #D95943;
		border-top: 1px solid #E58669;
		border-bottom: 2px solid #D01C1F;
	}

	ul#stacks_in_2327_accordion.earthy .accordion_content {
		background: #645548;
		color: #c4bcb1;
		border-bottom: 1px solid #52453b;
	}

	ul#stacks_in_2327_accordion.earthy li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #29371d;
	}

	ul#stacks_in_2327_accordion.earthy li:last-child .accordion_content {
		border-bottom: none;
	}



/* Purple Power */
	ul#stacks_in_2327_accordion.purple_power {
	}

	ul#stacks_in_2327_accordion.purple_power .accordion_label {
		color: #fff;
		background: #B05B9E;
		border-top: 1px solid #c069ae;
		border-bottom: 1px solid #a45693;
	}

	ul#stacks_in_2327_accordion.purple_power .stacks_in_2327_accordion_selectedarrow_icon {
		color: #fff;
		background: #B05B9E;
		border-top: 1px solid #c069ae;
		border-bottom: 1px solid #4d3572;
	}

	ul#stacks_in_2327_accordion.purple_power .accordion_content {
		background: #6B4E99;
		color: #fff;
		border-bottom: 1px solid #4d3572;
	}

	ul#stacks_in_2327_accordion.purple_power li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #4d3572;
	}

	ul#stacks_in_2327_accordion.purple_power li:last-child .accordion_content {
		border-bottom: none;
	}



/* Bold Blue */
	ul#stacks_in_2327_accordion.bold_blue {
		border: 1px solid #DBDBDB;
	}

	ul#stacks_in_2327_accordion.bold_blue .accordion_label {
	  color: #333333;
	  background-color: #f5f5f5;
	  *background-color: #e6e6e6;
	  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
	  background-repeat: repeat-x;
		border-top: 1px solid #ffffff;
		border-bottom: 1px solid #DBDBDB;
	}

	ul#stacks_in_2327_accordion.bold_blue .stacks_in_2327_accordion_selectedarrow_icon {
	  color: #ffffff;
	  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	  background-color: #006dcc;
	  *background-color: #0044cc;
	  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
	  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
	  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
	  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
	  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
	  background-repeat: repeat-x;
	  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
	  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
		border-top: 1px solid #0d93d6;
		border-bottom: 1px solid #02369f;
	}

	ul#stacks_in_2327_accordion.bold_blue .accordion_content {
		background: rgb(247,247,247); /* Old browsers */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZWZlZmUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  rgba(247,247,247,1) 0%, rgba(254,254,254,1) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(247,247,247,1)), color-stop(100%,rgba(254,254,254,1))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(254,254,254,1) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(254,254,254,1) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  rgba(247,247,247,1) 0%,rgba(254,254,254,1) 100%); /* IE10+ */
		background: linear-gradient(to bottom,  rgba(247,247,247,1) 0%,rgba(254,254,254,1) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#fefefe',GradientType=0 ); /* IE6-8 */
		color: #434343;
		border-bottom: 1px solid #e2e2e2;
	}

	ul#stacks_in_2327_accordion.bold_blue li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #02369f;
	}

	ul#stacks_in_2327_accordion.bold_blue li:last-child .accordion_content {
		border-bottom: none;
	}



/* Baby Blue */
	ul#stacks_in_2327_accordion.baby_blue {
		border: 1px solid #C4CDDF;
	}

	ul#stacks_in_2327_accordion.baby_blue .accordion_label {
		color: #8BAEF7;
		background: #E0ECFD;
		border-top: 1px solid #e9f2fe;
		border-bottom: 1px solid #C4CDDF;
	}

	ul#stacks_in_2327_accordion.baby_blue .stacks_in_2327_accordion_selectedarrow_icon {
		color: #8BAEF7;
		background: #E0ECFD;
		border-top: 1px solid #e9f2fe;
		border-bottom: 1px solid #C4CDDF;
	}

	ul#stacks_in_2327_accordion.baby_blue .accordion_content {
		background: #F8F8F8;
		color: #797979;
		border-bottom: 1px solid #C4CDDF;
	}

	ul#stacks_in_2327_accordion.baby_blue li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #C4CDDF;
	}

	ul#stacks_in_2327_accordion.baby_blue li:last-child .accordion_content {
		border-bottom: none;
	}



/* Shamrock */
	ul#stacks_in_2327_accordion.shamrock {
	}

	ul#stacks_in_2327_accordion.shamrock .accordion_label {
		color: #FFFFFF;
		background: #3EBF9C;
		border-bottom: 1px solid #2ba483;
	}

	ul#stacks_in_2327_accordion.shamrock .stacks_in_2327_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #DE4641;
		border-bottom: 1px solid #283444;
	}

	ul#stacks_in_2327_accordion.shamrock .accordion_content {
		background: #2F3D4F;
		color: #EFF3F3;
		border-bottom: 1px solid #283444;
	}

	ul#stacks_in_2327_accordion.shamrock li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #283444;
	}

	ul#stacks_in_2327_accordion.shamrock li:last-child .accordion_content {
		border-bottom: none;
	}



/* Crimson */
	ul#stacks_in_2327_accordion.crimson {
		border: 1px solid #000000;
	}

	ul#stacks_in_2327_accordion.crimson .accordion_label {
		color: #EEFFFF;
		background: #222222;
		border-bottom: 1px solid #000000;
	}

	ul#stacks_in_2327_accordion.crimson .stacks_in_2327_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #DE4641;
		border-bottom: 1px solid #cc3f3a;
	}

	ul#stacks_in_2327_accordion.crimson .accordion_content {
		background: #000000;
		color: #999999;
	}

	ul#stacks_in_2327_accordion.crimson li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #cc3f3a;
	}

	ul#stacks_in_2327_accordion.crimson li:last-child .accordion_content {
		border-bottom: none;
	}



/* Gun Metal */
	ul#stacks_in_2327_accordion.gun_metal {
	}

	ul#stacks_in_2327_accordion.gun_metal .accordion_label {
		color: #F7F8F8;
		background: #47545E;
		border-bottom: 1px solid #2E363C;
	}

	ul#stacks_in_2327_accordion.gun_metal .stacks_in_2327_accordion_selectedarrow_icon {
		color: #3A4753;
		background: #49A2E0;
		border-bottom: 1px solid #2E363C;
	}

	ul#stacks_in_2327_accordion.gun_metal .accordion_content {
		background: #3C474F;
		color: #F8F9F9;
		border-bottom: 1px solid #2E363C;
	}

	ul#stacks_in_2327_accordion.gun_metal li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #2E363C;
	}

	ul#stacks_in_2327_accordion.gun_metal li:last-child .accordion_content {
		border-bottom: none;
	}



/* Bright Blue */
	ul#stacks_in_2327_accordion.bright_blue {
		border: 1px solid #E0E9ED;
	}

	ul#stacks_in_2327_accordion.bright_blue .accordion_label {
		color: #5C7F89;
		background: #FFFFFF;
		border-bottom: 1px solid #E0E9ED;
	}

	ul#stacks_in_2327_accordion.bright_blue .stacks_in_2327_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #1FBDD0;
		border-bottom: none;
	}

	ul#stacks_in_2327_accordion.bright_blue .accordion_content {
		background: #E0E9ED;
		color: #668b94;
	}

	ul#stacks_in_2327_accordion.bright_blue li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
	}

	ul#stacks_in_2327_accordion.bright_blue li:last-child .accordion_content {
		border-bottom: none;
	}



/* Pinky */
	ul#stacks_in_2327_accordion.pinky {
	}

	ul#stacks_in_2327_accordion.pinky .accordion_label {
		color: #695E5D;
		background: #F1C1BC;
		border-bottom: 1px solid #dab0ad;
	}

	ul#stacks_in_2327_accordion.pinky .stacks_in_2327_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #F1A7AC;
		border-bottom: 1px solid #d79498;
	}

	ul#stacks_in_2327_accordion.pinky .accordion_content {
		background: #EFE8D4;
		color: #837974;
	}

	ul#stacks_in_2327_accordion.pinky li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #dab0ad;
	}

	ul#stacks_in_2327_accordion.pinky li:last-child .accordion_content {
		border-bottom: none;
	}



/* Tesla */
	ul#stacks_in_2327_accordion.tesla {
	}

	ul#stacks_in_2327_accordion.tesla .accordion_label {
		color: #ffffff;
		background: #B48ECB;
		border-bottom: 1px solid #9a73b2;
		border-top: 1px solid #c9aadc;
	}

	ul#stacks_in_2327_accordion.tesla .stacks_in_2327_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #67487C;
		border-bottom: 1px solid #573769;
		border-top: 1px solid transparent;
	}

	ul#stacks_in_2327_accordion.tesla .accordion_content {
		background: #F7F7F7;
		color: #414141;
		border-bottom: 1px solid #9a73b2;
	}

	ul#stacks_in_2327_accordion.tesla li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #573769;
	}

	ul#stacks_in_2327_accordion.tesla li:last-child .accordion_content {
		border-bottom: none;
	}



/* Rustic */
	ul#stacks_in_2327_accordion.rustic {
	}

	ul#stacks_in_2327_accordion.rustic .accordion_label {
		color: #ffffff;
		background: #A6C8A7;
		border-bottom: 1px solid #96b597;
	}

	ul#stacks_in_2327_accordion.rustic .stacks_in_2327_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #585858;
		border-bottom: 1px solid #484848;
	}

	ul#stacks_in_2327_accordion.rustic .accordion_content {
		background: #EDEDED;
		color: #414141;
		border-bottom: 1px solid #96b597;
	}

	ul#stacks_in_2327_accordion.rustic li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #484848;
	}

	ul#stacks_in_2327_accordion.rustic li:last-child .accordion_content {
		border-bottom: none;
	}



/* Ruby */
	ul#stacks_in_2327_accordion.ruby {
	}

	ul#stacks_in_2327_accordion.ruby .accordion_label {
		color: #ffffff;
		background: #D9385A;
		border-bottom: 1px solid #aa0639;
	}

	ul#stacks_in_2327_accordion.ruby .stacks_in_2327_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #BF0740;
		border-bottom: 1px solid #aa0639;
	}

	ul#stacks_in_2327_accordion.ruby .accordion_content {
		background: #ededed;
		color: #7A7A7A;
		border-bottom: 1px solid #aa0639;
	}

	ul#stacks_in_2327_accordion.ruby li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #aa0639;
	}

	ul#stacks_in_2327_accordion.ruby li:last-child .accordion_content {
		border-bottom: none;
	}



/* Feather */
	ul#stacks_in_2327_accordion.feather {
	}

	ul#stacks_in_2327_accordion.feather .accordion_label {
		color: #ffffff;
		background: #DC8364;
		border-bottom: 1px solid #D66C5A;
	}

	ul#stacks_in_2327_accordion.feather .stacks_in_2327_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #3EBF9C;
		border-bottom: 1px solid #3BAE8D;
	}

	ul#stacks_in_2327_accordion.feather .accordion_content {
		background: #E3DFDE;
		color: #7A7A7A;
		border-bottom: 1px solid #D46C5D;
	}

	ul#stacks_in_2327_accordion.feather li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #3BAE8D;
	}

	ul#stacks_in_2327_accordion.feather li:last-child .accordion_content {
		border-bottom: none;
	}



/* Abstract */
	ul#stacks_in_2327_accordion.abstract {
	}

	ul#stacks_in_2327_accordion.abstract .accordion_label {
		color: #ffffff;
		background: #2C2B2C;
		border-bottom: 1px solid #1B1A1D;
	}

	ul#stacks_in_2327_accordion.abstract .stacks_in_2327_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #D6395C;
		border-bottom: 1px solid #c03353;
	}

	ul#stacks_in_2327_accordion.abstract .accordion_content {
		background: #1B1A1D;
		color: #CDCDCD;
		border-bottom: 1px solid #1B1A1D;
	}

	ul#stacks_in_2327_accordion.abstract li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #c03353;
	}

	ul#stacks_in_2327_accordion.abstract li:last-child .accordion_content {
		border-bottom: none;
	}




/* Hive */
	ul#stacks_in_2327_accordion.hive {
	}

	ul#stacks_in_2327_accordion.hive .accordion_label {
		color: #ffffff;
		background: #F28753;
		border-bottom: 1px solid #CB6B22;
	}

	ul#stacks_in_2327_accordion.hive .stacks_in_2327_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #29BB9C;
		border-bottom: 1px solid #3F9D8E;
	}

	ul#stacks_in_2327_accordion.hive .accordion_content {
		background: #FAEBE2;
		color: #646464;
		border-bottom: 1px solid #FAEBE3;
	}

	ul#stacks_in_2327_accordion.hive li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #3F9D8E;
	}

	ul#stacks_in_2327_accordion.hive li:last-child .accordion_content {
		border-bottom: none;
	}




/* Navigator */
	ul#stacks_in_2327_accordion.navigator {
	}

	ul#stacks_in_2327_accordion.navigator .accordion_label {
		color: #ffffff;
		background: #63b8f5;
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzYzYjhmNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1N2EyZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  #63b8f5 0%, #57a2f6 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#63b8f5), color-stop(100%,#57a2f6));
		background: -webkit-linear-gradient(top,  #63b8f5 0%,#57a2f6 100%);
		background: -o-linear-gradient(top,  #63b8f5 0%,#57a2f6 100%);
		background: -ms-linear-gradient(top,  #63b8f5 0%,#57a2f6 100%);
		background: linear-gradient(to bottom,  #63b8f5 0%,#57a2f6 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#63b8f5', endColorstr='#57a2f6',GradientType=0 );
		border-bottom: 1px solid #559dee;
		border-top: 1px solid #81caff;
	}

	ul#stacks_in_2327_accordion.navigator .stacks_in_2327_accordion_selectedarrow_icon {
		color: #1858a1;
		background: #469af4;
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ2OWFmNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0NmFjZjQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(top,  #469af4 0%, #46acf4 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#469af4), color-stop(100%,#46acf4));
		background: -webkit-linear-gradient(top,  #469af4 0%,#46acf4 100%);
		background: -o-linear-gradient(top,  #469af4 0%,#46acf4 100%);
		background: -ms-linear-gradient(top,  #469af4 0%,#46acf4 100%);
		background: linear-gradient(to bottom,  #469af4 0%,#46acf4 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#469af4', endColorstr='#46acf4',GradientType=0 );
		border-bottom: 1px solid #4289da;
		border-top: 1px solid transparent;
	}

	ul#stacks_in_2327_accordion.navigator .accordion_content {
		background: #F7F7F7;
		color: #414141;
		border-bottom: 1px solid #81caff;
	}

	ul#stacks_in_2327_accordion.navigator li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #573769;
	}

	ul#stacks_in_2327_accordion.navigator li:last-child .accordion_content {
		border-bottom: none;
	}



/* Majestic */
	ul#stacks_in_2327_accordion.majestic {
	}

	ul#stacks_in_2327_accordion.majestic .accordion_label {
		color: #ffffff;
		background: #4AC7CB;
		border-bottom: 1px solid #3aabaf;
	}

	ul#stacks_in_2327_accordion.majestic .stacks_in_2327_accordion_selectedarrow_icon {
		color: #ffffff;
		background: #DE425A;
		border-bottom: 1px solid #c83d52;
	}

	ul#stacks_in_2327_accordion.majestic .accordion_content {
		background: #f4f4f4;
		color: #7A7A7A;
		border-bottom: 1px solid #e8e8e8;
	}

	ul#stacks_in_2327_accordion.majestic li:last-child .stacks_in_2327_accordion_selectedarrow_icon {
		border-bottom: 1px solid #c83d52;
	}

	ul#stacks_in_2327_accordion.majestic li:last-child .accordion_content {
		border-bottom: none;
	}



/* END OF STYLES */



/* CUSTOM */







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


@media only screen {
	ul#stacks_in_2327_accordion .accordion_label {
		font-size: 20px;
	}

	ul#stacks_in_2327_accordion .accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			padding-right: 60px;
		
		
	}

}

@media only screen and (max-width: 1024px) {
	ul#stacks_in_2327_accordion .accordion_label {
		font-size: 18px;
	}

	ul#stacks_in_2327_accordion .accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			padding-right: 60px;
		
		
	}
}

@media only screen and (max-width: 768px) {
	ul#stacks_in_2327_accordion .accordion_label {
		font-size: 16px;
	}

	ul#stacks_in_2327_accordion .accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			padding-right: 50px;
		
		
	}
}

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

	ul#stacks_in_2327_accordion .accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
		
			padding-right: 50px;
		
		
	}
}












#embedIframestacks_in_613687 {
	width: 100%;
	height: 500px;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	display: block;
}





















#embedIframestacks_in_613673 {
	width: 100%;
	height: 500px;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	display: block;
}










.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686604 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686604 {
		display: none !important;
	}
}

#stacks_in_686600 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686603 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686603 {
		display: none !important;
	}
}












#embedIframestacks_in_613645 {
	width: 100%;
	height: 500px;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	display: block;
}





















#embedIframestacks_in_613603 {
	width: 100%;
	height: 500px;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	display: block;
}





















#embedIframestacks_in_613617 {
	width: 100%;
	height: 500px;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	display: block;
}





















#embedIframestacks_in_613631 {
	width: 100%;
	height: 500px;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	display: block;
}










.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686610 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686610 {
		display: none !important;
	}
}

#stacks_in_686609 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686612 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686612 {
		display: none !important;
	}
}












#embedIframestacks_in_613589 {
	width: 100%;
	height: 500px;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	display: block;
}





















#embedIframestacks_in_613659 {
	width: 100%;
	height: 500px;
	border: none;
	outline: none;
	padding: 0;
	margin: 0;
	display: block;
}









/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686308_136057 {
	width: 100%;
	clear: both;
	padding-top: 100px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686308_136057 .theDivider1,
#simpleDivider_stacks_in_686308_136057 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686308_136057 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686308_136057.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686308_136057.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686308_136057 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686308_136057.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686308_136057.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686308_136057.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686308_136057.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_686621 *,
#stacks_in_686621 *:before,
#stacks_in_686621 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_686631 {
	line-height: 3em;
	letter-spacing: 3px;
	font-size: 239%;
}

#stacks_in_686633 {
	font-size: 126%;
}
#stacks_in_686622_136001 *,
#stacks_in_686622_136001 *:before,
#stacks_in_686622_136001 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686622_136001 {
	width: 62%;
	margin-left:0;
}

#stacks_in_686622_136006 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686622_136007 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686622_136007 {
		display: none !important;
	}
}

#stacks_in_686635 {
	font-size: 126%;
}
#stacks_in_686623_594864 *,
#stacks_in_686623_594864 *:before,
#stacks_in_686623_594864 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686623_594864 {
	width: 62%;
	margin-left:0;
}

#stacks_in_686623_594867 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686623_594868 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686623_594868 {
		display: none !important;
	}
}
/*  Gridly v1.0.0 by WeaverThemes */

#stacks_in_686624 .row { color: #FFFFFF }
#stacks_in_686624 .row span i { text-align: center;display: block;line-height: 20px; }
#stacks_in_686624 .row span i:before { font-size: 20px }


#stacks_out_686624 {
	margin-left:0;
}
/* Start Video Plus stack CSS code */.stacks_in_686637overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_686637leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_686637leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_686637leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_686637leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_686637rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_686637rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_686637theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_686637overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_686637leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_686637leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_686637leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_686637leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_686637rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_686637rightcolContent{		margin: auto;	}}			.stacks_in_686637posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_686637posterWrapper img:hover{	cursor: pointer;}.stacks_in_686637rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_686637rightCol{		display: none;	}	.stacks_in_686637leftCol{		position: absolute;		width: 100%;		height: 100%;		top:0;		left: 0;		right: 0;		overflow: scroll;		margin-left: -100%;		transition: all 0.6s ease;	}		@media all and (max-width: 768px) {		.stacks_in_686637overlay{			background: rgba(0,0,0,0.9) !important;			padding-top: 0px;		}				.stacks_in_686637leftCol{			background: rgba(0,0,0,0.9) !important;		}				.stacks_in_686637leftcolContent{		    width: 90%;		    margin: auto;		    text-align: center;		}	}.stacks_in_686637videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_686637 {
	padding:  3px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686643 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686643 .theDivider1,
#simpleDivider_stacks_in_686643 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686643 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686643.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686643.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686643 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686643.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686643.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686643.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686643.bgImageOn .theDivider1 img {
	display: block;
}

/* Start Video Plus stack CSS code */.stacks_in_686647overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_686647leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_686647leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_686647leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_686647leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_686647rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_686647rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_686647theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_686647overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_686647leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_686647leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_686647leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_686647leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_686647rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_686647rightcolContent{		margin: auto;	}}			.stacks_in_686647posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_686647posterWrapper img:hover{	cursor: pointer;}.stacks_in_686647rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_686647rightCol{		display: none;	}	.stacks_in_686647leftCol{		position: absolute;		width: 100%;		height: 100%;		top:0;		left: 0;		right: 0;		overflow: scroll;		margin-left: -100%;		transition: all 0.6s ease;	}		@media all and (max-width: 768px) {		.stacks_in_686647overlay{			background: rgba(0,0,0,0.9) !important;			padding-top: 0px;		}				.stacks_in_686647leftCol{			background: rgba(0,0,0,0.9) !important;		}				.stacks_in_686647leftcolContent{		    width: 90%;		    margin: auto;		    text-align: center;		}	}.stacks_in_686647videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_686647 {
	padding:  3px;
}
/* Start Video Plus stack CSS code */.stacks_in_686658overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_686658leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_686658leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_686658leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_686658leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_686658rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_686658rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_686658theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_686658overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_686658leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_686658leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_686658leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_686658leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_686658rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_686658rightcolContent{		margin: auto;	}}			.stacks_in_686658posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_686658posterWrapper img:hover{	cursor: pointer;}.stacks_in_686658rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_686658rightCol{		display: none;	}	.stacks_in_686658leftCol{		position: absolute;		width: 100%;		height: 100%;		top:0;		left: 0;		right: 0;		overflow: scroll;		margin-left: -100%;		transition: all 0.6s ease;	}		@media all and (max-width: 768px) {		.stacks_in_686658overlay{			background: rgba(0,0,0,0.9) !important;			padding-top: 0px;		}				.stacks_in_686658leftCol{			background: rgba(0,0,0,0.9) !important;		}				.stacks_in_686658leftcolContent{		    width: 90%;		    margin: auto;		    text-align: center;		}	}.stacks_in_686658videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_686658 {
	padding:  3px;
}

#stacks_in_686664 {
	font-size: 126%;
}
#stacks_in_686662_136001 *,
#stacks_in_686662_136001 *:before,
#stacks_in_686662_136001 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686662_136001 {
	width: 62%;
	margin-left:0;
}

#stacks_in_686662_136006 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686662_136007 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686662_136007 {
		display: none !important;
	}
}
#stacks_in_686625>.s3_row {
	margin: 0 -10px;
}

#stacks_in_686625>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_686625>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_686625>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_686625>.s3_row>.s3_column {
	padding: 0 10px;
}








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



}



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


	#stacks_in_686625>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_686625>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}




#stacks_in_686668 {
	font-size: 126%;
}

#stacks_in_686671 {
	font-size: 126%;
}

#stacks_in_686674 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686626 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686626 {
		display: none !important;
	}
}
/*  Gridly v1.0.0 by WeaverThemes */

#stacks_in_686627 .row { color: #FFFFFF }
#stacks_in_686627 .row span i { text-align: center;display: block;line-height: 20px; }
#stacks_in_686627 .row span i:before { font-size: 20px }


#stacks_out_686627 {
	margin-left:0;
}
/* Start Video Plus stack CSS code */.stacks_in_686676overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_686676leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_686676leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_686676leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_686676leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_686676rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_686676rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_686676theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_686676overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_686676leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_686676leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_686676leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_686676leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_686676rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_686676rightcolContent{		margin: auto;	}}			.stacks_in_686676posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_686676posterWrapper img:hover{	cursor: pointer;}.stacks_in_686676rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_686676rightCol{		display: none;	}	.stacks_in_686676leftCol{		position: absolute;		width: 100%;		height: 100%;		top:0;		left: 0;		right: 0;		overflow: scroll;		margin-left: -100%;		transition: all 0.6s ease;	}		@media all and (max-width: 768px) {		.stacks_in_686676overlay{			background: rgba(0,0,0,0.9) !important;			padding-top: 0px;		}				.stacks_in_686676leftCol{			background: rgba(0,0,0,0.9) !important;		}				.stacks_in_686676leftcolContent{		    width: 90%;		    margin: auto;		    text-align: center;		}	}.stacks_in_686676videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_686676 {
	padding:  3px;
}

#stacks_in_686682 {
	font-size: 126%;
}
#stacks_in_686680_136001 *,
#stacks_in_686680_136001 *:before,
#stacks_in_686680_136001 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_out_686680_136001 {
	width: 62%;
	margin-left:0;
}

#stacks_in_686680_136006 {
	font-size: 126%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_686680_136007 {
	height: 40.00px;
}




















@media print {
	#spacerStackstacks_in_686680_136007 {
		display: none !important;
	}
}
/* Start Video Plus stack CSS code */.stacks_in_686685overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_686685leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_686685leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_686685leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_686685leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_686685rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_686685rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_686685theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_686685overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_686685leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_686685leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_686685leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_686685leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_686685rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_686685rightcolContent{		margin: auto;	}}			.stacks_in_686685posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_686685posterWrapper img:hover{	cursor: pointer;}.stacks_in_686685rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_686685rightCol{		display: none;	}	.stacks_in_686685leftCol{		position: absolute;		width: 100%;		height: 100%;		top:0;		left: 0;		right: 0;		overflow: scroll;		margin-left: -100%;		transition: all 0.6s ease;	}		@media all and (max-width: 768px) {		.stacks_in_686685overlay{			background: rgba(0,0,0,0.9) !important;			padding-top: 0px;		}				.stacks_in_686685leftCol{			background: rgba(0,0,0,0.9) !important;		}				.stacks_in_686685leftcolContent{		    width: 90%;		    margin: auto;		    text-align: center;		}	}.stacks_in_686685videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_686685 {
	padding:  3px;
}
/* Start Video Plus stack CSS code */.stacks_in_686696overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_686696leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_686696leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_686696leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_686696leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_686696rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_686696rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_686696theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_686696overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_686696leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_686696leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_686696leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_686696leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_686696rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_686696rightcolContent{		margin: auto;	}}			.stacks_in_686696posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_686696posterWrapper img:hover{	cursor: pointer;}.stacks_in_686696rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_686696rightCol{		display: none;	}	.stacks_in_686696leftCol{		position: absolute;		width: 100%;		height: 100%;		top:0;		left: 0;		right: 0;		overflow: scroll;		margin-left: -100%;		transition: all 0.6s ease;	}		@media all and (max-width: 768px) {		.stacks_in_686696overlay{			background: rgba(0,0,0,0.9) !important;			padding-top: 0px;		}				.stacks_in_686696leftCol{			background: rgba(0,0,0,0.9) !important;		}				.stacks_in_686696leftcolContent{		    width: 90%;		    margin: auto;		    text-align: center;		}	}.stacks_in_686696videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_686696 {
	padding:  3px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_686702 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_686702 .theDivider1,
#simpleDivider_stacks_in_686702 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_686702 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_686702.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_686702.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686702 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_686702.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_686702.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_686702.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_686702.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_686705 {
	font-size: 126%;
}
/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_686615_12921 #myExtraContent3,
#ExtraContentPlusstacks_in_686615_12921 #fs {
	display: none;
}

