@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_bigwhiteduck_stacks_headerpro_stack .text-center{text-align:center}.com_bigwhiteduck_stacks_headerpro_stack .text-left{text-align:left}.com_bigwhiteduck_stacks_headerpro_stack .text-right{text-align:right}.com_bigwhiteduck_stacks_headerpro_stack .text-justify{text-align:justify}.com_bigwhiteduck_stacks_headerpro_stack .text-inherit{text-align:inherit}
.com_joeworkman_stacks_link_stack a{display:block;text-decoration:none !important;padding:0;margin:0}
#stacks_in_1248 *,
#stacks_in_1248 *:before,
#stacks_in_1248 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_803 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width: 0px 0px 2px 0px;
	margin: 0px 0px 30px 0px;
}

#stacks_in_803_1 {
	margin: 0px 0px 4px 0px;
}
#stacks_in_803_6 h1,#stacks_in_803_6 .hTxt:not(.segment) div{font-size:2.00rem}@media all and (max-width:640px){#stacks_in_803_6 h1,#stacks_in_803_6 .hTxt:not(.segment) div{font-size:1.00rem}}@media only screen and (min-width:0px){#stacks_in_803_6 h1,#stacks_in_803_6 div{letter-spacing:2.00px}}#stacks_in_803_6 .header-pro.text-center .hTxt{margin-right:-2px}@media only screen and (min-width:0px){#stacks_in_803_6 h1,#stacks_in_803_6 div{word-spacing:1.60px}}#stacks_in_803_6 h1,#stacks_in_803_6 div{color:rgba(51, 51, 51, 1.00)}#stacks_in_803_6 h1 a,#stacks_in_803_6 div a{color:rgba(51, 51, 51, 1.00)}#stacks_in_803_6 h1 a:hover,#stacks_in_803_6 div a:hover{color:rgba(38, 38, 38, 1.00)}#stacks_in_803_6 small,#stacks_in_803_6 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_803_6 h1.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}#stacks_in_803_6 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"Perpetua",Sans-Serif;font-weight:800;font-style:italic}#stacks_in_803_6 .hTxt{text-shadow:0px 4px 2px rgba(147, 147, 147, 0.30),0px 4px 5px rgba(192, 192, 192, 0.30),0px 4px 5px rgba(192, 192, 192, 0.30)}

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



.wow {
	visibility: hidden;
}
/* Start doo Tab 2 stack each CSS code */#stacks_in_373wrapper{	position: relative;	-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */	box-sizing: border-box !important;         /* Opera/IE 8+ */}#stacks_in_373 .dooTabContentTitle{	display: none;}ul.stacks_in_373tabs {	position: relative;	margin: 0 !important;	padding: 0;	float: left;	list-style: none !important;	list-style-type: none !important;	height: 34px;	border-bottom: 1px solid rgba(102, 102, 102, 1.00);	width: 100%;	-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */	box-sizing: border-box !important;         /* Opera/IE 8+ */}ul.stacks_in_373tabs li {	float: left;	margin: 0;	cursor: pointer;	padding: 0px 21px;	height: 33px;	line-height: 33px !important;	border-top: 1px solid rgba(179, 179, 179, 1.00);	border-right: 1px solid rgba(179, 179, 179, 1.00);	/*border-bottom: 1px solid rgba(102, 102, 102, 1.00);*/	border-left: 1px solid rgba(179, 179, 179, 1.00);	background-color: rgba(230, 230, 230, 1.00);	color: rgba(0, 128, 255, 1.00);	overflow: hidden;	position: relative;	margin-left: 5px;	z-index: 1;	-webkit-border-top-left-radius: 4px;	-webkit-border-top-right-radius: 4px;	-moz-border-radius-topleft: 4px;	-moz-border-radius-topright: 4px;	border-top-left-radius: 4px;	border-top-right-radius: 4px;	white-space: nowrap;	font-size: 14px !important;	list-style: none !important;	list-style-type: none !important;	-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */	box-sizing: border-box !important;         /* Opera/IE 8+ */}/*.tab_last { border-right: 1px solid ; }*/ul.stacks_in_373tabs li.tab_first { margin-left: 0px; }ul.stacks_in_373tabs li:hover {	color: rgba(0, 108, 235, 1.00);}ul.stacks_in_373tabs li.active {	background-color: rgba(76, 76, 76, 1.00);	color: rgba(255, 255, 255, 1.00);	border-top: 1px solid rgba(102, 102, 102, 1.00);	border-left: 1px solid rgba(102, 102, 102, 1.00);	border-right: 1px solid rgba(102, 102, 102, 1.00);	display: block;	z-index: 10;	-webkit-box-sizing: content-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: content-box !important;    /* Firefox, other Gecko */	box-sizing: content-box !important;         /* Opera/IE 8+ */}.stacks_in_373tab_container {	position: relative;	border: 1px solid rgba(102, 102, 102, 1.00);	border-top: none;	background: rgba(76, 76, 76, 1.00);	overflow: auto;	-webkit-border-bottom-right-radius: 3px;	-webkit-border-bottom-left-radius: 3px;	-moz-border-radius-bottomright: 3px;	-moz-border-radius-bottomleft: 3px;	border-bottom-right-radius: 3px;	border-bottom-left-radius: 3px;	-webkit-box-sizing: content-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: content-box !important;    /* Firefox, other Gecko */	box-sizing: content-box !important;         /* Opera/IE 8+ */}#stacks_in_373 .dooTabContent {	padding: 28px;	display: none;}#stacks_in_373 .tab_drawer_heading { display: none; }@media screen and (max-width: 600px) {	ul.stacks_in_373tabs {		border-bottom: none;	}	.stacks_in_373tabs {		display: none;	}	#stacks_in_373 .tab_drawer_heading {		background-color: rgba(230, 230, 230, 1.00) !important;		color: rgba(0, 128, 255, 1.00) !important;		border-top: 1px solid rgba(102, 102, 102, 1.00);		margin: 0;		padding: 8px 20px;		display: block;		cursor: pointer;		-webkit-touch-callout: none;		-webkit-user-select: none;		-khtml-user-select: none;		-moz-user-select: none;		-ms-user-select: none;		user-select: none;		font-size: 16px !important;	}	.stacks_in_373tab_container > div:first-child .tab_drawer_heading {		border-top: 0px !important;	}	.stacks_in_373_active {		background-color: rgba(76, 76, 76, 1.00) !important;		color: rgba(255, 255, 255, 1.00);		border-bottom: 1px solid rgba(102, 102, 102, 1.00);	}	.stacks_in_373tab_container {	border: 1px solid rgba(102, 102, 102, 1.00) !important;	-webkit-border-radius: 4px;	-moz-border-radius: 4px;	border-radius: 4px;	}}/* End doo Tab 2 stack each CSS code */
#stacks_out_373 {
	margin-right:0;
}
/* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code */
#stacks_in_375 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}
/* Start Print This 2 stack CSS code */.stacks_in_1125_277PrintThisOuter{	 	background-color: transparent;		padding: 21px;	border: 1px dashed #CCCCCC;	-moz-border-radius: 9px;	-webkit-border-radius: 9px;	border-radius: 9px;}.stacks_in_1125_277PrintThis2{	position: relative;}@font-face {  font-family: "doo_fontsregular";  src: url('../files/printthis2Assets/font/doo_print-webfont.eot');  src: url('../files/printthis2Assets/font/doo_print-webfont.eot?#iefix') format('eot'), url('../files/printthis2Assets/font/doo_print-webfont.woff') format('woff'), url('../files/printthis2Assets/font/doo_print-webfont.ttf') format('truetype'), url('../files/printthis2Assets/font/doo_print-webfont.svg#doo_fontsregular') format('svg');  font-weight: normal;  font-style: normal;}.stacks_in_1125_277PrintThisButton{  float: right;  font-family: "doo_fontsregular";  font-size: 40px;  line-height: 40px;  font-weight: normal;  font-style: normal;  display: inline-block;  text-decoration: inherit;  color: #FFFFFF;  cursor:pointer;}.stacks_in_1125_277PrintThisButton:hover{  color: #FFFFFF;}.stacks_in_1125_277clearer{	clear: both;	height: 1px;	padding: 0;	margin: 0;}/* End Print This 2 stack CSS code */
#stacks_in_1125_277 {
	margin:  10px;
	padding:  20px;
}

#stacks_in_1125_1 {
	background-color: rgba(204, 204, 204, 0.11);
	margin:  10px;
}
#stacks_in_1125_2>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1125_2>.s3_row>.s3_column_left {
	width: 72.00%;
}

#stacks_in_1125_2>.s3_row>.s3_column_right {
	width: 28.000000%;
}




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










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



}



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


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


}






#stacks_in_1125_2 {
	margin: 30px 12px 10px 14px;
}

#stacks_out_1125_2 {
	width: 800px;
}
#stacks_in_1125_3 h1,#stacks_in_1125_3 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_1125_3 h1 a,#stacks_in_1125_3 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_1125_3 h1 a:hover,#stacks_in_1125_3 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_1125_3 small,#stacks_in_1125_3 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_1125_3 {
	padding: 0px 0px 10px 0px;
}
#stacks_in_1125_5 h4,#stacks_in_1125_5 div{color:rgba(204, 204, 204, 1.00)}#stacks_in_1125_5 h4 a,#stacks_in_1125_5 div a{color:rgba(204, 204, 204, 1.00)}#stacks_in_1125_5 h4 a:hover,#stacks_in_1125_5 div a:hover{color:rgba(153, 153, 153, 1.00)}#stacks_in_1125_5 small,#stacks_in_1125_5 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_1125_8 {
	margin: 40px 0px 0px 0px;
}
/*

*/

#stacks_in_1125_11 .ccs-math {
  display: none;
}
#stacks_in_1125_11 .ccs-math.ccs-show {
  display: inline-block;

  color: rgba(119, 119, 119, 1.00);
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  font-family: inherit;
}
#stacks_in_1125_11 .custom-calculations-stack {
  display: none;
}



#stacks_in_1125_11 input:focus {
  outline: none;
}
.ccs-number-wrap {
  position: relative;
}
.ccs-number-wrap .ccs-number {
  position: absolute;
  background: black;
  color: white;
  display: inline-block;
  width: 100px;
  z-index: 100;
  top:0;
  left: 0;
  padding: 2px;
  text-align: center;
  opacity: .1;
  pointer-events: none;
  transition: opacity 300ms linear;
  cursor: help;
}
.ccs-number-wrap:hover .ccs-number{
  opacity: 1;
}
.ccs-number-wrap .ccs-number strong {
  color: gold;
}
#stacks_in_1125_11 .ccs-error div {
  padding: 5px;
  background: #ff4444;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 22px;
  font-family: inherit;
  font-weight: 200;
}
#stacks_in_1125_11 .ccs-error strong {
  color: #fff;
}
#stacks_in_1125_11 .ccs-error .highlight {
  background-color: #ffff44;
  color: #333;
}
#stacks_in_1125_11 {
  font-family: inherit;
}
/* CALCULATOR */
#stacks_in_1125_11 .ccs-calculator {
  box-sizing: border-box;
  display: block;
  max-width: 800px;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.1);
  margin: 0 auto;
  padding: 0px 0px 16px 0px;
  
}
#stacks_in_1125_11 .ccs-calculator .ccs-import {
  padding: 0px 20px 0px 20px;
  
  position: relative;
  margin: 0;
}
#stacks_in_1125_11 .ccs-calculator .ccs-import input,
#stacks_in_1125_11 .ccs-calculator .ccs-import output,
#stacks_in_1125_11 .ccs-calculator .ccs-import .select-wrap {
  margin: 5px 0px 0px 0px;
}
#stacks_in_1125_11 .ccs-calculator .ccs-import.ccs-answer label {
  margin:  16px 0px 5px 0px;
}
#stacks_in_1125_11 .ccs-calculator .ccs-no-label .ccs-import {
  padding: 0px 20px 0px 20px;
}
#stacks_in_1125_11 .ccs-calculator .ccs-import input.ccs-value,
#stacks_in_1125_11 .ccs-calculator .ccs-import select.ccs-value,
#stacks_in_1125_11 .ccs-calculator .ccs-import input.date-range-1,
#stacks_in_1125_11 .ccs-calculator .ccs-import input.date-range-2 {
  box-sizing: border-box;
  padding: 5px 6px;
  color: rgba(119, 119, 119, 1.00);
  font-size: 14px;
  line-height: 30px;
  height:  40px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 0px;

  
}
#stacks_in_1125_11 .ccs-calculator .ccs-import .select-wrap:after {
  
}
#stacks_in_1125_11 .ccs-calculator .ccs-import input.ccs-slider {
  padding: 0;
}
#stacks_in_1125_11 .ccs-calculator .ccs-import .ccs-units,
#stacks_in_1125_11 .ccs-calculator .ccs-import output,
#stacks_in_1125_11 .ccs-calculator .ccs-import .ccs-checkbox-text {
  box-sizing: border-box;
  padding: 5px 0px 5px 0px ;
  font-size: 14px;
  line-height: 30px;
  height:  40px;
  display: inline-block;
  color: rgba(255, 255, 255, 1.00);
}
#stacks_in_1125_11 .ccs-calculator .ccs-import .ccs-units:empty {
  display: none;
}
#stacks_in_1125_11 .ccs-calculator .ccs-answer {
  font-family: inherit;
  
  box-sizing: border-box;
  font-size: 24px;
  line-height: 50px;
  display: inline-block;
  color: rgba(255, 255, 255, 1.00);

  
}
#stacks_in_1125_11 .ccs-calculator .ccs-answer .ccs-prefix {
  color: rgba(153, 153, 153, 1.00);
  
}
#stacks_in_1125_11 .ccs-calculator .ccs-answer .ccs-postfix {
  color: rgba(255, 255, 255, 1.00);
  
}
#stacks_in_1125_11 .ccs-calculator .ccs-import .ccs-checkbox-text {
  max-width: 85%;
  line-height: 18px;
  margin-left: 5px;
  box-sizing: content-box;
  height: auto;
}
#stacks_in_1125_11 .ccs-calculator .ccs-import output {
  vertical-align: top;
}
#stacks_in_1125_11 .ccs-calculator .ccs-import label {
  color: rgba(255, 255, 255, 0.60);
  margin: 16px 0px 0px 0px;
  display: block;
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
}
#stacks_in_1125_11 .ccs-calculator .ccs-import select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#stacks_in_1125_11 .ccs-calculator .ccs-import input.ccs-slider {
  background: none;
  box-shadow: none !important;
  border: 1px solid transparent !important;
}
#stacks_in_1125_11 .ccs-calculator .ccs-import .select-wrap {
  position: relative;
}
#stacks_in_1125_11 .ccs-calculator .ccs-import .select-wrap:after {
  content:'<>';
  font-family: "Consolas", monospace;
  color: rgba(119, 119, 119, 1.00);
  height: 50%;
  padding: 0px 5px;
  position: absolute;
  right: 0;
  top: 6px;
  pointer-events: none;
  -webkit-transform:rotate(90deg);
  -moz-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}
#stacks_in_1125_11 .ccs-calculator .ccs-import {
  float: left;
  display: inline-block;
  box-sizing: border-box;
}
#stacks_in_1125_11 .ccs-row, #stacks_in_1125_11 .column-100 {
  display: inline-block;
  width: 100%;
}
#stacks_in_1125_11 .ccs-row .column-50.ccs-no-label:last-child .ccs-import {
  padding-top: 34px;

}
/* THEMES */

#stacks_in_1125_11 .ccs-calculator .ccs-import input.ccs-checkbox {
  height: auto;

  margin-top: 7px;
}
#stacks_in_1125_11 .ccs-calculator {
  background-color: rgba(0, 64, 128, 1.00);
}
#stacks_in_1125_11 .ccs-output {
  margin-top:  16px;
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top:  0px;
  
  
  
  
}
#stacks_in_1125_11 .ccs-calculator .ccs-import input.ccs-value,
#stacks_in_1125_11 .ccs-calculator .ccs-import select.ccs-value,
#stacks_in_1125_11 .ccs-calculator .ccs-import input.date-range-1,
#stacks_in_1125_11 .ccs-calculator .ccs-import input.date-range-2 {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0,0,0,0.15);
}
#stacks_in_1125_11 .ccs-calculator .ccs-import .select-wrap:after {
  background-color: #f6f6f6;
}




/* Super Forms Fix */

.com_onelittledesigner_stacks_Super_Forms_Input_stack {
  display: block !important;
}


#stacks_in_1125_12 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width:  1px;
	margin:  10px;
	padding:  5px;
}
#stacks_in_1125_13>.s3_row {
	margin: 0 -12px;
}

#stacks_in_1125_13>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1125_13>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1125_13>.s3_row>.s3_column {
	padding: 0 12px;
}










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



}



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


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


}






#stacks_in_1125_13 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width:  1px;
	margin: 4px 4px 5px 4px;
	padding: 20px 15px 0px 20px;
}

#stacks_out_1125_310 {
	width: 400px;
	margin-left:0;
}
.ccs-stacks_in_1125_14 {
}


.ccs-stacks_in_1125_14 .ccs-units {

}
.ccs-stacks_in_1125_14 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1125_14 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1125_14 .ccs-import .ccs-value,
.ccs-stacks_in_1125_14 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1125_14 input,
.ccs-stacks_in_1125_14 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_14 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1125_14 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1125_14 input.date-range-1,
.ccs-stacks_in_1125_14 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_14 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1125_14 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1125_14 .ccs-slider {
  max-width: 220px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1125_14 .select-wrap {
  max-width: 150px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1125_14 .ccs-number {
  max-width: 80px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1125_14 output, .ccs-stacks_in_1125_14 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_14 output {
  margin: 0px;
  width: -120%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1125_16 {
}


.ccs-stacks_in_1125_16 .ccs-units {

}
.ccs-stacks_in_1125_16 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1125_16 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1125_16 .ccs-import .ccs-value,
.ccs-stacks_in_1125_16 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1125_16 input,
.ccs-stacks_in_1125_16 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_16 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1125_16 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1125_16 input.date-range-1,
.ccs-stacks_in_1125_16 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_16 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1125_16 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1125_16 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1125_16 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1125_16 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1125_16 output, .ccs-stacks_in_1125_16 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_16 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


#stacks_in_1125_25>.s3_row {
	margin: 0 -12px;
}

#stacks_in_1125_25>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1125_25>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1125_25>.s3_row>.s3_column {
	padding: 0 12px;
}










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



}



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


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


}






#stacks_in_1125_25 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width:  1px;
	margin: 4px 4px 5px 4px;
	padding: 10px 10px 0px 30px;
}

#stacks_out_1125_25 {
	margin-right:0;
}

#stacks_out_1125_304 {
	width: 120px;
	margin-right:0;
}
.ccs-stacks_in_1125_26 {
}


.ccs-stacks_in_1125_26 .ccs-units {

}
.ccs-stacks_in_1125_26 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1125_26 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1125_26 .ccs-import .ccs-value,
.ccs-stacks_in_1125_26 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1125_26 input,
.ccs-stacks_in_1125_26 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_26 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1125_26 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1125_26 input.date-range-1,
.ccs-stacks_in_1125_26 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_26 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1125_26 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1125_26 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1125_26 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1125_26 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1125_26 output, .ccs-stacks_in_1125_26 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_26 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}



#stacks_in_1125_302 {
	margin: 30px 0px 0px 0px;
}

#stacks_out_1125_302 {
	width: 300px;
	margin-left:0;
}
.ccs-stacks_in_1125_28 {
}


.ccs-stacks_in_1125_28 .ccs-units {

}
.ccs-stacks_in_1125_28 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1125_28 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1125_28 .ccs-import .ccs-value,
.ccs-stacks_in_1125_28 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1125_28 input,
.ccs-stacks_in_1125_28 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_28 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1125_28 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1125_28 input.date-range-1,
.ccs-stacks_in_1125_28 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_28 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1125_28 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1125_28 .ccs-slider {
  max-width: 190px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1125_28 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1125_28 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1125_28 output, .ccs-stacks_in_1125_28 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_28 output {
  margin: 0px;
  width: -90%;
  text-align: left;
  border-left: 3px solid transparent;
}


#stacks_in_1125_18>.s3_row {
	margin: 0 -12px;
}

#stacks_in_1125_18>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1125_18>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_1125_18>.s3_row>.s3_column {
	padding: 0 12px;
}










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



}



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


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


}






#stacks_in_1125_18 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width:  1px;
	margin: 4px 4px 5px 4px;
	padding: 10px 10px 0px 30px;
}

#stacks_out_1125_18 {
	margin-right:0;
}

#stacks_out_1125_306 {
	width: 120px;
	margin-right:0;
}
.ccs-stacks_in_1125_19 {
}


.ccs-stacks_in_1125_19 .ccs-units {

}
.ccs-stacks_in_1125_19 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1125_19 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1125_19 .ccs-import .ccs-value,
.ccs-stacks_in_1125_19 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1125_19 input,
.ccs-stacks_in_1125_19 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_19 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1125_19 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1125_19 input.date-range-1,
.ccs-stacks_in_1125_19 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_19 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1125_19 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1125_19 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1125_19 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1125_19 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1125_19 output, .ccs-stacks_in_1125_19 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_19 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}



#stacks_in_1125_21 {
	margin: 30px 0px 0px 0px;
}
.ccs-stacks_in_1125_22 {
}


.ccs-stacks_in_1125_22 .ccs-units {

}
.ccs-stacks_in_1125_22 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1125_22 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1125_22 .ccs-import .ccs-value,
.ccs-stacks_in_1125_22 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1125_22 input,
.ccs-stacks_in_1125_22 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_22 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1125_22 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1125_22 input.date-range-1,
.ccs-stacks_in_1125_22 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_22 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1125_22 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1125_22 .ccs-slider {
  max-width: 190px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1125_22 .select-wrap {
  max-width: 460px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1125_22 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1125_22 output, .ccs-stacks_in_1125_22 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_22 output {
  margin: 0px;
  width: -90%;
  text-align: left;
  border-left: 3px solid transparent;
}


#stacks_in_1125_30>.s3_row {
	margin: 0 -10px;
}

#stacks_in_1125_30>.s3_row>.s3_column_left {
	width: 55.14%;
}

#stacks_in_1125_30>.s3_row>.s3_column_right {
	width: 44.860001%;
}




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










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



}



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


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


}






#stacks_in_1125_30 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width:  1px;
	margin: 4px 4px 10px 4px;
	padding: 20px 10px 0px 30px;
}

#stacks_out_1125_30 {
	margin-right:0;
}

#stacks_out_1125_308 {
	width: 160px;
	margin-right:0;
}
.ccs-stacks_in_1125_31 {
}


.ccs-stacks_in_1125_31 .ccs-units {

}
.ccs-stacks_in_1125_31 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1125_31 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1125_31 .ccs-import .ccs-value,
.ccs-stacks_in_1125_31 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1125_31 input,
.ccs-stacks_in_1125_31 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_31 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1125_31 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1125_31 input.date-range-1,
.ccs-stacks_in_1125_31 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_31 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1125_31 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1125_31 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1125_31 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1125_31 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1125_31 output, .ccs-stacks_in_1125_31 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_31 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}



#stacks_in_1125_298 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width:  1px;
	margin: 4px 4px 10px 4px;
	padding: 20px 10px 0px 30px;
}

#stacks_out_1125_298 {
	margin-right:0;
}

#stacks_out_1125_312 {
	width: 480px;
	margin-right:0;
}
.ccs-stacks_in_1125_34 {
}


.ccs-stacks_in_1125_34 .ccs-units {

}
.ccs-stacks_in_1125_34 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1125_34 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1125_34 .ccs-import .ccs-value,
.ccs-stacks_in_1125_34 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1125_34 input,
.ccs-stacks_in_1125_34 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_34 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1125_34 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1125_34 input.date-range-1,
.ccs-stacks_in_1125_34 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_34 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1125_34 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1125_34 .ccs-slider {
  max-width: 330px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1125_34 .select-wrap {
  max-width: 150px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1125_34 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1125_34 output, .ccs-stacks_in_1125_34 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_34 output {
  margin: 0px;
  width: -230%;
  text-align: left;
  border-left: 3px solid transparent;
}



#stacks_in_1125_36 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width:  1px;
	margin: 4px 4px 10px 4px;
	padding: 20px 10px 0px 30px;
}

#stacks_out_1125_36 {
	margin-right:0;
}

#stacks_out_1125_314 {
	width: 480px;
	margin-right:0;
}
.ccs-stacks_in_1125_37 {
}


.ccs-stacks_in_1125_37 .ccs-units {

}
.ccs-stacks_in_1125_37 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1125_37 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1125_37 .ccs-import .ccs-value,
.ccs-stacks_in_1125_37 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1125_37 input,
.ccs-stacks_in_1125_37 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_37 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1125_37 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1125_37 input.date-range-1,
.ccs-stacks_in_1125_37 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_37 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1125_37 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1125_37 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1125_37 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1125_37 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1125_37 output, .ccs-stacks_in_1125_37 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_37 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1125_38 {
}


.ccs-stacks_in_1125_38 .ccs-units {

}
.ccs-stacks_in_1125_38 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1125_38 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1125_38 .ccs-import .ccs-value,
.ccs-stacks_in_1125_38 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1125_38 input,
.ccs-stacks_in_1125_38 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_38 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1125_38 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1125_38 input.date-range-1,
.ccs-stacks_in_1125_38 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_38 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1125_38 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1125_38 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1125_38 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1125_38 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1125_38 output, .ccs-stacks_in_1125_38 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_38 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}



#stacks_in_1125_40 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width:  1px;
	margin: 4px 4px 10px 4px;
	padding: 20px 10px 0px 30px;
}

#stacks_out_1125_316 {
	width: 480px;
	margin-right:0;
}
.ccs-stacks_in_1125_41 {
}


.ccs-stacks_in_1125_41 .ccs-units {

}
.ccs-stacks_in_1125_41 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1125_41 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1125_41 .ccs-import .ccs-value,
.ccs-stacks_in_1125_41 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1125_41 input,
.ccs-stacks_in_1125_41 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_41 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1125_41 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1125_41 input.date-range-1,
.ccs-stacks_in_1125_41 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_41 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1125_41 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1125_41 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1125_41 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1125_41 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1125_41 output, .ccs-stacks_in_1125_41 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_41 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}



#stacks_in_1125_335 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width:  1px;
	margin: 4px 4px 10px 4px;
	padding: 20px 10px 0px 30px;
}
#stacks_in_1125_318>.s3_row {
	margin: 0 -0px;
}

#stacks_in_1125_318>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_1125_318>.s3_row>.s3_column_right {
	width: 50.000000%;
}




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










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



}



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



}






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

#stacks_out_1125_318 {
	width: 480px;
	margin-right:0;
}
#stacks_in_1125_270 div,#stacks_in_1125_270 div{color:rgba(230, 230, 230, 1.00)}#stacks_in_1125_270 div a,#stacks_in_1125_270 div a{color:rgba(230, 230, 230, 1.00)}#stacks_in_1125_270 div a:hover,#stacks_in_1125_270 div a:hover{color:rgba(172, 172, 172, 1.00)}#stacks_in_1125_270 small,#stacks_in_1125_270 small div{color:rgba(111, 111, 111, 1.00)}
@media only screen and (max-width:480.00px){#stacks_in_1125_270 div{font-size:0.90rem!important}}@media only screen and (min-width:480.00px) and (max-width:640.00px){#stacks_in_1125_270 div{font-size:1.00rem!important}}@media only screen and (min-width:640.00px) and (max-width:2000.00px){#stacks_in_1125_270 div{font-size:1.00rem!important}}@media only screen and (min-width:2000.00px){#stacks_in_1125_270 div{font-size:1.00rem!important}}

#stacks_out_1125_333 {
	margin-left:0;
}
#stacks_in_1125_326 h4,#stacks_in_1125_326 .hTxt:not(.segment) div{font-size:1.00rem}@media all and (max-width:640px){#stacks_in_1125_326 h4,#stacks_in_1125_326 .hTxt:not(.segment) div{font-size:0.95rem}}@media only screen and (max-width:414px){#stacks_in_1125_326 h4,#stacks_in_1125_326 div{text-align:center !important}#stacks_out_1125_326{display:block !important}}#stacks_in_1125_326 h4,#stacks_in_1125_326 div{color:rgba(128, 255, 8, 1.00)}#stacks_in_1125_326 h4 a,#stacks_in_1125_326 div a{color:rgba(128, 255, 8, 1.00)}#stacks_in_1125_326 h4 a:hover,#stacks_in_1125_326 div a:hover{color:rgba(96, 191, 6, 1.00)}#stacks_in_1125_326 small,#stacks_in_1125_326 small div{color:rgba(111, 111, 111, 1.00)}#stacks_in_1125_326 .hTxt:not(.vault-font),.no-default:not(.custom-font) .hTxt:not(.vault-font){font-family:"",Sans-Serif;font-weight:200;font-style:normal}


#stacks_out_1125_326 {
	margin-left:0;
}
.ccs-stacks_in_1125_43 {
}


.ccs-stacks_in_1125_43 .ccs-units {

}
.ccs-stacks_in_1125_43 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1125_43 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1125_43 .ccs-import .ccs-value,
.ccs-stacks_in_1125_43 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1125_43 input,
.ccs-stacks_in_1125_43 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_43 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1125_43 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1125_43 input.date-range-1,
.ccs-stacks_in_1125_43 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_43 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1125_43 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1125_43 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1125_43 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1125_43 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1125_43 output, .ccs-stacks_in_1125_43 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1125_43 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


/* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code *//*

*/

#stacks_in_790 .ccs-math {
  display: none;
}
#stacks_in_790 .ccs-math.ccs-show {
  display: inline-block;

  color: rgba(119, 119, 119, 1.00);
  font-size: 16px;
  line-height: 26px;
  
  font-family: inherit;
}
#stacks_in_790 .custom-calculations-stack {
  display: none;
}



#stacks_in_790 input:focus {
  outline: none;
}
.ccs-number-wrap {
  position: relative;
}
.ccs-number-wrap .ccs-number {
  position: absolute;
  background: black;
  color: white;
  display: inline-block;
  width: 100px;
  z-index: 100;
  top:0;
  left: 0;
  padding: 2px;
  text-align: center;
  opacity: .1;
  pointer-events: none;
  transition: opacity 300ms linear;
  cursor: help;
}
.ccs-number-wrap:hover .ccs-number{
  opacity: 1;
}
.ccs-number-wrap .ccs-number strong {
  color: gold;
}
#stacks_in_790 .ccs-error div {
  padding: 5px;
  background: #ff4444;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 22px;
  font-family: inherit;
  font-weight: 200;
}
#stacks_in_790 .ccs-error strong {
  color: #fff;
}
#stacks_in_790 .ccs-error .highlight {
  background-color: #ffff44;
  color: #333;
}
#stacks_in_790 {
  font-family: inherit;
}
/* CALCULATOR */
#stacks_in_790 .ccs-calculator {
  box-sizing: border-box;
  display: block;
  max-width: 320px;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.1);
  margin: 0 auto;
  padding: 0px 0px 18px 0px;
  
}
#stacks_in_790 .ccs-calculator .ccs-import {
  padding: 0px 20px 0px 20px;
  
  position: relative;
  margin: 0;
}
#stacks_in_790 .ccs-calculator .ccs-import input,
#stacks_in_790 .ccs-calculator .ccs-import output,
#stacks_in_790 .ccs-calculator .ccs-import .select-wrap {
  margin: 5px 0px 0px 0px;
}
#stacks_in_790 .ccs-calculator .ccs-import.ccs-answer label {
  margin:  18px 0px 5px 0px;
}
#stacks_in_790 .ccs-calculator .ccs-no-label .ccs-import {
  padding: 0px 20px 0px 20px;
}
#stacks_in_790 .ccs-calculator .ccs-import input.ccs-value,
#stacks_in_790 .ccs-calculator .ccs-import select.ccs-value,
#stacks_in_790 .ccs-calculator .ccs-import input.date-range-1,
#stacks_in_790 .ccs-calculator .ccs-import input.date-range-2 {
  box-sizing: border-box;
  padding: 5px 10px;
  color: rgba(119, 119, 119, 1.00);
  font-size: 16px;
  line-height: 26px;
  height:  36px;
  
  font-family: inherit;
  border-radius: 0px;

  
}
#stacks_in_790 .ccs-calculator .ccs-import .select-wrap:after {
  
}
#stacks_in_790 .ccs-calculator .ccs-import input.ccs-slider {
  padding: 0;
}
#stacks_in_790 .ccs-calculator .ccs-import .ccs-units,
#stacks_in_790 .ccs-calculator .ccs-import output,
#stacks_in_790 .ccs-calculator .ccs-import .ccs-checkbox-text {
  box-sizing: border-box;
  padding: 5px 0px 5px 0px ;
  font-size: 16px;
  line-height: 26px;
  height:  36px;
  display: inline-block;
  color: rgba(153, 153, 153, 1.00);
}
#stacks_in_790 .ccs-calculator .ccs-import .ccs-units:empty {
  display: none;
}
#stacks_in_790 .ccs-calculator .ccs-answer {
  font-family: inherit;
  
  box-sizing: border-box;
  font-size: 20px;
  line-height: 20px;
  display: inline-block;
  color: rgba(119, 119, 119, 1.00);

  
}
#stacks_in_790 .ccs-calculator .ccs-answer .ccs-prefix {
  color: rgba(153, 153, 153, 1.00);
  
}
#stacks_in_790 .ccs-calculator .ccs-answer .ccs-postfix {
  color: rgba(153, 153, 153, 1.00);
  
}
#stacks_in_790 .ccs-calculator .ccs-import .ccs-checkbox-text {
  max-width: 85%;
  line-height: 20px;
  margin-left: 5px;
  box-sizing: content-box;
  height: auto;
}
#stacks_in_790 .ccs-calculator .ccs-import output {
  vertical-align: top;
}
#stacks_in_790 .ccs-calculator .ccs-import label {
  color: rgba(153, 153, 153, 1.00);
  margin: 18px 0px 0px 0px;
  display: block;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
}
#stacks_in_790 .ccs-calculator .ccs-import select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#stacks_in_790 .ccs-calculator .ccs-import input.ccs-slider {
  background: none;
  box-shadow: none !important;
  border: 1px solid transparent !important;
}
#stacks_in_790 .ccs-calculator .ccs-import .select-wrap {
  position: relative;
}
#stacks_in_790 .ccs-calculator .ccs-import .select-wrap:after {
  content:'<>';
  font-family: "Consolas", monospace;
  color: rgba(119, 119, 119, 1.00);
  height: 50%;
  padding: 0px 5px;
  position: absolute;
  right: 0;
  top: 10px;
  pointer-events: none;
  -webkit-transform:rotate(90deg);
  -moz-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}
#stacks_in_790 .ccs-calculator .ccs-import {
  float: left;
  display: inline-block;
  box-sizing: border-box;
}
#stacks_in_790 .ccs-row, #stacks_in_790 .column-100 {
  display: inline-block;
  width: 100%;
}
#stacks_in_790 .ccs-row .column-50.ccs-no-label:last-child .ccs-import {
  padding-top: 38px;

}
/* THEMES */

#stacks_in_790 .ccs-calculator .ccs-import input.ccs-checkbox {
  height: auto;

  margin-top: 7px;
}
#stacks_in_790 .ccs-calculator {
  background-color: rgba(230, 230, 230, 1.00);
}
#stacks_in_790 .ccs-output {
  margin-top:  18px;
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top:  0px;
  
  
  
  
}
#stacks_in_790 .ccs-calculator .ccs-import input.ccs-value,
#stacks_in_790 .ccs-calculator .ccs-import select.ccs-value,
#stacks_in_790 .ccs-calculator .ccs-import input.date-range-1,
#stacks_in_790 .ccs-calculator .ccs-import input.date-range-2 {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0,0,0,0.15);
}
#stacks_in_790 .ccs-calculator .ccs-import .select-wrap:after {
  background-color: #f6f6f6;
}




/* Super Forms Fix */

.com_onelittledesigner_stacks_Super_Forms_Input_stack {
  display: block !important;
}

.ccs-stacks_in_795 {
}


.xdsoft_datetimepicker{box-shadow:0 5px 15px -5px rgba(0,0,0,0.506);background:#fff;border-bottom:1px solid #bbb;border-left:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;color:#333;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;padding:8px;padding-left:0;padding-top:2px;position:absolute;z-index:9999;-moz-box-sizing:border-box;box-sizing:border-box;display:none}.xdsoft_datetimepicker.xdsoft_rtl{padding:8px 0 8px 8px}.xdsoft_datetimepicker iframe{position:absolute;left:0;top:0;width:75px;height:210px;background:transparent;border:0}.xdsoft_datetimepicker button{border:none !important}.xdsoft_noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.xdsoft_noselect::selection{background:transparent}.xdsoft_noselect::-moz-selection{background:transparent}.xdsoft_datetimepicker.xdsoft_inline{display:inline-block;position:static;box-shadow:none}.xdsoft_datetimepicker *{-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin:0}.xdsoft_datetimepicker .xdsoft_datepicker,.xdsoft_datetimepicker .xdsoft_timepicker{display:none}.xdsoft_datetimepicker .xdsoft_datepicker.active,.xdsoft_datetimepicker .xdsoft_timepicker.active{display:block}.xdsoft_datetimepicker .xdsoft_datepicker{width:224px;float:left;margin-left:8px}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_datepicker{float:right;margin-right:8px;margin-left:0}.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker{width:256px}.xdsoft_datetimepicker .xdsoft_timepicker{width:58px;float:left;text-align:center;margin-left:8px;margin-top:0}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker{float:right;margin-right:8px;margin-left:0}.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin-top:8px;margin-bottom:3px}.xdsoft_datetimepicker .xdsoft_monthpicker{position:relative;text-align:center}.xdsoft_datetimepicker .xdsoft_label i,.xdsoft_datetimepicker .xdsoft_prev,.xdsoft_datetimepicker .xdsoft_next,.xdsoft_datetimepicker .xdsoft_today_button{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC)}.xdsoft_datetimepicker .xdsoft_label i{opacity:.5;background-position:-92px -19px;display:inline-block;width:9px;height:20px;vertical-align:middle}.xdsoft_datetimepicker .xdsoft_prev{float:left;background-position:-20px 0}.xdsoft_datetimepicker .xdsoft_today_button{float:left;background-position:-70px 0;margin-left:5px}.xdsoft_datetimepicker .xdsoft_next{float:right;background-position:0 0}.xdsoft_datetimepicker .xdsoft_next,.xdsoft_datetimepicker .xdsoft_prev,.xdsoft_datetimepicker .xdsoft_today_button{background-color:transparent;background-repeat:no-repeat;border:0 none;cursor:pointer;display:block;height:30px;opacity:.5;-ms-filter:"alpha(opacity=50)";outline:medium none;overflow:hidden;padding:0;position:relative;text-indent:100%;white-space:nowrap;width:20px;min-width:0}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{float:none;background-position:-40px -15px;height:15px;width:30px;display:block;margin-left:14px;margin-top:7px}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_prev,.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_next{float:none;margin-left:0;margin-right:14px}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev{background-position:-40px 0;margin-bottom:7px;margin-top:0}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{height:151px;overflow:hidden;border-bottom:1px solid #ddd}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div{background:#f5f5f5;border-top:1px solid #ddd;color:#666;font-size:12px;text-align:center;border-collapse:collapse;cursor:pointer;border-bottom-width:0;height:25px;line-height:25px}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:first-child{border-top-width:0}.xdsoft_datetimepicker .xdsoft_today_button:hover,.xdsoft_datetimepicker .xdsoft_next:hover,.xdsoft_datetimepicker .xdsoft_prev:hover{opacity:1;-ms-filter:"alpha(opacity=100)"}.xdsoft_datetimepicker .xdsoft_label{display:inline;position:relative;z-index:9999;margin:0;padding:5px 3px;font-size:14px;line-height:20px;font-weight:bold;background-color:#fff;float:left;width:182px;text-align:center;cursor:pointer}.xdsoft_datetimepicker .xdsoft_label:hover>span{text-decoration:underline}.xdsoft_datetimepicker .xdsoft_label:hover i{opacity:1.0}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select{border:1px solid #ccc;position:absolute;right:0;top:30px;z-index:101;display:none;background:#fff;max-height:160px;overflow-y:hidden}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select.xdsoft_monthselect{right:-7px}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select.xdsoft_yearselect{right:2px}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover{color:#fff;background:#ff8000}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option{padding:2px 10px 2px 5px;text-decoration:none !important}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current{background:#3af;box-shadow:#178fe5 0 1px 3px 0 inset;color:#fff;font-weight:700}.xdsoft_datetimepicker .xdsoft_month{width:100px;text-align:right}.xdsoft_datetimepicker .xdsoft_calendar{clear:both}.xdsoft_datetimepicker .xdsoft_year{width:48px;margin-left:5px}.xdsoft_datetimepicker .xdsoft_calendar table{border-collapse:collapse;width:100%}.xdsoft_datetimepicker .xdsoft_calendar td>div{padding-right:5px}.xdsoft_datetimepicker .xdsoft_calendar th{height:25px}.xdsoft_datetimepicker .xdsoft_calendar td,.xdsoft_datetimepicker .xdsoft_calendar th{width:14.2857142%;background:#f5f5f5;border:1px solid #ddd;color:#666;font-size:12px;text-align:right;vertical-align:middle;padding:0;border-collapse:collapse;cursor:pointer;height:25px}.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th{width:12.5%}.xdsoft_datetimepicker .xdsoft_calendar th{background:#f1f1f1}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today{color:#3af}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default{background:#ffe9d2;box-shadow:#ffb871 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint{background:#c1ffc9;box-shadow:#00dd1c 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current{background:#3af;box-shadow:#178fe5 0 1px 3px 0 inset;color:#fff;font-weight:700}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month,.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,.xdsoft_datetimepicker .xdsoft_time_box>div>div.xdsoft_disabled{opacity:.5;-ms-filter:"alpha(opacity=50)";cursor:default}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled{opacity:.2;-ms-filter:"alpha(opacity=20)"}.xdsoft_datetimepicker .xdsoft_calendar td:hover,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover{color:#fff !important;background:#ff8000 !important;box-shadow:none !important}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current.xdsoft_disabled:hover{background:#3af !important;box-shadow:#178fe5 0 1px 3px 0 inset !important;color:#fff !important}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_disabled:hover{color:inherit !important;background:inherit !important;box-shadow:inherit !important}.xdsoft_datetimepicker .xdsoft_calendar th{font-weight:700;text-align:center;color:#999;cursor:default}.xdsoft_datetimepicker .xdsoft_copyright{color:#ccc !important;font-size:10px;clear:both;float:none;margin-left:8px}.xdsoft_datetimepicker .xdsoft_copyright a{color:#eee !important}.xdsoft_datetimepicker .xdsoft_copyright a:hover{color:#aaa !important}.xdsoft_time_box{position:relative;border:1px solid #ccc}.xdsoft_scrollbar>.xdsoft_scroller{background:#ccc !important;height:20px;border-radius:3px}.xdsoft_scrollbar{position:absolute;width:7px;right:0;top:0;bottom:0;cursor:pointer}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_scrollbar{left:0;right:auto}.xdsoft_scroller_box{position:relative}.xdsoft_datetimepicker.xdsoft_dark{box-shadow:0 5px 15px -5px rgba(255,255,255,0.506);background:#000;border-bottom:1px solid #444;border-left:1px solid #333;border-right:1px solid #333;border-top:1px solid #333;color:#ccc}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box{border-bottom:1px solid #222}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div{background:#0a0a0a;border-top:1px solid #222;color:#999}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label{background-color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select{border:1px solid #333;background:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover{color:#000;background:#007fff}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current{background:#c50;box-shadow:#b03e00 0 1px 3px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==)}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{background:#0a0a0a;border:1px solid #222;color:#999}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{background:#0e0e0e}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today{color:#c50}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default{background:#ffe9d2;box-shadow:#ffb871 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint{background:#c1ffc9;box-shadow:#00dd1c 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current{background:#c50;box-shadow:#b03e00 0 1px 3px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div:hover{color:#000 !important;background:#007fff !important}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{color:#666}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright{color:#333 !important}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a{color:#111 !important}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover{color:#555 !important}.xdsoft_dark .xdsoft_time_box{border:1px solid #333}.xdsoft_dark .xdsoft_scrollbar>.xdsoft_scroller{background:#333 !important}.xdsoft_datetimepicker .xdsoft_save_selected{display:block;border:1px solid #ddd !important;margin-top:5px;width:100%;color:#454551;font-size:13px}.xdsoft_datetimepicker .blue-gradient-button{font-family:"museo-sans","Book Antiqua",sans-serif;font-size:12px;font-weight:300;color:#82878c;height:28px;position:relative;padding:4px 17px 4px 33px;border:1px solid #d7d8da;background:-moz-linear-gradient(top,#fff 0,#f4f8fa 73%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(73%,#f4f8fa));background:-webkit-linear-gradient(top,#fff 0,#f4f8fa 73%);background:-o-linear-gradient(top,#fff 0,#f4f8fa 73%);background:-ms-linear-gradient(top,#fff 0,#f4f8fa 73%);background:linear-gradient(to bottom,#fff 0,#f4f8fa 73%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff',endColorstr='#f4f8fa',GradientType=0)}.xdsoft_datetimepicker .blue-gradient-button:hover,.xdsoft_datetimepicker .blue-gradient-button:focus,.xdsoft_datetimepicker .blue-gradient-button:hover span,.xdsoft_datetimepicker .blue-gradient-button:focus span{color:#454551;background:-moz-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#f4f8fa),color-stop(73%,#FFF));background:-webkit-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:-o-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:-ms-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:linear-gradient(to bottom,#f4f8fa 0,#FFF 73%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f8fa',endColorstr='#FFF',GradientType=0)}

.ccs-stacks_in_795 .ccs-units {

}
.ccs-stacks_in_795 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_795 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_795 .ccs-import .ccs-value,
.ccs-stacks_in_795 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_795 input,
.ccs-stacks_in_795 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_795 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_795 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_795 input.date-range-1,
.ccs-stacks_in_795 input.date-range-2 {
  max-width: 199px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_795 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_795 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_795 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_795 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_795 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_795 output, .ccs-stacks_in_795 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  margin: 0px 0px 10px 0px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_795 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


/* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code */#stacks_in_461{overflow:hidden;height:1000px;}

#stacks_in_462 {
    background-image: url("0B21DF3D-6344-4AB8-884A-4585C662E6E9.jpg");
	background-repeat: repeat;
	background-size: cover;
	background-position: center;
}
#stacks_in_463 h1,#stacks_in_463 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_463 h1 a,#stacks_in_463 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_463 h1 a:hover,#stacks_in_463 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_463 small,#stacks_in_463 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_463 {
	margin: 80px 13px 0px 40px;
}
#stacks_in_466 h3,#stacks_in_466 div{color:rgba(128, 255, 0, 1.00)}#stacks_in_466 h3 a,#stacks_in_466 div a{color:rgba(128, 255, 0, 1.00)}#stacks_in_466 h3 a:hover,#stacks_in_466 div a:hover{color:rgba(96, 191, 0, 1.00)}#stacks_in_466 small,#stacks_in_466 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_466 {
	margin: 0px 13px 0px 40px;
	padding: 0px 0px 10px 0px;
}

#stacks_in_469 {
	margin: 0px 20px 0px 20px;
	padding: 0px 20px 40px 20px;
}

#stacks_in_1144_1 {
	margin: 30px 10px 30px 0px;
	padding: 0px 10px 20px 10px;
}
/*

*/

#stacks_in_1144_2 .ccs-math {
  display: none;
}
#stacks_in_1144_2 .ccs-math.ccs-show {
  display: inline-block;

  color: rgba(128, 128, 128, 1.00);
  font-size: 15px;
  line-height: 20px;
  
  font-family: inherit;
}
#stacks_in_1144_2 .custom-calculations-stack {
  display: none;
}



#stacks_in_1144_2 input:focus {
  outline: none;
}
.ccs-number-wrap {
  position: relative;
}
.ccs-number-wrap .ccs-number {
  position: absolute;
  background: black;
  color: white;
  display: inline-block;
  width: 100px;
  z-index: 100;
  top:0;
  left: 0;
  padding: 2px;
  text-align: center;
  opacity: .1;
  pointer-events: none;
  transition: opacity 300ms linear;
  cursor: help;
}
.ccs-number-wrap:hover .ccs-number{
  opacity: 1;
}
.ccs-number-wrap .ccs-number strong {
  color: gold;
}
#stacks_in_1144_2 .ccs-error div {
  padding: 5px;
  background: #ff4444;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 22px;
  font-family: inherit;
  font-weight: 200;
}
#stacks_in_1144_2 .ccs-error strong {
  color: #fff;
}
#stacks_in_1144_2 .ccs-error .highlight {
  background-color: #ffff44;
  color: #333;
}
#stacks_in_1144_2 {
  font-family: inherit;
}
/* CALCULATOR */
#stacks_in_1144_2 .ccs-calculator {
  box-sizing: border-box;
  display: block;
  max-width: 900px;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.1);
  margin: 0 auto;
  padding: 0px 0px 17px 0px;
  
}
#stacks_in_1144_2 .ccs-calculator .ccs-import {
  padding: 0px 20px 0px 20px;
  
  position: relative;
  margin: 0;
}
#stacks_in_1144_2 .ccs-calculator .ccs-import input,
#stacks_in_1144_2 .ccs-calculator .ccs-import output,
#stacks_in_1144_2 .ccs-calculator .ccs-import .select-wrap {
  margin: 5px 0px 0px 0px;
}
#stacks_in_1144_2 .ccs-calculator .ccs-import.ccs-answer label {
  margin:  17px 0px 5px 0px;
}
#stacks_in_1144_2 .ccs-calculator .ccs-no-label .ccs-import {
  padding: 0px 20px 0px 20px;
}
#stacks_in_1144_2 .ccs-calculator .ccs-import input.ccs-value,
#stacks_in_1144_2 .ccs-calculator .ccs-import select.ccs-value,
#stacks_in_1144_2 .ccs-calculator .ccs-import input.date-range-1,
#stacks_in_1144_2 .ccs-calculator .ccs-import input.date-range-2 {
  box-sizing: border-box;
  padding: 10px 10px;
  color: rgba(128, 128, 128, 1.00);
  font-size: 15px;
  line-height: 20px;
  height:  40px;
  
  font-family: inherit;
  border-radius: 0px;

  
}
#stacks_in_1144_2 .ccs-calculator .ccs-import .select-wrap:after {
  
}
#stacks_in_1144_2 .ccs-calculator .ccs-import input.ccs-slider {
  padding: 0;
}
#stacks_in_1144_2 .ccs-calculator .ccs-import .ccs-units,
#stacks_in_1144_2 .ccs-calculator .ccs-import output,
#stacks_in_1144_2 .ccs-calculator .ccs-import .ccs-checkbox-text {
  box-sizing: border-box;
  padding: 10px 0px 10px 0px ;
  font-size: 15px;
  line-height: 20px;
  height:  40px;
  display: inline-block;
  color: rgba(102, 102, 102, 1.00);
}
#stacks_in_1144_2 .ccs-calculator .ccs-import .ccs-units:empty {
  display: none;
}
#stacks_in_1144_2 .ccs-calculator .ccs-answer {
  font-family: inherit;
  font-weight: 100;
  box-sizing: border-box;
  font-size: 15px;
  line-height: 18px;
  display: inline-block;
  color: rgba(0, 0, 255, 1.00);

  
}
#stacks_in_1144_2 .ccs-calculator .ccs-answer .ccs-prefix {
  color: rgba(0, 0, 255, 1.00);
  
}
#stacks_in_1144_2 .ccs-calculator .ccs-answer .ccs-postfix {
  color: rgba(0, 0, 255, 1.00);
  
}
#stacks_in_1144_2 .ccs-calculator .ccs-import .ccs-checkbox-text {
  max-width: 85%;
  line-height: 19px;
  margin-left: 5px;
  box-sizing: content-box;
  height: auto;
}
#stacks_in_1144_2 .ccs-calculator .ccs-import output {
  vertical-align: top;
}
#stacks_in_1144_2 .ccs-calculator .ccs-import label {
  color: rgba(102, 102, 102, 1.00);
  margin: 17px 0px 0px 0px;
  display: block;
  font-size: 17px;
  line-height: 19px;
  font-weight: bold;
}
#stacks_in_1144_2 .ccs-calculator .ccs-import select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#stacks_in_1144_2 .ccs-calculator .ccs-import input.ccs-slider {
  background: none;
  box-shadow: none !important;
  border: 1px solid transparent !important;
}
#stacks_in_1144_2 .ccs-calculator .ccs-import .select-wrap {
  position: relative;
}
#stacks_in_1144_2 .ccs-calculator .ccs-import .select-wrap:after {
  content:'<>';
  font-family: "Consolas", monospace;
  color: rgba(128, 128, 128, 1.00);
  height: 50%;
  padding: 0px 5px;
  position: absolute;
  right: 0;
  top: 10px;
  pointer-events: none;
  -webkit-transform:rotate(90deg);
  -moz-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}
#stacks_in_1144_2 .ccs-calculator .ccs-import {
  float: left;
  display: inline-block;
  box-sizing: border-box;
}
#stacks_in_1144_2 .ccs-row, #stacks_in_1144_2 .column-100 {
  display: inline-block;
  width: 100%;
}
#stacks_in_1144_2 .ccs-row .column-50.ccs-no-label:last-child .ccs-import {
  padding-top: 36px;

}
/* THEMES */

#stacks_in_1144_2 .ccs-calculator .ccs-import input.ccs-checkbox {
  height: auto;

  margin-top: 7px;
}
#stacks_in_1144_2 .ccs-calculator {
  background-color: rgba(255, 255, 255, 0.50);
}
#stacks_in_1144_2 .ccs-output {
  margin-top:  17px;
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top:  0px;
  
  
  
  
}
#stacks_in_1144_2 .ccs-calculator .ccs-import input.ccs-value,
#stacks_in_1144_2 .ccs-calculator .ccs-import select.ccs-value,
#stacks_in_1144_2 .ccs-calculator .ccs-import input.date-range-1,
#stacks_in_1144_2 .ccs-calculator .ccs-import input.date-range-2 {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0,0,0,0.15);
}
#stacks_in_1144_2 .ccs-calculator .ccs-import .select-wrap:after {
  background-color: #f6f6f6;
}




/* Super Forms Fix */

.com_onelittledesigner_stacks_Super_Forms_Input_stack {
  display: block !important;
}

.ccs-stacks_in_1144_35 {
}


.ccs-stacks_in_1144_35 .ccs-units {

}
.ccs-stacks_in_1144_35 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1144_35 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1144_35 .ccs-import .ccs-value,
.ccs-stacks_in_1144_35 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1144_35 input,
.ccs-stacks_in_1144_35 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_35 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1144_35 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1144_35 input.date-range-1,
.ccs-stacks_in_1144_35 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_35 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1144_35 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1144_35 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1144_35 .select-wrap {
  max-width: 240px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1144_35 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1144_35 output, .ccs-stacks_in_1144_35 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_35 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1144_3 {
}


.ccs-stacks_in_1144_3 .ccs-units {

}
.ccs-stacks_in_1144_3 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1144_3 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1144_3 .ccs-import .ccs-value,
.ccs-stacks_in_1144_3 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1144_3 input,
.ccs-stacks_in_1144_3 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_3 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1144_3 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1144_3 input.date-range-1,
.ccs-stacks_in_1144_3 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_3 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1144_3 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1144_3 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1144_3 .select-wrap {
  max-width: 250px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1144_3 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1144_3 output, .ccs-stacks_in_1144_3 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_3 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1144_103 {
}


.ccs-stacks_in_1144_103 .ccs-units {

}
.ccs-stacks_in_1144_103 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1144_103 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1144_103 .ccs-import .ccs-value,
.ccs-stacks_in_1144_103 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1144_103 input,
.ccs-stacks_in_1144_103 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_103 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1144_103 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1144_103 input.date-range-1,
.ccs-stacks_in_1144_103 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_103 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1144_103 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1144_103 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1144_103 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1144_103 .ccs-number {
  max-width: 100px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1144_103 output, .ccs-stacks_in_1144_103 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_103 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1144_45 {
}


.ccs-stacks_in_1144_45 .ccs-units {

}
.ccs-stacks_in_1144_45 .ccs-import {
  width: 50%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1144_45 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1144_45 .ccs-import .ccs-value,
.ccs-stacks_in_1144_45 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1144_45 input,
.ccs-stacks_in_1144_45 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_45 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1144_45 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1144_45 input.date-range-1,
.ccs-stacks_in_1144_45 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_45 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1144_45 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1144_45 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1144_45 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1144_45 .ccs-number {
  max-width: 70px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1144_45 output, .ccs-stacks_in_1144_45 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_45 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1144_43 {
}


.ccs-stacks_in_1144_43 .ccs-units {

}
.ccs-stacks_in_1144_43 .ccs-import {
  width: 50%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1144_43 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1144_43 .ccs-import .ccs-value,
.ccs-stacks_in_1144_43 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1144_43 input,
.ccs-stacks_in_1144_43 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_43 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1144_43 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1144_43 input.date-range-1,
.ccs-stacks_in_1144_43 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_43 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1144_43 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1144_43 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1144_43 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1144_43 .ccs-number {
  max-width: 100px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1144_43 output, .ccs-stacks_in_1144_43 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_43 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1144_44 {
}


.ccs-stacks_in_1144_44 .ccs-units {

}
.ccs-stacks_in_1144_44 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1144_44 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1144_44 .ccs-import .ccs-value,
.ccs-stacks_in_1144_44 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1144_44 input,
.ccs-stacks_in_1144_44 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_44 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1144_44 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1144_44 input.date-range-1,
.ccs-stacks_in_1144_44 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_44 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1144_44 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1144_44 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1144_44 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1144_44 .ccs-number {
  max-width: 70px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1144_44 output, .ccs-stacks_in_1144_44 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_44 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1144_46 {
}


.ccs-stacks_in_1144_46 .ccs-units {

}
.ccs-stacks_in_1144_46 .ccs-import {
  width: 50%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1144_46 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1144_46 .ccs-import .ccs-value,
.ccs-stacks_in_1144_46 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1144_46 input,
.ccs-stacks_in_1144_46 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_46 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1144_46 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1144_46 input.date-range-1,
.ccs-stacks_in_1144_46 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_46 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1144_46 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1144_46 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1144_46 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1144_46 .ccs-number {
  max-width: 90px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1144_46 output, .ccs-stacks_in_1144_46 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_46 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1144_47 {
}


.ccs-stacks_in_1144_47 .ccs-units {

}
.ccs-stacks_in_1144_47 .ccs-import {
  width: 50%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1144_47 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1144_47 .ccs-import .ccs-value,
.ccs-stacks_in_1144_47 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1144_47 input,
.ccs-stacks_in_1144_47 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_47 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1144_47 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1144_47 input.date-range-1,
.ccs-stacks_in_1144_47 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_47 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1144_47 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1144_47 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1144_47 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1144_47 .ccs-number {
  max-width: 90px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1144_47 output, .ccs-stacks_in_1144_47 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_47 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1144_48 {
}


.ccs-stacks_in_1144_48 .ccs-units {

}
.ccs-stacks_in_1144_48 .ccs-import {
  width: 50%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1144_48 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1144_48 .ccs-import .ccs-value,
.ccs-stacks_in_1144_48 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1144_48 input,
.ccs-stacks_in_1144_48 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_48 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1144_48 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1144_48 input.date-range-1,
.ccs-stacks_in_1144_48 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_48 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1144_48 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1144_48 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1144_48 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1144_48 .ccs-number {
  max-width: 80px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1144_48 output, .ccs-stacks_in_1144_48 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_48 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1144_49 {
}


.ccs-stacks_in_1144_49 .ccs-units {

}
.ccs-stacks_in_1144_49 .ccs-import {
  width: 50%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1144_49 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1144_49 .ccs-import .ccs-value,
.ccs-stacks_in_1144_49 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1144_49 input,
.ccs-stacks_in_1144_49 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_49 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1144_49 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1144_49 input.date-range-1,
.ccs-stacks_in_1144_49 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_49 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1144_49 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1144_49 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1144_49 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1144_49 .ccs-number {
  max-width: 80px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1144_49 output, .ccs-stacks_in_1144_49 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1144_49 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}



.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_1136_1 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_1136_1 {
		display: none !important;
	}
}
.cd-gallery-container li {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

.cd-gallery-container ol, .cd-gallery-container ul {
	list-style: none;
}

/* Main styles */

.cd-container * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-container *, .cd-container *:after, .cd-container *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.cd-container a {
  color: #383838;
  text-decoration: none;
}

.cd-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

.cd-container ul, .cd-container ol, ul.cd-container, .cd-filter ul {
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 0px;
	padding-right: 0px;
}

.cd-gallery-container {
  margin: 0 auto;
  padding-left: 3em;
  padding-right: 3em;
}

.cd-filter {
  position: relative;
  height: 40px;
  width: 150px;
  margin: 0 auto;
  cursor: pointer;
  z-index: 10;
}
.cd-filter::after {
  /* small arrow icon */
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../files/images/icon-small-arrow.svg") no-repeat center center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.cd-filter ul {
  position: absolute;
  top: 0;
  left: 0;
  background: #FFF;
  border-radius: 0.25em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.cd-filter li {
  display: none;
}
.cd-filter li:first-child {
  display: block;
  /* this way the placehodler is alway visible */
}
.cd-filter li:last-child a {
  border-radius: 0 0 .25em .25em;
}
.cd-filter a {
  display: block;
  height: 40px;
  width: 150px;
  line-height: 40px;
  padding-left: 14px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
.cd-filter.stacks_in_225 a {
  color: #2292E1;
}
.cd-filter.stacks_in_225 a.selected {
  background: #1A7179;
  color: #FFFFFF;
}
.no-touch .cd-filter.stacks_in_225 a.selected:hover {
  background: #1F858E;
}
.cd-filter.is-open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
  /* small arrow rotation */
}
.cd-filter.is-open ul li {
  display: block;
}
.cd-filter.is-open .placeholder a {
  opacity: .4;
  /* reduces the opacity of the placeholder on mobile when the menu is open */
}
@media only screen and (min-width: 768px) {
  .cd-filter {
    height: auto;
    width: auto;
  }
  .cd-filter::after {
    display: none;
  }
  .cd-filter ul {
    background: transparent;
    position: static;
    box-shadow: none;
    text-align: center;
  }
  .cd-filter li {
    display: inline-block;
    margin: 0 .4em;
  }
  .cd-filter li:first-child {
    display: inline-block;
  }
  .cd-filter li.placeholder {
    display: none !important;
  }
  .cd-filter li.placeholder a {
    display: none;
  }
  .cd-filter a {
    display: inline-block;
    padding: 1em 2em;
    height: auto;
    width: auto;
    line-height: 1;
    border-radius: 50em !important;
  }
  .no-touch .cd-filter a:hover {
    box-shadow: inset 0 0 0 2px #1F858E;
  }
  .cd-filter a.selected:hover {
    box-shadow: none;
    /* removes the hover effect from the selected item */
  }
  .cd-filter.is-open ul li {
    display: inline-block;
  }
}

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

xgallery 

-------------------------------- */
.cd-gallery {
  margin-top: 2em;
  position: relative;
  z-index: 5;
}
.cd-gallery > li {
  position: relative;
  margin-bottom: 1em;
}
.cd-gallery .cd-item-wrapper {
  /* this is the item that rotates */
  position: relative;
}
.touch .cd-gallery .cd-item-wrapper {
  /* fix a bug on IOS8 - rotating elements dissapear*/
  -webkit-perspective: 800px;
  -moz-perspective: 800px;
  perspective: 800px;
}
.cd-gallery .cd-item-wrapper.is-switched .is-visible {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-animation: cd-rotate 0.5s;
  -moz-animation: cd-rotate 0.5s;
  animation: cd-rotate 0.5s;
}
.cd-gallery .cd-item-wrapper.is-switched .is-hidden {
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-animation: cd-rotate-inverse 0.5s;
  -moz-animation: cd-rotate-inverse 0.5s;
  animation: cd-rotate-inverse 0.5s;
  opacity: 0;
}
.cd-gallery .cd-item-wrapper.is-switched .is-selected {
  opacity: 1;
}
.cd-gallery .cd-item-wrapper > li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-gallery li.is-visible {
  /* the front item, visible by default */
  position: relative;
  z-index: 5;
}
.cd-gallery li.is-hidden {
  /* the hidden items, right behind the front one */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cd-gallery li.is-selected {
  /* the next item that will be visible */
  z-index: 3 !important;
}


@media only screen and (min-width: 480px) {
  .cd-gallery > li {
    width: 100%;
    float: left;
    margin-right: 4%;
    margin-bottom: 1.2em;
  }
  .cd-gallery > li:nth-of-type(2n) {
    margin-right: 0;
  }
}


@media only screen and (min-width: 768px) {
  .cd-gallery > li {
    width: 100%;
    float: left;
  }
  .cd-gallery > li:nth-of-type(2n) {
    margin-right: 4%;
  }
  .cd-gallery > li:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .cd-gallery {
    margin-top: 4em;
  }
}

@media only screen and (max-width: 680px) {
  .cd-gallery-container {
    padding-left: 0em;
    padding-right: 0em;
  }
}

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

xkeyframes 

-------------------------------- */
@-webkit-keyframes cd-rotate {
  0% {
    -webkit-transform: perspective(800px) rotateY(0);
  }
  70% {
    -webkit-transform: perspective(800px) rotateY(200deg);
    /* this creates the bounce effect */
  }
  100% {
    -webkit-transform: perspective(800px) rotateY(180deg);
  }
}
@-moz-keyframes cd-rotate {
  0% {
    -moz-transform: perspective(800px) rotateY(0);
  }
  70% {
    -moz-transform: perspective(800px) rotateY(200deg);
    /* this creates the bounce effect */
  }
  100% {
    -moz-transform: perspective(800px) rotateY(180deg);
  }
}
@keyframes cd-rotate {
  0% {
    -webkit-transform: perspective(800px) rotateY(0);
    -moz-transform: perspective(800px) rotateY(0);
    -ms-transform: perspective(800px) rotateY(0);
    -o-transform: perspective(800px) rotateY(0);
    transform: perspective(800px) rotateY(0);
  }
  70% {
    -webkit-transform: perspective(800px) rotateY(200deg);
    -moz-transform: perspective(800px) rotateY(200deg);
    -ms-transform: perspective(800px) rotateY(200deg);
    -o-transform: perspective(800px) rotateY(200deg);
    transform: perspective(800px) rotateY(200deg);
    /* this creates the bounce effect */
  }
  100% {
    -webkit-transform: perspective(800px) rotateY(180deg);
    -moz-transform: perspective(800px) rotateY(180deg);
    -ms-transform: perspective(800px) rotateY(180deg);
    -o-transform: perspective(800px) rotateY(180deg);
    transform: perspective(800px) rotateY(180deg);
  }
}
@-webkit-keyframes cd-rotate-inverse {
  0% {
    -webkit-transform: perspective(800px) rotateY(-180deg);
  }
  70% {
    -webkit-transform: perspective(800px) rotateY(20deg);
    /* this creates the bounce effect */
  }
  100% {
    -webkit-transform: perspective(800px) rotateY(0);
  }
}
@-moz-keyframes cd-rotate-inverse {
  0% {
    -moz-transform: perspective(800px) rotateY(-180deg);
  }
  70% {
    -moz-transform: perspective(800px) rotateY(20deg);
    /* this creates the bounce effect */
  }
  100% {
    -moz-transform: perspective(800px) rotateY(0);
  }
}
@keyframes cd-rotate-inverse {
  0% {
    -webkit-transform: perspective(800px) rotateY(-180deg);
    -moz-transform: perspective(800px) rotateY(-180deg);
    -ms-transform: perspective(800px) rotateY(-180deg);
    -o-transform: perspective(800px) rotateY(-180deg);
    transform: perspective(800px) rotateY(-180deg);
  }
  70% {
    -webkit-transform: perspective(800px) rotateY(20deg);
    -moz-transform: perspective(800px) rotateY(20deg);
    -ms-transform: perspective(800px) rotateY(20deg);
    -o-transform: perspective(800px) rotateY(20deg);
    transform: perspective(800px) rotateY(20deg);
    /* this creates the bounce effect */
  }
  100% {
    -webkit-transform: perspective(800px) rotateY(0);
    -moz-transform: perspective(800px) rotateY(0);
    -ms-transform: perspective(800px) rotateY(0);
    -o-transform: perspective(800px) rotateY(0);
    transform: perspective(800px) rotateY(0);
  }
}

#stacks_in_225 {
	border: solid rgba(230, 230, 230, 1.00);
	border-width:  1px;
	margin: 0px 0px 50px 0px;
}
#stacks_in_340{overflow:hidden;height:1000px;}

#stacks_in_237 {
    background-image: url("0B21DF3D-6344-4AB8-884A-4585C662E6E9.jpg");
	background-repeat: repeat;
	background-size: contain;
	background-position: center;
	padding: 0px 0px 20px 0px;
}
#stacks_in_241 h1,#stacks_in_241 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_241 h1 a,#stacks_in_241 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_241 h1 a:hover,#stacks_in_241 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_241 small,#stacks_in_241 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_241 {
	margin: 120px 13px 0px 40px;
}
#stacks_in_311 h3,#stacks_in_311 div{color:rgba(128, 255, 0, 1.00)}#stacks_in_311 h3 a,#stacks_in_311 div a{color:rgba(128, 255, 0, 1.00)}#stacks_in_311 h3 a:hover,#stacks_in_311 div a:hover{color:rgba(96, 191, 0, 1.00)}#stacks_in_311 small,#stacks_in_311 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_311 {
	margin: 0px 13px 20px 40px;
	padding: 0px 0px 10px 0px;
}

#stacks_in_1145 {
	margin: 0px 20px 0px 20px;
	padding: 0px 20px 20px 20px;
}
/*

*/

#stacks_in_1146 .ccs-math {
  display: none;
}
#stacks_in_1146 .ccs-math.ccs-show {
  display: inline-block;

  color: rgba(119, 119, 119, 1.00);
  font-size: 13px;
  line-height: 22px;
  
  font-family: inherit;
}
#stacks_in_1146 .custom-calculations-stack {
  display: none;
}



#stacks_in_1146 input:focus {
  outline: none;
}
.ccs-number-wrap {
  position: relative;
}
.ccs-number-wrap .ccs-number {
  position: absolute;
  background: black;
  color: white;
  display: inline-block;
  width: 100px;
  z-index: 100;
  top:0;
  left: 0;
  padding: 2px;
  text-align: center;
  opacity: .1;
  pointer-events: none;
  transition: opacity 300ms linear;
  cursor: help;
}
.ccs-number-wrap:hover .ccs-number{
  opacity: 1;
}
.ccs-number-wrap .ccs-number strong {
  color: gold;
}
#stacks_in_1146 .ccs-error div {
  padding: 5px;
  background: #ff4444;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 22px;
  font-family: inherit;
  font-weight: 200;
}
#stacks_in_1146 .ccs-error strong {
  color: #fff;
}
#stacks_in_1146 .ccs-error .highlight {
  background-color: #ffff44;
  color: #333;
}
#stacks_in_1146 {
  font-family: inherit;
}
/* CALCULATOR */
#stacks_in_1146 .ccs-calculator {
  box-sizing: border-box;
  display: block;
  max-width: 600px;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.1);
  margin: 0 auto;
  padding: 0px 0px 15px 0px;
  
}
#stacks_in_1146 .ccs-calculator .ccs-import {
  padding: 0px 20px 0px 20px;
  
  position: relative;
  margin: 0;
}
#stacks_in_1146 .ccs-calculator .ccs-import input,
#stacks_in_1146 .ccs-calculator .ccs-import output,
#stacks_in_1146 .ccs-calculator .ccs-import .select-wrap {
  margin: 5px 0px 0px 0px;
}
#stacks_in_1146 .ccs-calculator .ccs-import.ccs-answer label {
  margin:  15px 0px 5px 0px;
}
#stacks_in_1146 .ccs-calculator .ccs-no-label .ccs-import {
  padding: 0px 20px 0px 20px;
}
#stacks_in_1146 .ccs-calculator .ccs-import input.ccs-value,
#stacks_in_1146 .ccs-calculator .ccs-import select.ccs-value,
#stacks_in_1146 .ccs-calculator .ccs-import input.date-range-1,
#stacks_in_1146 .ccs-calculator .ccs-import input.date-range-2 {
  box-sizing: border-box;
  padding: 5px 10px;
  color: rgba(119, 119, 119, 1.00);
  font-size: 13px;
  line-height: 22px;
  height:  32px;
  
  font-family: inherit;
  border-radius: 0px;

  
}
#stacks_in_1146 .ccs-calculator .ccs-import .select-wrap:after {
  
}
#stacks_in_1146 .ccs-calculator .ccs-import input.ccs-slider {
  padding: 0;
}
#stacks_in_1146 .ccs-calculator .ccs-import .ccs-units,
#stacks_in_1146 .ccs-calculator .ccs-import output,
#stacks_in_1146 .ccs-calculator .ccs-import .ccs-checkbox-text {
  box-sizing: border-box;
  padding: 5px 0px 5px 0px ;
  font-size: 13px;
  line-height: 22px;
  height:  32px;
  display: inline-block;
  color: rgba(153, 153, 153, 1.00);
}
#stacks_in_1146 .ccs-calculator .ccs-import .ccs-units:empty {
  display: none;
}
#stacks_in_1146 .ccs-calculator .ccs-answer {
  font-family: inherit;
  font-weight: 100;
  box-sizing: border-box;
  font-size: 15px;
  line-height: 12px;
  display: inline-block;
  color: rgba(119, 119, 119, 1.00);

  
}
#stacks_in_1146 .ccs-calculator .ccs-answer .ccs-prefix {
  color: rgba(153, 153, 153, 1.00);
  
}
#stacks_in_1146 .ccs-calculator .ccs-answer .ccs-postfix {
  color: rgba(153, 153, 153, 1.00);
  
}
#stacks_in_1146 .ccs-calculator .ccs-import .ccs-checkbox-text {
  max-width: 85%;
  line-height: 17px;
  margin-left: 5px;
  box-sizing: content-box;
  height: auto;
}
#stacks_in_1146 .ccs-calculator .ccs-import output {
  vertical-align: top;
}
#stacks_in_1146 .ccs-calculator .ccs-import label {
  color: rgba(153, 153, 153, 1.00);
  margin: 15px 0px 0px 0px;
  display: block;
  font-size: 15px;
  line-height: 17px;
  font-weight: bold;
}
#stacks_in_1146 .ccs-calculator .ccs-import select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#stacks_in_1146 .ccs-calculator .ccs-import input.ccs-slider {
  background: none;
  box-shadow: none !important;
  border: 1px solid transparent !important;
}
#stacks_in_1146 .ccs-calculator .ccs-import .select-wrap {
  position: relative;
}
#stacks_in_1146 .ccs-calculator .ccs-import .select-wrap:after {
  content:'<>';
  font-family: "Consolas", monospace;
  color: rgba(119, 119, 119, 1.00);
  height: 50%;
  padding: 0px 5px;
  position: absolute;
  right: 0;
  top: 10px;
  pointer-events: none;
  -webkit-transform:rotate(90deg);
  -moz-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}
#stacks_in_1146 .ccs-calculator .ccs-import {
  float: left;
  display: inline-block;
  box-sizing: border-box;
}
#stacks_in_1146 .ccs-row, #stacks_in_1146 .column-100 {
  display: inline-block;
  width: 100%;
}
#stacks_in_1146 .ccs-row .column-50.ccs-no-label:last-child .ccs-import {
  padding-top: 32px;

}
/* THEMES */

#stacks_in_1146 .ccs-calculator .ccs-import input.ccs-checkbox {
  height: auto;

  margin-top: 7px;
}
#stacks_in_1146 .ccs-calculator {
  background-color: rgba(255, 255, 255, 1.00);
}
#stacks_in_1146 .ccs-output {
  margin-top:  15px;
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top:  0px;
  
  
  
  
}
#stacks_in_1146 .ccs-calculator .ccs-import input.ccs-value,
#stacks_in_1146 .ccs-calculator .ccs-import select.ccs-value,
#stacks_in_1146 .ccs-calculator .ccs-import input.date-range-1,
#stacks_in_1146 .ccs-calculator .ccs-import input.date-range-2 {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0,0,0,0.15);
}
#stacks_in_1146 .ccs-calculator .ccs-import .select-wrap:after {
  background-color: #f6f6f6;
}




/* Super Forms Fix */

.com_onelittledesigner_stacks_Super_Forms_Input_stack {
  display: block !important;
}

.ccs-stacks_in_1147 {
}


.ccs-stacks_in_1147 .ccs-units {

}
.ccs-stacks_in_1147 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1147 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1147 .ccs-import .ccs-value,
.ccs-stacks_in_1147 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1147 input,
.ccs-stacks_in_1147 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1147 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1147 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1147 input.date-range-1,
.ccs-stacks_in_1147 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1147 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1147 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1147 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1147 .select-wrap {
  max-width: 400px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1147 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1147 output, .ccs-stacks_in_1147 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1147 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1179 {
}


.ccs-stacks_in_1179 .ccs-units {

}
.ccs-stacks_in_1179 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1179 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1179 .ccs-import .ccs-value,
.ccs-stacks_in_1179 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1179 input,
.ccs-stacks_in_1179 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1179 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1179 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1179 input.date-range-1,
.ccs-stacks_in_1179 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1179 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1179 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1179 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1179 .select-wrap {
  max-width: 150px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1179 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1179 output, .ccs-stacks_in_1179 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1179 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1187 {
}


.ccs-stacks_in_1187 .ccs-units {

}
.ccs-stacks_in_1187 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1187 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1187 .ccs-import .ccs-value,
.ccs-stacks_in_1187 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1187 input,
.ccs-stacks_in_1187 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1187 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1187 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1187 input.date-range-1,
.ccs-stacks_in_1187 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1187 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1187 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1187 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1187 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1187 .ccs-number {
  max-width: 100px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_1187 output, .ccs-stacks_in_1187 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1187 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1188 {
}


.ccs-stacks_in_1188 .ccs-units {

}
.ccs-stacks_in_1188 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1188 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1188 .ccs-import .ccs-value,
.ccs-stacks_in_1188 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1188 input,
.ccs-stacks_in_1188 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1188 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1188 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1188 input.date-range-1,
.ccs-stacks_in_1188 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1188 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1188 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1188 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1188 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1188 .ccs-number {
  max-width: 50px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1188 output, .ccs-stacks_in_1188 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1188 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1189 {
}


.ccs-stacks_in_1189 .ccs-units {

}
.ccs-stacks_in_1189 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1189 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1189 .ccs-import .ccs-value,
.ccs-stacks_in_1189 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1189 input,
.ccs-stacks_in_1189 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1189 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1189 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1189 input.date-range-1,
.ccs-stacks_in_1189 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1189 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1189 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1189 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1189 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1189 .ccs-number {
  max-width: 60px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1189 output, .ccs-stacks_in_1189 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1189 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1190 {
}


.ccs-stacks_in_1190 .ccs-units {

}
.ccs-stacks_in_1190 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1190 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1190 .ccs-import .ccs-value,
.ccs-stacks_in_1190 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1190 input,
.ccs-stacks_in_1190 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1190 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1190 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1190 input.date-range-1,
.ccs-stacks_in_1190 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1190 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1190 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1190 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1190 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1190 .ccs-number {
  max-width: 80px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1190 output, .ccs-stacks_in_1190 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1190 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1191 {
}


.ccs-stacks_in_1191 .ccs-units {

}
.ccs-stacks_in_1191 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1191 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1191 .ccs-import .ccs-value,
.ccs-stacks_in_1191 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1191 input,
.ccs-stacks_in_1191 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1191 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1191 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1191 input.date-range-1,
.ccs-stacks_in_1191 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1191 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1191 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1191 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1191 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1191 .ccs-number {
  max-width: 80px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1191 output, .ccs-stacks_in_1191 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1191 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1192 {
}


.ccs-stacks_in_1192 .ccs-units {

}
.ccs-stacks_in_1192 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1192 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1192 .ccs-import .ccs-value,
.ccs-stacks_in_1192 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1192 input,
.ccs-stacks_in_1192 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1192 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1192 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1192 input.date-range-1,
.ccs-stacks_in_1192 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1192 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1192 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1192 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1192 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1192 .ccs-number {
  max-width: 50px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1192 output, .ccs-stacks_in_1192 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1192 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_1193 {
}


.ccs-stacks_in_1193 .ccs-units {

}
.ccs-stacks_in_1193 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_1193 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_1193 .ccs-import .ccs-value,
.ccs-stacks_in_1193 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_1193 input,
.ccs-stacks_in_1193 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1193 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_1193 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_1193 input.date-range-1,
.ccs-stacks_in_1193 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_1193 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_1193 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_1193 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_1193 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_1193 .ccs-number {
  max-width: 50px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_1193 output, .ccs-stacks_in_1193 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_1193 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


#stacks_in_204>.s3_row {
	margin: 0 -10px;
}

#stacks_in_204>.s3_row>.s3_column_left {
	width: 70.00%;
}

#stacks_in_204>.s3_row>.s3_column_right {
	width: 30.000000%;
}




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










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



}



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



}






#stacks_in_204 {
	margin: 50px 0px 0px 0px;
}
#stacks_in_335>.s3_row {
	margin: 0 -0px;
}

#stacks_in_335>.s3_row>.s3_column_left {
	width: 72.00%;
}

#stacks_in_335>.s3_row>.s3_column_right {
	width: 28.000000%;
}




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










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



}



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


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


}






#stacks_in_335 {
	margin: 0px 12px 10px 12px;
}





#stacks_in_198 {
	margin: 40px 0px 0px 0px;
}
/*

*/

#stacks_in_59 .ccs-math {
  display: none;
}
#stacks_in_59 .ccs-math.ccs-show {
  display: inline-block;

  color: rgba(119, 119, 119, 1.00);
  font-size: 14px;
  line-height: 20px;
  
  font-family: inherit;
}
#stacks_in_59 .custom-calculations-stack {
  display: none;
}



#stacks_in_59 input:focus {
  outline: none;
}
.ccs-number-wrap {
  position: relative;
}
.ccs-number-wrap .ccs-number {
  position: absolute;
  background: black;
  color: white;
  display: inline-block;
  width: 100px;
  z-index: 100;
  top:0;
  left: 0;
  padding: 2px;
  text-align: center;
  opacity: .1;
  pointer-events: none;
  transition: opacity 300ms linear;
  cursor: help;
}
.ccs-number-wrap:hover .ccs-number{
  opacity: 1;
}
.ccs-number-wrap .ccs-number strong {
  color: gold;
}
#stacks_in_59 .ccs-error div {
  padding: 5px;
  background: #ff4444;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 22px;
  font-family: inherit;
  font-weight: 200;
}
#stacks_in_59 .ccs-error strong {
  color: #fff;
}
#stacks_in_59 .ccs-error .highlight {
  background-color: #ffff44;
  color: #333;
}
#stacks_in_59 {
  font-family: inherit;
}
/* CALCULATOR */
#stacks_in_59 .ccs-calculator {
  box-sizing: border-box;
  display: block;
  max-width: 600px;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.1);
  margin: 0 auto;
  padding: 0px 0px 16px 0px;
  
}
#stacks_in_59 .ccs-calculator .ccs-import {
  padding: 0px 20px 0px 20px;
  
  position: relative;
  margin: 0;
}
#stacks_in_59 .ccs-calculator .ccs-import input,
#stacks_in_59 .ccs-calculator .ccs-import output,
#stacks_in_59 .ccs-calculator .ccs-import .select-wrap {
  margin: 5px 0px 0px 0px;
}
#stacks_in_59 .ccs-calculator .ccs-import.ccs-answer label {
  margin:  16px 0px 5px 0px;
}
#stacks_in_59 .ccs-calculator .ccs-no-label .ccs-import {
  padding: 0px 20px 0px 20px;
}
#stacks_in_59 .ccs-calculator .ccs-import input.ccs-value,
#stacks_in_59 .ccs-calculator .ccs-import select.ccs-value,
#stacks_in_59 .ccs-calculator .ccs-import input.date-range-1,
#stacks_in_59 .ccs-calculator .ccs-import input.date-range-2 {
  box-sizing: border-box;
  padding: 5px 10px;
  color: rgba(119, 119, 119, 1.00);
  font-size: 14px;
  line-height: 20px;
  height:  30px;
  
  font-family: inherit;
  border-radius: 0px;

  
}
#stacks_in_59 .ccs-calculator .ccs-import .select-wrap:after {
  
}
#stacks_in_59 .ccs-calculator .ccs-import input.ccs-slider {
  padding: 0;
}
#stacks_in_59 .ccs-calculator .ccs-import .ccs-units,
#stacks_in_59 .ccs-calculator .ccs-import output,
#stacks_in_59 .ccs-calculator .ccs-import .ccs-checkbox-text {
  box-sizing: border-box;
  padding: 5px 0px 5px 0px ;
  font-size: 14px;
  line-height: 20px;
  height:  30px;
  display: inline-block;
  color: rgba(153, 153, 153, 1.00);
}
#stacks_in_59 .ccs-calculator .ccs-import .ccs-units:empty {
  display: none;
}
#stacks_in_59 .ccs-calculator .ccs-answer {
  font-family: inherit;
  
  box-sizing: border-box;
  font-size: 20px;
  line-height: 20px;
  display: inline-block;
  color: rgba(119, 119, 119, 1.00);

  
}
#stacks_in_59 .ccs-calculator .ccs-answer .ccs-prefix {
  color: rgba(153, 153, 153, 1.00);
  
}
#stacks_in_59 .ccs-calculator .ccs-answer .ccs-postfix {
  color: rgba(153, 153, 153, 1.00);
  
}
#stacks_in_59 .ccs-calculator .ccs-import .ccs-checkbox-text {
  max-width: 85%;
  line-height: 18px;
  margin-left: 5px;
  box-sizing: content-box;
  height: auto;
}
#stacks_in_59 .ccs-calculator .ccs-import output {
  vertical-align: top;
}
#stacks_in_59 .ccs-calculator .ccs-import label {
  color: rgba(153, 153, 153, 1.00);
  margin: 16px 0px 0px 0px;
  display: block;
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
}
#stacks_in_59 .ccs-calculator .ccs-import select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#stacks_in_59 .ccs-calculator .ccs-import input.ccs-slider {
  background: none;
  box-shadow: none !important;
  border: 1px solid transparent !important;
}
#stacks_in_59 .ccs-calculator .ccs-import .select-wrap {
  position: relative;
}
#stacks_in_59 .ccs-calculator .ccs-import .select-wrap:after {
  content:'<>';
  font-family: "Consolas", monospace;
  color: rgba(119, 119, 119, 1.00);
  height: 50%;
  padding: 0px 5px;
  position: absolute;
  right: 0;
  top: 10px;
  pointer-events: none;
  -webkit-transform:rotate(90deg);
  -moz-transform:rotate(90deg);
  -ms-transform:rotate(90deg);
  transform:rotate(90deg);
}
#stacks_in_59 .ccs-calculator .ccs-import {
  float: left;
  display: inline-block;
  box-sizing: border-box;
}
#stacks_in_59 .ccs-row, #stacks_in_59 .column-100 {
  display: inline-block;
  width: 100%;
}
#stacks_in_59 .ccs-row .column-50.ccs-no-label:last-child .ccs-import {
  padding-top: 34px;

}
/* THEMES */

#stacks_in_59 .ccs-calculator .ccs-import input.ccs-checkbox {
  height: auto;

  margin-top: 7px;
}
#stacks_in_59 .ccs-calculator {
  background-color: rgba(68, 134, 234, 0.40);
}
#stacks_in_59 .ccs-output {
  margin-top:  16px;
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top:  0px;
  
  
  padding-top:  16px;
  
  
  
}
#stacks_in_59 .ccs-calculator .ccs-import input.ccs-value,
#stacks_in_59 .ccs-calculator .ccs-import select.ccs-value,
#stacks_in_59 .ccs-calculator .ccs-import input.date-range-1,
#stacks_in_59 .ccs-calculator .ccs-import input.date-range-2 {
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0,0,0,0.15);
}
#stacks_in_59 .ccs-calculator .ccs-import .select-wrap:after {
  background-color: #f6f6f6;
}




/* Super Forms Fix */

.com_onelittledesigner_stacks_Super_Forms_Input_stack {
  display: block !important;
}

.ccs-stacks_in_68 {
}


.ccs-stacks_in_68 .ccs-units {

}
.ccs-stacks_in_68 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_68 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_68 .ccs-import .ccs-value,
.ccs-stacks_in_68 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_68 input,
.ccs-stacks_in_68 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_68 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_68 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_68 input.date-range-1,
.ccs-stacks_in_68 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_68 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_68 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_68 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_68 .select-wrap {
  max-width: 150px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_68 .ccs-number {
  max-width: 80px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
}
.ccs-stacks_in_68 output, .ccs-stacks_in_68 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_68 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_180 {
}


.ccs-stacks_in_180 .ccs-units {

}
.ccs-stacks_in_180 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_180 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_180 .ccs-import .ccs-value,
.ccs-stacks_in_180 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_180 input,
.ccs-stacks_in_180 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_180 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_180 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_180 input.date-range-1,
.ccs-stacks_in_180 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_180 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_180 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_180 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_180 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_180 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_180 output, .ccs-stacks_in_180 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_180 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_103 {
}


.ccs-stacks_in_103 .ccs-units {

}
.ccs-stacks_in_103 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_103 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_103 .ccs-import .ccs-value,
.ccs-stacks_in_103 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_103 input,
.ccs-stacks_in_103 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_103 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_103 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_103 input.date-range-1,
.ccs-stacks_in_103 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_103 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_103 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_103 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_103 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_103 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_103 output, .ccs-stacks_in_103 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_103 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_187 {
}


.ccs-stacks_in_187 .ccs-units {

}
.ccs-stacks_in_187 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_187 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_187 .ccs-import .ccs-value,
.ccs-stacks_in_187 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_187 input,
.ccs-stacks_in_187 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_187 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_187 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_187 input.date-range-1,
.ccs-stacks_in_187 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_187 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_187 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_187 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_187 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_187 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_187 output, .ccs-stacks_in_187 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_187 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_69 {
}


.ccs-stacks_in_69 .ccs-units {

}
.ccs-stacks_in_69 .ccs-import {
  width: 50%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_69 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_69 .ccs-import .ccs-value,
.ccs-stacks_in_69 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_69 input,
.ccs-stacks_in_69 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_69 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_69 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_69 input.date-range-1,
.ccs-stacks_in_69 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_69 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_69 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_69 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_69 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_69 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_69 output, .ccs-stacks_in_69 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_69 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_96 {
}


.ccs-stacks_in_96 .ccs-units {

}
.ccs-stacks_in_96 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_96 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_96 .ccs-import .ccs-value,
.ccs-stacks_in_96 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_96 input,
.ccs-stacks_in_96 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_96 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_96 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_96 input.date-range-1,
.ccs-stacks_in_96 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_96 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_96 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_96 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_96 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_96 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_96 output, .ccs-stacks_in_96 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_96 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_173 {
}


.ccs-stacks_in_173 .ccs-units {

}
.ccs-stacks_in_173 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_173 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_173 .ccs-import .ccs-value,
.ccs-stacks_in_173 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_173 input,
.ccs-stacks_in_173 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_173 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_173 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_173 input.date-range-1,
.ccs-stacks_in_173 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_173 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_173 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_173 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_173 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_173 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_173 output, .ccs-stacks_in_173 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_173 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_60 {
}


.ccs-stacks_in_60 .ccs-units {

}
.ccs-stacks_in_60 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_60 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_60 .ccs-import .ccs-value,
.ccs-stacks_in_60 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_60 input,
.ccs-stacks_in_60 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_60 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_60 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_60 input.date-range-1,
.ccs-stacks_in_60 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_60 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_60 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_60 .ccs-slider {
  max-width: 400px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_60 .select-wrap {
  max-width: 150px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_60 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_60 output, .ccs-stacks_in_60 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_60 output {
  margin: 0px;
  width: -300%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_81 {
}


.ccs-stacks_in_81 .ccs-units {

}
.ccs-stacks_in_81 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_81 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_81 .ccs-import .ccs-value,
.ccs-stacks_in_81 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_81 input,
.ccs-stacks_in_81 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_81 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_81 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_81 input.date-range-1,
.ccs-stacks_in_81 input.date-range-2 {
  max-width: 134px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_81 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_81 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_81 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_81 .select-wrap {
  max-width: 150px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_81 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_81 output, .ccs-stacks_in_81 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  

  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_81 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}


.ccs-stacks_in_82 {
}


.xdsoft_datetimepicker{box-shadow:0 5px 15px -5px rgba(0,0,0,0.506);background:#fff;border-bottom:1px solid #bbb;border-left:1px solid #ccc;border-right:1px solid #ccc;border-top:1px solid #ccc;color:#333;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;padding:8px;padding-left:0;padding-top:2px;position:absolute;z-index:9999;-moz-box-sizing:border-box;box-sizing:border-box;display:none}.xdsoft_datetimepicker.xdsoft_rtl{padding:8px 0 8px 8px}.xdsoft_datetimepicker iframe{position:absolute;left:0;top:0;width:75px;height:210px;background:transparent;border:0}.xdsoft_datetimepicker button{border:none !important}.xdsoft_noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.xdsoft_noselect::selection{background:transparent}.xdsoft_noselect::-moz-selection{background:transparent}.xdsoft_datetimepicker.xdsoft_inline{display:inline-block;position:static;box-shadow:none}.xdsoft_datetimepicker *{-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin:0}.xdsoft_datetimepicker .xdsoft_datepicker,.xdsoft_datetimepicker .xdsoft_timepicker{display:none}.xdsoft_datetimepicker .xdsoft_datepicker.active,.xdsoft_datetimepicker .xdsoft_timepicker.active{display:block}.xdsoft_datetimepicker .xdsoft_datepicker{width:224px;float:left;margin-left:8px}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_datepicker{float:right;margin-right:8px;margin-left:0}.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker{width:256px}.xdsoft_datetimepicker .xdsoft_timepicker{width:58px;float:left;text-align:center;margin-left:8px;margin-top:0}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker{float:right;margin-right:8px;margin-left:0}.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin-top:8px;margin-bottom:3px}.xdsoft_datetimepicker .xdsoft_monthpicker{position:relative;text-align:center}.xdsoft_datetimepicker .xdsoft_label i,.xdsoft_datetimepicker .xdsoft_prev,.xdsoft_datetimepicker .xdsoft_next,.xdsoft_datetimepicker .xdsoft_today_button{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC)}.xdsoft_datetimepicker .xdsoft_label i{opacity:.5;background-position:-92px -19px;display:inline-block;width:9px;height:20px;vertical-align:middle}.xdsoft_datetimepicker .xdsoft_prev{float:left;background-position:-20px 0}.xdsoft_datetimepicker .xdsoft_today_button{float:left;background-position:-70px 0;margin-left:5px}.xdsoft_datetimepicker .xdsoft_next{float:right;background-position:0 0}.xdsoft_datetimepicker .xdsoft_next,.xdsoft_datetimepicker .xdsoft_prev,.xdsoft_datetimepicker .xdsoft_today_button{background-color:transparent;background-repeat:no-repeat;border:0 none;cursor:pointer;display:block;height:30px;opacity:.5;-ms-filter:"alpha(opacity=50)";outline:medium none;overflow:hidden;padding:0;position:relative;text-indent:100%;white-space:nowrap;width:20px;min-width:0}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{float:none;background-position:-40px -15px;height:15px;width:30px;display:block;margin-left:14px;margin-top:7px}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_prev,.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_next{float:none;margin-left:0;margin-right:14px}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev{background-position:-40px 0;margin-bottom:7px;margin-top:0}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{height:151px;overflow:hidden;border-bottom:1px solid #ddd}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div{background:#f5f5f5;border-top:1px solid #ddd;color:#666;font-size:12px;text-align:center;border-collapse:collapse;cursor:pointer;border-bottom-width:0;height:25px;line-height:25px}.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:first-child{border-top-width:0}.xdsoft_datetimepicker .xdsoft_today_button:hover,.xdsoft_datetimepicker .xdsoft_next:hover,.xdsoft_datetimepicker .xdsoft_prev:hover{opacity:1;-ms-filter:"alpha(opacity=100)"}.xdsoft_datetimepicker .xdsoft_label{display:inline;position:relative;z-index:9999;margin:0;padding:5px 3px;font-size:14px;line-height:20px;font-weight:bold;background-color:#fff;float:left;width:182px;text-align:center;cursor:pointer}.xdsoft_datetimepicker .xdsoft_label:hover>span{text-decoration:underline}.xdsoft_datetimepicker .xdsoft_label:hover i{opacity:1.0}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select{border:1px solid #ccc;position:absolute;right:0;top:30px;z-index:101;display:none;background:#fff;max-height:160px;overflow-y:hidden}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select.xdsoft_monthselect{right:-7px}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select.xdsoft_yearselect{right:2px}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover{color:#fff;background:#ff8000}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option{padding:2px 10px 2px 5px;text-decoration:none !important}.xdsoft_datetimepicker .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current{background:#3af;box-shadow:#178fe5 0 1px 3px 0 inset;color:#fff;font-weight:700}.xdsoft_datetimepicker .xdsoft_month{width:100px;text-align:right}.xdsoft_datetimepicker .xdsoft_calendar{clear:both}.xdsoft_datetimepicker .xdsoft_year{width:48px;margin-left:5px}.xdsoft_datetimepicker .xdsoft_calendar table{border-collapse:collapse;width:100%}.xdsoft_datetimepicker .xdsoft_calendar td>div{padding-right:5px}.xdsoft_datetimepicker .xdsoft_calendar th{height:25px}.xdsoft_datetimepicker .xdsoft_calendar td,.xdsoft_datetimepicker .xdsoft_calendar th{width:14.2857142%;background:#f5f5f5;border:1px solid #ddd;color:#666;font-size:12px;text-align:right;vertical-align:middle;padding:0;border-collapse:collapse;cursor:pointer;height:25px}.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th{width:12.5%}.xdsoft_datetimepicker .xdsoft_calendar th{background:#f1f1f1}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today{color:#3af}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default{background:#ffe9d2;box-shadow:#ffb871 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint{background:#c1ffc9;box-shadow:#00dd1c 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current{background:#3af;box-shadow:#178fe5 0 1px 3px 0 inset;color:#fff;font-weight:700}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month,.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,.xdsoft_datetimepicker .xdsoft_time_box>div>div.xdsoft_disabled{opacity:.5;-ms-filter:"alpha(opacity=50)";cursor:default}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled{opacity:.2;-ms-filter:"alpha(opacity=20)"}.xdsoft_datetimepicker .xdsoft_calendar td:hover,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div:hover{color:#fff !important;background:#ff8000 !important;box-shadow:none !important}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current.xdsoft_disabled:hover{background:#3af !important;box-shadow:#178fe5 0 1px 3px 0 inset !important;color:#fff !important}.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover,.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_disabled:hover{color:inherit !important;background:inherit !important;box-shadow:inherit !important}.xdsoft_datetimepicker .xdsoft_calendar th{font-weight:700;text-align:center;color:#999;cursor:default}.xdsoft_datetimepicker .xdsoft_copyright{color:#ccc !important;font-size:10px;clear:both;float:none;margin-left:8px}.xdsoft_datetimepicker .xdsoft_copyright a{color:#eee !important}.xdsoft_datetimepicker .xdsoft_copyright a:hover{color:#aaa !important}.xdsoft_time_box{position:relative;border:1px solid #ccc}.xdsoft_scrollbar>.xdsoft_scroller{background:#ccc !important;height:20px;border-radius:3px}.xdsoft_scrollbar{position:absolute;width:7px;right:0;top:0;bottom:0;cursor:pointer}.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_scrollbar{left:0;right:auto}.xdsoft_scroller_box{position:relative}.xdsoft_datetimepicker.xdsoft_dark{box-shadow:0 5px 15px -5px rgba(255,255,255,0.506);background:#000;border-bottom:1px solid #444;border-left:1px solid #333;border-right:1px solid #333;border-top:1px solid #333;color:#ccc}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box{border-bottom:1px solid #222}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div{background:#0a0a0a;border-top:1px solid #222;color:#999}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label{background-color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select{border:1px solid #333;background:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select>div>.xdsoft_option:hover{color:#000;background:#007fff}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label>.xdsoft_select>div>.xdsoft_option.xdsoft_current{background:#c50;box-shadow:#b03e00 0 1px 3px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==)}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{background:#0a0a0a;border:1px solid #222;color:#999}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{background:#0e0e0e}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today{color:#c50}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default{background:#ffe9d2;box-shadow:#ffb871 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint{background:#c1ffc9;box-shadow:#00dd1c 0 1px 4px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div.xdsoft_current{background:#c50;box-shadow:#b03e00 0 1px 3px 0 inset;color:#000}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover,.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box>div>div:hover{color:#000 !important;background:#007fff !important}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th{color:#666}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright{color:#333 !important}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a{color:#111 !important}.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover{color:#555 !important}.xdsoft_dark .xdsoft_time_box{border:1px solid #333}.xdsoft_dark .xdsoft_scrollbar>.xdsoft_scroller{background:#333 !important}.xdsoft_datetimepicker .xdsoft_save_selected{display:block;border:1px solid #ddd !important;margin-top:5px;width:100%;color:#454551;font-size:13px}.xdsoft_datetimepicker .blue-gradient-button{font-family:"museo-sans","Book Antiqua",sans-serif;font-size:12px;font-weight:300;color:#82878c;height:28px;position:relative;padding:4px 17px 4px 33px;border:1px solid #d7d8da;background:-moz-linear-gradient(top,#fff 0,#f4f8fa 73%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(73%,#f4f8fa));background:-webkit-linear-gradient(top,#fff 0,#f4f8fa 73%);background:-o-linear-gradient(top,#fff 0,#f4f8fa 73%);background:-ms-linear-gradient(top,#fff 0,#f4f8fa 73%);background:linear-gradient(to bottom,#fff 0,#f4f8fa 73%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff',endColorstr='#f4f8fa',GradientType=0)}.xdsoft_datetimepicker .blue-gradient-button:hover,.xdsoft_datetimepicker .blue-gradient-button:focus,.xdsoft_datetimepicker .blue-gradient-button:hover span,.xdsoft_datetimepicker .blue-gradient-button:focus span{color:#454551;background:-moz-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#f4f8fa),color-stop(73%,#FFF));background:-webkit-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:-o-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:-ms-linear-gradient(top,#f4f8fa 0,#FFF 73%);background:linear-gradient(to bottom,#f4f8fa 0,#FFF 73%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f8fa',endColorstr='#FFF',GradientType=0)}

.ccs-stacks_in_82 .ccs-units {

}
.ccs-stacks_in_82 .ccs-import {
  width: 100%;
  min-width: 150px;
  margin-bottom: 8px;
}
@media all and (max-width: 500px) {
  .ccs-stacks_in_82 .ccs-import {
    width: 100%;
  }
}
.ccs-stacks_in_82 .ccs-import .ccs-value,
.ccs-stacks_in_82 .ccs-import .ccs-units {
  margin: 0px 0px 0px 0px;
}
.ccs-stacks_in_82 input,
.ccs-stacks_in_82 select {
  width: 100%;
  padding: 0px 5px;
  margin: 10px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_82 input.ccs-checkbox {
  width: auto;
}
.ccs-stacks_in_82 .ccs-checkbox-text {
  vertical-align: top;
}
.ccs-stacks_in_82 input.date-range-1,
.ccs-stacks_in_82 input.date-range-2 {
  max-width: 249px;
  width: 100%;
  padding: 0px 5px;
  cursor: pointer;
  box-sizing: border-box;
}
.ccs-stacks_in_82 input.date-range-1 {
  margin: 5px 5px 5px 0px !important;
}
.ccs-stacks_in_82 input.date-range-2 {
  margin: 0px 0px 5px 0px !important;
}
.ccs-stacks_in_82 .ccs-slider {
  max-width: 280px;
  width: 100%
  display: inline-block;
}
.ccs-stacks_in_82 .select-wrap {
  max-width: 280px;
  width: 100%;
  display: inline-block;
}
.ccs-stacks_in_82 .ccs-number {
  max-width: 280px;
  width: 100%;
  margin: 10px 10px 10px 0px;
  
  margin: 10px 10px 0px 0px;
  
}
.ccs-stacks_in_82 output, .ccs-stacks_in_82 .ccs-units {
  display: inline-block;
  margin: 0px 0px 0px 5px;
  
  margin: 0px 0px 10px 0px;
  
  
  padding: 0px 0px;
  box-sizing: border-box;
}
.ccs-stacks_in_82 output {
  margin: 0px;
  width: -180%;
  text-align: left;
  border-left: 3px solid transparent;
}

#stacks_in_82, #stacks_in_82_2 {

}


/*
 * 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_725,
#tabContainer_stacks_in_725 .tab-container,
#tabContainer_stacks_in_725 .etabs,
#tabContainer_stacks_in_725 .tab,
#tabContainer_stacks_in_725 .tab a,
#tabContainer_stacks_in_725 .panel-container,
#tabContainer_stacks_in_725 .tabContent {
	margin: 0; 
	padding: 0;
	opacity: 1;
}
#tabContainer_stacks_in_725 li {
	margin-left: 0;
	margin-right: 0;
}
#tabContainer_stacks_in_725 li a {
	line-height: 2.1 !important;
}
#tabContainer_stacks_in_725 li a.active {
	line-height: 2.1 !important; 
	-webkit-backface-visible: visible !important;
}
#tabContainer_stacks_in_725 a,
#tabContainer_stacks_in_725 a:hover {
	text-decoration: none;
}
#tabContainer_stacks_in_725 .tab a,
#tabContainer_stacks_in_725 .tab a:focus,
#tabContainer_stacks_in_725 .tab a:active,
#tabContainer_stacks_in_725 .tab a:visited,
#tabContainer_stacks_in_725 .tab a:link {
	outline: none !important;
	border: none !important;
}
#tabContainer_stacks_in_725 li,
#tabContainer_stacks_in_725 li a {
	cursor: pointer;
}
/* ====================
 * TRANSPARENCY OPTION
 ====================== */
#tabContainer_stacks_in_725.borderTransparencyOn .tab,
.tabDemo #tabContainer_stacks_in_725.borderTransparencyOn .tab,
#tabContainer_stacks_in_725.borderTransparencyOn #tab-container ul.etabs,
#tabContainer_stacks_in_725.borderTransparencyOn #tab-container .panel-container,
.tabDemo #tabContainer_stacks_in_725.borderTransparencyOn #tab-container .panel-container {
	border: none !important;
	border-top: none !important;
	border-right: none !important;
	border-left: none !important;
}
#tabContainer_stacks_in_725.tabTransparencyOn .tab,
.tabDemo #tabContainer_stacks_in_725.tabTransparencyOn .tab,
#tabContainer_stacks_in_725.tabTransparencyOn .tab:hover,
.tabDemo #tabContainer_stacks_in_725.tabTransparencyOn .tab:hover {
	background: none !important;
	background-color: none !important;
}
#tabContainer_stacks_in_725.contentTransparencyOn #tab-container .panel-container {
	background: none !important;
	background-color: none !important;
}
/* ====================
 * DEFAULT STYLING
 ====================== */
#tabContainer_stacks_in_725 {
	width: 98%;
	padding-right: 3px;
}
#tabContainer_stacks_in_725 #tab-container {
	min-width: 400px;
}
#tabContainer_stacks_in_725 .etabs { 
	margin: 0; 
	padding: 0; 
}
#tabContainer_stacks_in_725.controlTabWidthOn #tab-container ul.etabs li.tab {
	width: 150px;
}
#tabContainer_stacks_in_725 .tab, .tabDemo #tabContainer_stacks_in_725 .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_725 #tab-container ul.etabs.firstTabPixels li.tab:first-child {
	margin-left: 0px;
}
#tabContainer_stacks_in_725 #tab-container ul.etabs.firstTabPerc li.tab:first-child {
	margin-left: 0%;
}
#tabContainer_stacks_in_725 #tab-container ul.etabs .tab:hover,
.tabDemo #tabContainer_stacks_in_725 #tab-container ul.etabs .tab:hover {
	background-color: #E0E0E0;
	border-color: #999999;
}
#tabContainer_stacks_in_725 #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_725.linkInheritOff #tab-container ul.etabs .tab a {
	color: #708090 !important;
}
#tabContainer_stacks_in_725.linkInheritOff #tab-container ul.etabs .tab a:hover { 
	text-decoration: none;
	color: #0D4F8B !important;
}
#tabContainer_stacks_in_725 #tab-container ul.etabs .tab.active { 
	background: #FFFFFF; 
	padding-top: 6px; 
	position: relative; 
	top: 1px; 
	border-color: #666666; 
}
#tabContainer_stacks_in_725.linkInheritOff #tab-container ul.etabs .tab a.active { 
	font-weight: bold;
	color: #0080FF !important; 
}
#tabContainer_stacks_in_725.linkInheritOff #tab-container ul.etabs .tab a.active:hover {
	color: #66CCFF !important;
}
#tabContainer_stacks_in_725 #tab-container .panel-container {
	background: #FFFFFF;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 15px;
	padding-bottom: 12px;
	border-radius: 0 4px 4px 4px; 
	-moz-border-radius: 0 4px 4px 4px; 
	-webkit-border-radius: 0 4px 4px 4px;
}
#tabContainer_stacks_in_725.textInheritOff #tab-container .panel-container {
	color: #333333 !important;
	font-size: 14px;
}
#tabContainer_stacks_in_725.borderTransparencyOff #tab-container .panel-container {
	border: solid #666666 1px; 
}
#tabContainer_stacks_in_725.linkInheritOff #tab-container .panel-container a {
	color: #4E78A0;
}
#tabContainer_stacks_in_725.linkInheritOff #tab-container .panel-container a:hover {
	color: #0D4F8B;
}
#tabContainer_stacks_in_725 .panel-container { 
	margin-bottom: 10px; 
}

/* ====================
 * TAB COUNT CONTROL
 * Adds display none depending on total count
 ====================== */
#tabContainer_stacks_in_725 .tabCounter1 .tabContent2, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent3, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent4, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent5, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent6, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent7, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent8, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent9, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent10, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent11, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent12,
#tabContainer_stacks_in_725 .tabCounter1 .tabContent13, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter1 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter2 .tabContent3, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent4, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent5, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent6, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent7, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent8, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent9, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent10, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent11, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent12, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent13, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter2 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter3 .tabContent4, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent5, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent6, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent7, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent8, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent9, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent10, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent11, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent12,
#tabContainer_stacks_in_725 .tabCounter3 .tabContent13, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter3 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter4 .tabContent5, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent6, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent7, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent8, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent9, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent10, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent11, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent12, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent13, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter4 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter5 .tabContent6, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent7, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent8, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent9, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent10, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent11, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent12, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent13, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter5 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter6 .tabContent7, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent8, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent9, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent10, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent11, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent12, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent13, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter6 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter7 .tabContent8, 
#tabContainer_stacks_in_725 .tabCounter7 .tabContent9, 
#tabContainer_stacks_in_725 .tabCounter7 .tabContent10, 
#tabContainer_stacks_in_725 .tabCounter7 .tabContent11, 
#tabContainer_stacks_in_725 .tabCounter7 .tabContent12, 
#tabContainer_stacks_in_725 .tabCounter7 .tabContent13, 
#tabContainer_stacks_in_725 .tabCounter7 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter7 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter7 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter7 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter7 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter7 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter7 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter8 .tabContent9, 
#tabContainer_stacks_in_725 .tabCounter8 .tabContent10, 
#tabContainer_stacks_in_725 .tabCounter8 .tabContent11, 
#tabContainer_stacks_in_725 .tabCounter8 .tabContent12, 
#tabContainer_stacks_in_725 .tabCounter8 .tabContent13, 
#tabContainer_stacks_in_725 .tabCounter8 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter8 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter8 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter8 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter8 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter8 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter8 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter9 .tabContent10, 
#tabContainer_stacks_in_725 .tabCounter9 .tabContent11, 
#tabContainer_stacks_in_725 .tabCounter9 .tabContent12, 
#tabContainer_stacks_in_725 .tabCounter9 .tabContent13, 
#tabContainer_stacks_in_725 .tabCounter9 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter9 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter9 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter9 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter9 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter9 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter9 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter10 .tabContent11, 
#tabContainer_stacks_in_725 .tabCounter10 .tabContent12,
#tabContainer_stacks_in_725 .tabCounter10 .tabContent13, 
#tabContainer_stacks_in_725 .tabCounter10 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter10 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter10 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter10 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter10 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter10 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter10 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter11 .tabContent12,
#tabContainer_stacks_in_725 .tabCounter11 .tabContent13, 
#tabContainer_stacks_in_725 .tabCounter11 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter11 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter11 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter11 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter11 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter11 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter11 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter12 .tabContent13, 
#tabContainer_stacks_in_725 .tabCounter12 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter12 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter12 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter12 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter12 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter12 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter12 .tabContent20,

#tabContainer_stacks_in_725 .tabCounter13 .tabContent14, 
#tabContainer_stacks_in_725 .tabCounter13 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter13 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter13 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter13 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter13 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter13 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter14 .tabContent15, 
#tabContainer_stacks_in_725 .tabCounter14 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter14 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter14 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter14 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter14 .tabContent20,

#tabContainer_stacks_in_725 .tabCounter15 .tabContent16, 
#tabContainer_stacks_in_725 .tabCounter15 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter15 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter15 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter15 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter16 .tabContent17, 
#tabContainer_stacks_in_725 .tabCounter16 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter16 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter16 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter17 .tabContent18, 
#tabContainer_stacks_in_725 .tabCounter17 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter17 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter18 .tabContent19, 
#tabContainer_stacks_in_725 .tabCounter18 .tabContent20, 

#tabContainer_stacks_in_725 .tabCounter19 .tabContent20 {
	display: none !important;
}
/* ====================
 * BACKEND
 ====================== */
.tabDemo #tabContainer_stacks_in_725 .panel-container div.tabContent div {
	padding-top: 5px;
}
.tabDemo #tabContainer_stacks_in_725 .tab {
	width: inherit;
}
/* ====================
 * THEMES
 ====================== */
#tabContainer_stacks_in_725 #tab-container.tabTheme2 ul.etabs .tab.active,
#tabContainer_stacks_in_725 #tab-container.tabTheme3 ul.etabs .tab.active {
	border-color: #666666;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme2 ul.etabs {
	margin-bottom: 5px;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme2 .panel-container {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
#tabContainer_stacks_in_725 #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_725 #tab-container.tabTheme2 ul.etabs .tab.active,
#tabContainer_stacks_in_725 #tab-container.tabTheme3 ul.etabs .tab.active,
#tabContainer_stacks_in_725 #tab-container.tabTheme7 ul.etabs .tab.active {
	padding-top: 1px; 
	padding-bottom: -1px;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme3 ul.etabs {
	padding: 3px 4px; 
	border-right: solid 1px #666666; 
	border-left: solid 1px #666666;
	background: #FFFFFF;
}
#tabContainer_stacks_in_725 #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_725 #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_725 #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_725 #tab-container.tabTheme3.tabsBottomOff .panel-container {
	border-radius: 0 0 4px 4px;
	border-top: 0;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme3.tabsBottomOn .panel-container {
	border-radius: 4px 4px 0 0;
	border-bottom: 0;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme2.tabsBottomOn .panel-container,
#tabContainer_stacks_in_725 #tab-container.tabTheme3.tabsBottomOn .panel-container,
#tabContainer_stacks_in_725 #tab-container.tabTheme5.tabsBottomOn .panel-container,
#tabContainer_stacks_in_725 #tab-container.tabTheme6.tabsBottomOn .panel-container {
	margin-bottom: 0;
}  
#tabContainer_stacks_in_725 #tab-container.tabTheme4 .panel-container,
#tabContainer_stacks_in_725 #tab-container.tabTheme7 .panel-container {
	border-bottom: none;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme4 .panel-container,
#tabContainer_stacks_in_725 #tab-container.tabTheme5 .panel-container,
#tabContainer_stacks_in_725 #tab-container.tabTheme6 .panel-container,
#tabContainer_stacks_in_725 #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_725 #tab-container.tabTheme5.tabsBottomOff .panel-container,
#tabContainer_stacks_in_725 #tab-container.tabTheme6.tabsBottomOff .panel-container {
	border-bottom: none;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme5.tabsBottomOn .panel-container {
	border-top: none;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme6.tabsBottomOn .panel-container {
	border: none;
	border-top: none;
	border-bottom: none;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme4 ul.etabs .tab.marginOpt,
#tabContainer_stacks_in_725 #tab-container.tabTheme5 ul.etabs .tab.marginOpt,
#tabContainer_stacks_in_725 #tab-container.tabTheme6 ul.etabs .tab.marginOpt {
	margin-left: 10px;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme5 ul.etabs .tab,
#tabContainer_stacks_in_725 #tab-container.tabTheme6 ul.etabs .tab,
#tabContainer_stacks_in_725 #tab-container.tabTheme7 ul.etabs .tab {
	border: none;
	background: none;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme5.tabsBottomOff ul.etabs .tab.active {
	border-bottom: solid 5px #666666;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme6.tabsBottomOff ul.etabs .tab.active {
	border-bottom: solid 5px #666666;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme6.tabsBottomOff .panel-container {
	border-top: none;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme5.tabsBottomOn ul.etabs .tab.active,
#tabContainer_stacks_in_725 #tab-container.tabTheme6.tabsBottomOn ul.etabs .tab.active {
	border-top: solid 5px #666666;
	top: 0;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme5.tabsBottomOn ul.etabs .tab,
#tabContainer_stacks_in_725 #tab-container.tabTheme6.tabsBottomOn ul.etabs .tab {
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}
#tabContainer_stacks_in_725 #tab-container.tabTheme7.themeDots1 ul.etabs li a {
	padding-bottom: 10px;
}
#tabContainer_stacks_in_725 #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_725 #tab-container.tabTheme7.themeDots1 ul.etabs li a:hover:after,
#tabContainer_stacks_in_725 #tab-container.tabTheme7.themeDots1 ul.etabs li a.active:after {
	background: #0080FF;
}
#tabContainer_stacks_in_725 #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_725 #tab-container.tabTheme7.themeDots2 ul.etabs li a:hover:after,
#tabContainer_stacks_in_725 #tab-container.tabTheme7.themeDots2 ul.etabs li a.active:after {
	border-top-color: #0080FF;
}
/* ====================
 * RESPONSIVENESS
 ====================== */

/* iPads */
@media (max-width : 400px) {
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme1 ul.etabs .tab,
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme2 ul.etabs .tab,
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme3 ul.etabs .tab,
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme4 ul.etabs .tab,
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme5 ul.etabs .tab,
	#tabContainer_stacks_in_725.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_725.responsiveOn ul.etabs .tab.active {padding-top: 0;}
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme4 ul.etabs .tab.marginOpt,
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme5 ul.etabs .tab.marginOpt,
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme6 ul.etabs .tab.marginOpt {
		margin-left: 1%;
	}
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme5 ul.etabs .tab,
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme6 ul.etabs .tab {
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
	}
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme5 .panel-container {
		border-top: none;
	}
	#tabContainer_stacks_in_725 #tab-container ul.etabs.firstTabPixels li.tab:first-child {
		margin-left: 3px;
	}
	#tabContainer_stacks_in_725 #tab-container.tabTheme3 ul.etabs.firstTabPixels li.tab:first-child {
		margin-left: 6px;
	}
	#tabContainer_stacks_in_725 #tab-container ul.etabs .tab.active {
		padding-top: 0;
		top: 0;
	}
}

/* iPhones */
@media (max-width : 480px) {
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme1 ul.etabs .tab,
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme2 ul.etabs .tab,
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme3 ul.etabs .tab,
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme4 ul.etabs .tab,
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme5 ul.etabs .tab,
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme6 ul.etabs .tab {
		width: 98%;
	}
	#tabContainer_stacks_in_725.responsiveOn #tab-container.tabTheme7 .panel-container {
		border-top: none;
	}
	#tabContainer_stacks_in_725 #tab-container.tabTheme3 ul.etabs.firstTabPixels li.tab:first-child {
		margin-left: 3px;
	}
}

#stacks_in_725 {
	background-color: rgba(230, 230, 230, 0.40);
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	padding:  20px;
}

#stacks_out_766 {
	width: 700px;
	margin-left:0;
}

#stacks_out_768 {
	width: 700px;
	margin-left:0;
}

#stacks_out_770 {
	width: 700px;
	margin-left:0;
}

#stacks_out_772 {
	width: 700px;
	margin-left:0;
}

#stacks_out_774 {
	width: 700px;
	margin-left:0;
}

#stacks_out_776 {
	width: 700px;
	margin-left:0;
}
/* Start doo Tab 2 stack each CSS code */#stacks_in_665wrapper{	position: relative;	-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */	box-sizing: border-box !important;         /* Opera/IE 8+ */}#stacks_in_665 .dooTabContentTitle{	display: none;}ul.stacks_in_665tabs {	position: relative;	margin: 0 !important;	padding: 0;	float: left;	list-style: none !important;	list-style-type: none !important;	height: 37px;	border-bottom: 1px solid rgba(179, 179, 179, 1.00);	width: 100%;	-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */	box-sizing: border-box !important;         /* Opera/IE 8+ */}ul.stacks_in_665tabs li {	float: left;	margin: 0;	cursor: pointer;	padding: 0px 21px;	height: 36px;	line-height: 36px !important;	border-top: 1px solid rgba(179, 179, 179, 1.00);	border-right: 1px solid rgba(179, 179, 179, 1.00);	/*border-bottom: 1px solid rgba(179, 179, 179, 1.00);*/	border-left: 1px solid rgba(179, 179, 179, 1.00);	background-color: rgba(230, 230, 230, 1.00);	color: rgba(128, 128, 128, 1.00);	overflow: hidden;	position: relative;	margin-left: 0px;	z-index: 1;	-webkit-border-top-left-radius: 4px;	-webkit-border-top-right-radius: 4px;	-moz-border-radius-topleft: 4px;	-moz-border-radius-topright: 4px;	border-top-left-radius: 4px;	border-top-right-radius: 4px;	white-space: nowrap;	font-size: 17px !important;	list-style: none !important;	list-style-type: none !important;	-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */	box-sizing: border-box !important;         /* Opera/IE 8+ */}/*.tab_last { border-right: 1px solid ; }*/ul.stacks_in_665tabs li.tab_first { margin-left: 0px; }ul.stacks_in_665tabs li:hover {	color: rgba(108, 108, 108, 1.00);}ul.stacks_in_665tabs li.active {	background-color: rgba(7, 64, 128, 1.00);	color: rgba(255, 255, 255, 1.00);	border-top: 1px solid rgba(179, 179, 179, 1.00);	border-left: 1px solid rgba(179, 179, 179, 1.00);	border-right: 1px solid rgba(179, 179, 179, 1.00);	display: block;	z-index: 10;	-webkit-box-sizing: content-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: content-box !important;    /* Firefox, other Gecko */	box-sizing: content-box !important;         /* Opera/IE 8+ */}.stacks_in_665tab_container {	position: relative;	border: 1px solid rgba(179, 179, 179, 1.00);	border-top: none;	background: rgba(7, 64, 128, 1.00);	overflow: auto;	-webkit-border-bottom-right-radius: 3px;	-webkit-border-bottom-left-radius: 3px;	-moz-border-radius-bottomright: 3px;	-moz-border-radius-bottomleft: 3px;	border-bottom-right-radius: 3px;	border-bottom-left-radius: 3px;	-webkit-box-sizing: content-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: content-box !important;    /* Firefox, other Gecko */	box-sizing: content-box !important;         /* Opera/IE 8+ */}#stacks_in_665 .dooTabContent {	padding: 21px;	display: none;}#stacks_in_665 .tab_drawer_heading { display: none; }@media screen and (max-width: 489px) {	ul.stacks_in_665tabs {		border-bottom: none;	}	.stacks_in_665tabs {		display: none;	}	#stacks_in_665 .tab_drawer_heading {		background-color: rgba(230, 230, 230, 1.00) !important;		color: rgba(128, 128, 128, 1.00) !important;		border-top: 1px solid rgba(179, 179, 179, 1.00);		margin: 0;		padding: 8px 20px;		display: block;		cursor: pointer;		-webkit-touch-callout: none;		-webkit-user-select: none;		-khtml-user-select: none;		-moz-user-select: none;		-ms-user-select: none;		user-select: none;		font-size: 19px !important;	}	.stacks_in_665tab_container > div:first-child .tab_drawer_heading {		border-top: 0px !important;	}	.stacks_in_665_active {		background-color: rgba(7, 64, 128, 1.00) !important;		color: rgba(255, 255, 255, 1.00);		border-bottom: 1px solid rgba(179, 179, 179, 1.00);	}	.stacks_in_665tab_container {	border: 1px solid rgba(179, 179, 179, 1.00) !important;	-webkit-border-radius: 4px;	-moz-border-radius: 4px;	border-radius: 4px;	}}/* End doo Tab 2 stack each CSS code */
#stacks_in_665 {
	background-color: rgba(204, 204, 204, 1.00);
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin: 20px 0px 20px 0px;
	padding: 20px 20px 20px 20px;
}

#stacks_out_665 {
	width: 723px;
}
/* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code */#stacks_in_784{overflow:hidden;height:400px;}

#stacks_out_784 {
	width: 600px;
}

#stacks_in_789 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  1px;
}
/* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code */#stacks_in_782{overflow:hidden;height:400px;}

#stacks_out_782 {
	width: 600px;
}

#stacks_in_788 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  1px;
}
/* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code */#stacks_in_780{overflow:hidden;height:400px;}

#stacks_out_780 {
	width: 600px;
}

#stacks_in_787 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  1px;
}
/* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code */#stacks_in_778{overflow:hidden;height:400px;}

#stacks_out_778 {
	width: 600px;
}

#stacks_in_786 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  1px;
}
/* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code */#stacks_in_1043{overflow:hidden;height:400px;}

#stacks_out_1043 {
	width: 600px;
}

#stacks_in_1044 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  1px;
}
/* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code */#stacks_in_1049{overflow:hidden;height:400px;}

#stacks_out_1049 {
	width: 600px;
}

#stacks_in_1050 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width:  1px;
}
