@charset "UTF-8";

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

Copyright (c) 2013 Daniel Eden

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

Copyright (c) 2014 Christian Pucci

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
#stacks_in_639 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_639 .jwresp_col{overflow:hidden;margin:0;width:39%; float:right;}#stacks_in_639 #jwresp_col2_stacks_in_639{ float:left; width:59%}@media screen and (max-width:500px){#stacks_in_639 #jwresp_col1_stacks_in_639,#stacks_in_639 #jwresp_col2_stacks_in_639{width:100%;float:none;display:block}#stacks_in_639 #jwresp_col1_stacks_in_639{margin-bottom:15px}}

#stacks_in_640 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_643 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_643 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_643 .fluid-image.unlimited img{width:100% !important}#stacks_in_643 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_643 .fluid-image.align-left img{float:left}#stacks_in_643 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_646 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_646 .theDivider1,
#simpleDivider_stacks_in_646 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_646 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_646.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_646.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_646 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_646.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_646.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_646.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_646.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_386 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_386 .jwresp_col{overflow:hidden;margin:0;width:39%; float:left;}#stacks_in_386 #jwresp_col2_stacks_in_386{ float:right; width:59%}@media screen and (max-width:500px){#stacks_in_386 #jwresp_col1_stacks_in_386,#stacks_in_386 #jwresp_col2_stacks_in_386{width:100%;float:none;display:block}#stacks_in_386 #jwresp_col1_stacks_in_386{margin-bottom:15px}}

#stacks_in_387 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_394 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_394 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_394 .fluid-image.unlimited img{width:100% !important}#stacks_in_394 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_394 .fluid-image.align-left img{float:left}#stacks_in_394 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_2256 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_2256 .theDivider1,
#simpleDivider_stacks_in_2256 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_2256 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_2256.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_2256.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_2256 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_2256.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_2256.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_2256.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_2256.bgImageOn .theDivider1 img {
	display: block;
}

/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_2041 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_2041.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_2041.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_2041.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_2041.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_2041.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_2041.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_2041.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_2041.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_2041.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_2041.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_2041.RC4_LF.RC4_Goff, .stacks_in_2041.RC4_LL.RC4_Goff, .stacks_in_2041.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2041.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2041.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_2041.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_2041.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_2041.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_2041.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_2041.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2041.RC5_LF.RC5_Goff, .stacks_in_2041.RC5_LL.RC5_Goff, .stacks_in_2041.RC5_RF.RC5_Goff, .stacks_in_2041.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2041.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2041.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_2041.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_2041.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_2041.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_2041.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_2041.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2041.RC6_LF.RC6_Goff,
.stacks_in_2041.RC6_LL.RC6_Goff,
.stacks_in_2041.RC6_RF.RC6_Goff,
.stacks_in_2041.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2041.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2041.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_2041.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_2041.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_2041.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_2041.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_2041.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_2041.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_2041.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2041.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_2041.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_2041.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_2041.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2041.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_2041.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_2041.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_2041.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_2041.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_2041.RC3_R.RespCol1,
  .stacks_in_2041.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_2041.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_2041.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_2041.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2041.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_2041.RC3_L,
  .stacks_in_2041.RC3_R.RespCol2,
  .stacks_in_2041.RC3_R,
  .stacks_in_2041.RC3_R.RespCol1,
  .stacks_in_2041.RC3_RS.RespCol2,
  .stacks_in_2041.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_2041.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_2041.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2041.RC4_L {
  float: left;
}
.stacks_in_2041.RC4_R {
  float: left;
}
.stacks_in_2041.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_2041.RC4_S {
  width: 23.6%;
}
.stacks_in_2041.RC4_LF,
.stacks_in_2041.RC4_LL,
.stacks_in_2041.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_2041.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_2041.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_2041.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_2041.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_2041.RC4_S {
    width: 49%;
  }
  .stacks_in_2041.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_2041.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_2041.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_2041.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_2041.RC4_R {
    float:left;
  }
  .stacks_in_2041.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_2041.RC4_S.RC4_Goff,
  .stacks_in_2041.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_2041.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2041.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2041.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2041.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_2041.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC4_S.RC4_Goff,
  .stacks_in_2041.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2041.RC5_L {
  float: left;
}
.stacks_in_2041.RC5_R {
  float: left;
}
.stacks_in_2041.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_2041.RC5_S {
  width: 18.4%;
}
.stacks_in_2041.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2041.RC5_LF,
.stacks_in_2041.RC5_LL,
.stacks_in_2041.RC5_RF,
.stacks_in_2041.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2041.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_2041.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_2041.RC5, .stacks_in_2041.RC5_S {
    width: 49%;
  }
  .stacks_in_2041.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2041.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2041.RC5.RespColone5_Last,
  .stacks_in_2041.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_2041.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2041.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2041.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RespColone5_Last.RC5_Goff,
  .stacks_in_2041.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_2041.RC5.RespCol2,
  .stacks_in_2041.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_2041.RC5_LF.RespCol2,
  .stacks_in_2041.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2041.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2041.RC5.RespColone5_First.RespCol2,
  .stacks_in_2041.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_2041.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2041.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_2041.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2041.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_2041.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_2041.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_2041.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_2041.RC5.RC5_LL.RespCol2,
  .stacks_in_2041.RC5.RC5_LF.RespCol2,
  .stacks_in_2041.RC5.RC5_LL.RespCol1,
  .stacks_in_2041.RC5.RC5_LF.RespCol1,
  .stacks_in_2041.RC5_S.RC5_LL.RespCol2,
  .stacks_in_2041.RC5_S.RC5_LF.RespCol2,
  .stacks_in_2041.RC5_S.RC5_LL.RespCol1,
  .stacks_in_2041.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC5.RC5_Goff,
  .stacks_in_2041.RC5_S.RC5_Goff,
  .stacks_in_2041.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2041.RC6_L,
.stacks_in_2041.RC6_L1 {
  float: left;
}
.stacks_in_2041.RC6_R,
.stacks_in_2041.RC6_R1 {
  float: left;
}
.stacks_in_2041.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_2041.RC6_S {
  width: 15.2%;
}
.stacks_in_2041.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2041.RC6_LF,
.stacks_in_2041.RC6_LL,
.stacks_in_2041.RC6_RF,
.stacks_in_2041.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_2041.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_2041.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_2041.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_2041.RC6,
  .stacks_in_2041.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_2041.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2041.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2041.RC6.RC6_Goff,
  .stacks_in_2041.RC6_S.RC6_Goff,
  .stacks_in_2041.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_2041.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_2041.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2041.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_2041.RC6,
  .stacks_in_2041.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}
#stacks_in_2043 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_2043 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_2043 .fluid-image.unlimited img{width:100% !important}#stacks_in_2043 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_2043 .fluid-image.align-left img{float:left}#stacks_in_2043 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_385 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_385 .theDivider1,
#simpleDivider_stacks_in_385 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_385 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_385.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_385.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_385 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_385.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_385.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_385.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_385.bgImageOn .theDivider1 img {
	display: block;
}

/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_1360 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_1360.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_1360.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_1360.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_1360.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_1360.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_1360.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_1360.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_1360.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_1360.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_1360.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_1360.RC4_LF.RC4_Goff, .stacks_in_1360.RC4_LL.RC4_Goff, .stacks_in_1360.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1360.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1360.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_1360.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_1360.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_1360.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_1360.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_1360.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1360.RC5_LF.RC5_Goff, .stacks_in_1360.RC5_LL.RC5_Goff, .stacks_in_1360.RC5_RF.RC5_Goff, .stacks_in_1360.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1360.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1360.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_1360.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_1360.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_1360.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_1360.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_1360.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1360.RC6_LF.RC6_Goff,
.stacks_in_1360.RC6_LL.RC6_Goff,
.stacks_in_1360.RC6_RF.RC6_Goff,
.stacks_in_1360.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1360.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1360.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_1360.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_1360.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_1360.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_1360.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_1360.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_1360.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_1360.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_1360.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_1360.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_1360.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_1360.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_1360.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_1360.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_1360.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_1360.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_1360.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_1360.RC3_R.RespCol1,
  .stacks_in_1360.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_1360.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_1360.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_1360.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1360.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_1360.RC3_L,
  .stacks_in_1360.RC3_R.RespCol2,
  .stacks_in_1360.RC3_R,
  .stacks_in_1360.RC3_R.RespCol1,
  .stacks_in_1360.RC3_RS.RespCol2,
  .stacks_in_1360.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_1360.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_1360.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_1360.RC4_L {
  float: left;
}
.stacks_in_1360.RC4_R {
  float: left;
}
.stacks_in_1360.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_1360.RC4_S {
  width: 23.6%;
}
.stacks_in_1360.RC4_LF,
.stacks_in_1360.RC4_LL,
.stacks_in_1360.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_1360.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_1360.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_1360.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_1360.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_1360.RC4_S {
    width: 49%;
  }
  .stacks_in_1360.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_1360.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_1360.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_1360.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_1360.RC4_R {
    float:left;
  }
  .stacks_in_1360.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_1360.RC4_S.RC4_Goff,
  .stacks_in_1360.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_1360.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_1360.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_1360.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_1360.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_1360.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC4_S.RC4_Goff,
  .stacks_in_1360.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_1360.RC5_L {
  float: left;
}
.stacks_in_1360.RC5_R {
  float: left;
}
.stacks_in_1360.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_1360.RC5_S {
  width: 18.4%;
}
.stacks_in_1360.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_1360.RC5_LF,
.stacks_in_1360.RC5_LL,
.stacks_in_1360.RC5_RF,
.stacks_in_1360.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_1360.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_1360.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_1360.RC5, .stacks_in_1360.RC5_S {
    width: 49%;
  }
  .stacks_in_1360.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_1360.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1360.RC5.RespColone5_Last,
  .stacks_in_1360.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_1360.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1360.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1360.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RespColone5_Last.RC5_Goff,
  .stacks_in_1360.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_1360.RC5.RespCol2,
  .stacks_in_1360.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_1360.RC5_LF.RespCol2,
  .stacks_in_1360.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1360.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_1360.RC5.RespColone5_First.RespCol2,
  .stacks_in_1360.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_1360.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1360.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_1360.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1360.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_1360.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_1360.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_1360.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_1360.RC5.RC5_LL.RespCol2,
  .stacks_in_1360.RC5.RC5_LF.RespCol2,
  .stacks_in_1360.RC5.RC5_LL.RespCol1,
  .stacks_in_1360.RC5.RC5_LF.RespCol1,
  .stacks_in_1360.RC5_S.RC5_LL.RespCol2,
  .stacks_in_1360.RC5_S.RC5_LF.RespCol2,
  .stacks_in_1360.RC5_S.RC5_LL.RespCol1,
  .stacks_in_1360.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC5.RC5_Goff,
  .stacks_in_1360.RC5_S.RC5_Goff,
  .stacks_in_1360.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_1360.RC6_L,
.stacks_in_1360.RC6_L1 {
  float: left;
}
.stacks_in_1360.RC6_R,
.stacks_in_1360.RC6_R1 {
  float: left;
}
.stacks_in_1360.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_1360.RC6_S {
  width: 15.2%;
}
.stacks_in_1360.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_1360.RC6_LF,
.stacks_in_1360.RC6_LL,
.stacks_in_1360.RC6_RF,
.stacks_in_1360.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_1360.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_1360.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_1360.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_1360.RC6,
  .stacks_in_1360.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_1360.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_1360.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1360.RC6.RC6_Goff,
  .stacks_in_1360.RC6_S.RC6_Goff,
  .stacks_in_1360.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_1360.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_1360.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1360.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_1360.RC6,
  .stacks_in_1360.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}
#stacks_in_1361 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_1361 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_1361 .fluid-image.unlimited img{width:100% !important}#stacks_in_1361 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_1361 .fluid-image.align-left img{float:left}#stacks_in_1361 .fluid-image.align-right img{float:right}
#stacks_in_1365 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_1365 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_1365 #jwresp_col2_stacks_in_1365{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_1365 #jwresp_col1_stacks_in_1365,#stacks_in_1365 #jwresp_col2_stacks_in_1365{width:100%;float:none;display:block}#stacks_in_1365 #jwresp_col1_stacks_in_1365{margin-bottom:15px}}
#stacks_in_1366 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_1366 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_1366 .fluid-image.unlimited img{width:100% !important}#stacks_in_1366 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_1366 .fluid-image.align-left img{float:left}#stacks_in_1366 .fluid-image.align-right img{float:right}
#stacks_in_1369 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_1369 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_1369 .fluid-image.unlimited img{width:100% !important}#stacks_in_1369 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_1369 .fluid-image.align-left img{float:left}#stacks_in_1369 .fluid-image.align-right img{float:right}
#stacks_in_1374 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_1374 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_1374 #jwresp_col2_stacks_in_1374{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_1374 #jwresp_col1_stacks_in_1374,#stacks_in_1374 #jwresp_col2_stacks_in_1374{width:100%;float:none;display:block}#stacks_in_1374 #jwresp_col1_stacks_in_1374{margin-bottom:15px}}
#stacks_in_1375 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_1375 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_1375 .fluid-image.unlimited img{width:100% !important}#stacks_in_1375 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_1375 .fluid-image.align-left img{float:left}#stacks_in_1375 .fluid-image.align-right img{float:right}
#stacks_in_1378 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_1378 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_1378 .fluid-image.unlimited img{width:100% !important}#stacks_in_1378 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_1378 .fluid-image.align-left img{float:left}#stacks_in_1378 .fluid-image.align-right img{float:right}
#stacks_in_1383 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_1383 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_1383 #jwresp_col2_stacks_in_1383{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_1383 #jwresp_col1_stacks_in_1383,#stacks_in_1383 #jwresp_col2_stacks_in_1383{width:100%;float:none;display:block}#stacks_in_1383 #jwresp_col1_stacks_in_1383{margin-bottom:15px}}
#stacks_in_1384 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_1384 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_1384 .fluid-image.unlimited img{width:100% !important}#stacks_in_1384 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_1384 .fluid-image.align-left img{float:left}#stacks_in_1384 .fluid-image.align-right img{float:right}
#stacks_in_1387 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_1387 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_1387 .fluid-image.unlimited img{width:100% !important}#stacks_in_1387 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_1387 .fluid-image.align-left img{float:left}#stacks_in_1387 .fluid-image.align-right img{float:right}
#stacks_in_1392 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_1392 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_1392 #jwresp_col2_stacks_in_1392{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_1392 #jwresp_col1_stacks_in_1392,#stacks_in_1392 #jwresp_col2_stacks_in_1392{width:100%;float:none;display:block}#stacks_in_1392 #jwresp_col1_stacks_in_1392{margin-bottom:15px}}
#stacks_in_1393 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_1393 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_1393 .fluid-image.unlimited img{width:100% !important}#stacks_in_1393 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_1393 .fluid-image.align-left img{float:left}#stacks_in_1393 .fluid-image.align-right img{float:right}
#stacks_in_1396 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_1396 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_1396 .fluid-image.unlimited img{width:100% !important}#stacks_in_1396 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_1396 .fluid-image.align-left img{float:left}#stacks_in_1396 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_1399 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_1399 .theDivider1,
#simpleDivider_stacks_in_1399 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_1399 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_1399.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_1399.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_1399 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_1399.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_1399.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_1399.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_1399.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_1355 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_1355 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_1355 #jwresp_col2_stacks_in_1355{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_1355 #jwresp_col1_stacks_in_1355,#stacks_in_1355 #jwresp_col2_stacks_in_1355{width:100%;float:none;display:block}#stacks_in_1355 #jwresp_col1_stacks_in_1355{margin-bottom:15px}}
/* @group Basics */

#videoPlayerContainerstacks_in_1356 {
	position: relative;
	z-index: 1;
}

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

#videoPlayerVideostacks_in_1356 {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}

/* @end */

/* @group Big Play Button */

#bigPlayButtonstacks_in_1356 {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 3;
	font-size: 75px;
	border: none;
	background: none;
	outline: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#bigPlayButtonstacks_in_1356 [class^="fa fa-"] {
	cursor: pointer;
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/* @end */

/* @group Video Controls */

#videoPlayerControlsstacks_in_1356 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	overflow: hidden;
	margin: 0px;
	border-radius: 0px;
}

#videoPlayerControlsstacks_in_1356 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/*  */

/*  */

/*  */

/*  */
#videoPlayerControlsstacks_in_1356 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	-ms-transition: all 1000ms;
	transition: all 1000ms;
	max-height: 0px;
	opacity: 0;
}

#videoPlayerContainerstacks_in_1356:hover #videoPlayerControlsstacks_in_1356 {
	max-height: 60px;
	opacity: 1.00;
}
/*  */

/*  */

/*  */

#videoPlayerControlsFillstacks_in_1356 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1.00);
	opacity: 0.75;
	z-index: 1;
}

#videoPlayerControlsWrapperstacks_in_1356 {
	display: flex;
	position: relative;
	z-index: 2;
}

#videoPlayerContainerstacks_in_1356:hover #videoPlayerControlsstacks_in_1356 {
	opacity: 1.00;
}

#videoPlayerControlsstacks_in_1356 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 60px;
	padding: 0;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#videoPlayerControlsstacks_in_1356 #videoPlayerPlayPausestacks_in_1356 {
	display: inline-block;
}

#videoPlayerControlsstacks_in_1356 #videoPlayerFullScreenstacks_in_1356 {
	display: inline-block;
}

/* @end */

/* @group Video Timing */

#videoPlayerVideoTimingstacks_in_1356 {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
	width: auto;
	padding: 0 15px;
	font-size: 12px;
}

#videoPlayerCurrentTimestacks_in_1356 {
	display: inline-block;
}

#videoPlayerDurationstacks_in_1356 {
	display: inline-block;
}

/*  */

/*  */

/* @end */

/* @group Seek Bar */

#progressBarstacks_in_1356 {
	flex: 1;
	padding-right: 10px;
	height: 60px;
	line-height: 60px;
	vertical-align: middle;
	display: inline-block;
}

#videoPlayerSeekBarstacks_in_1356[type=range] {
	-webkit-appearance: none;
	background: none;
	display: inline-block;
	width: 100%;
	height: 60px;
	line-height: 60px;
}

#videoPlayerSeekBarstacks_in_1356[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_1356[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#videoPlayerSeekBarstacks_in_1356[type=range]:focus {
	outline: none;
}

#videoPlayerSeekBarstacks_in_1356[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_1356[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_1356[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_1356[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_1356[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_1356[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_1356[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_1356[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_1356[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}
/* @end */

/* @group Volume */

#volumestacks_in_1356 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	transition: all ease-in-out 300ms;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 18px;
	vertical-align: middle;
}

#volumestacks_in_1356 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_1356:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 15px;
}

#volumeButtonstacks_in_1356 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_1356:hover #volumeButtonstacks_in_1356 {
	display: none;
}

#volumeMinstacks_in_1356 {
	position: absolute;
	left: 10px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumeMaxstacks_in_1356 {
	position: absolute;
	right: 5px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_1356[type=range],
#volumeMinstacks_in_1356,
#volumeMaxstacks_in_1356 {
	display: none;
}

#volumeMinstacks_in_1356,
#volumeMaxstacks_in_1356 {
	cursor: pointer;
}

#volumestacks_in_1356:hover #volume-barstacks_in_1356,
#volumestacks_in_1356:hover #volumeMinstacks_in_1356,
#volumestacks_in_1356:hover #volumeMaxstacks_in_1356 {
	display: inline;
}

#volume-barstacks_in_1356[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 60px;
	height: 60px;
}

#volume-barstacks_in_1356[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_1356[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#volume-barstacks_in_1356[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_1356[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#volume-barstacks_in_1356[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_1356[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_1356[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_1356[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_1356[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_1356[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_1356[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#volume-barstacks_in_1356[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}

/* @end */

/* @group Responsive Behavior */

@media screen and (max-width: 569px) {
	#videoPlayerControlsstacks_in_1356 #videoPlayerFullScreenstacks_in_1356,
	#videoPlayerControlsstacks_in_1356 #volumestacks_in_1356 {
		display: none;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end *//* @group Basics */

#videoPlayerContainerstacks_in_1358 {
	position: relative;
	z-index: 1;
}

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

#videoPlayerVideostacks_in_1358 {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}

/* @end */

/* @group Big Play Button */

#bigPlayButtonstacks_in_1358 {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 3;
	font-size: 75px;
	border: none;
	background: none;
	outline: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#bigPlayButtonstacks_in_1358 [class^="fa fa-"] {
	cursor: pointer;
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/* @end */

/* @group Video Controls */

#videoPlayerControlsstacks_in_1358 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	overflow: hidden;
	margin: 0px;
	border-radius: 0px;
}

#videoPlayerControlsstacks_in_1358 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/*  */

/*  */

/*  */

/*  */
#videoPlayerControlsstacks_in_1358 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	-ms-transition: all 1000ms;
	transition: all 1000ms;
	max-height: 0px;
	opacity: 0;
}

#videoPlayerContainerstacks_in_1358:hover #videoPlayerControlsstacks_in_1358 {
	max-height: 60px;
	opacity: 1.00;
}
/*  */

/*  */

/*  */

#videoPlayerControlsFillstacks_in_1358 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1.00);
	opacity: 0.75;
	z-index: 1;
}

#videoPlayerControlsWrapperstacks_in_1358 {
	display: flex;
	position: relative;
	z-index: 2;
}

#videoPlayerContainerstacks_in_1358:hover #videoPlayerControlsstacks_in_1358 {
	opacity: 1.00;
}

#videoPlayerControlsstacks_in_1358 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 60px;
	padding: 0;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#videoPlayerControlsstacks_in_1358 #videoPlayerPlayPausestacks_in_1358 {
	display: inline-block;
}

#videoPlayerControlsstacks_in_1358 #videoPlayerFullScreenstacks_in_1358 {
	display: inline-block;
}

/* @end */

/* @group Video Timing */

#videoPlayerVideoTimingstacks_in_1358 {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
	width: auto;
	padding: 0 15px;
	font-size: 12px;
}

#videoPlayerCurrentTimestacks_in_1358 {
	display: inline-block;
}

#videoPlayerDurationstacks_in_1358 {
	display: inline-block;
}

/*  */

/*  */

/* @end */

/* @group Seek Bar */

#progressBarstacks_in_1358 {
	flex: 1;
	padding-right: 10px;
	height: 60px;
	line-height: 60px;
	vertical-align: middle;
	display: inline-block;
}

#videoPlayerSeekBarstacks_in_1358[type=range] {
	-webkit-appearance: none;
	background: none;
	display: inline-block;
	width: 100%;
	height: 60px;
	line-height: 60px;
}

#videoPlayerSeekBarstacks_in_1358[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_1358[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#videoPlayerSeekBarstacks_in_1358[type=range]:focus {
	outline: none;
}

#videoPlayerSeekBarstacks_in_1358[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_1358[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_1358[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_1358[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_1358[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_1358[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_1358[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_1358[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_1358[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}
/* @end */

/* @group Volume */

#volumestacks_in_1358 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	transition: all ease-in-out 300ms;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 18px;
	vertical-align: middle;
}

#volumestacks_in_1358 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_1358:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 15px;
}

#volumeButtonstacks_in_1358 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_1358:hover #volumeButtonstacks_in_1358 {
	display: none;
}

#volumeMinstacks_in_1358 {
	position: absolute;
	left: 10px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumeMaxstacks_in_1358 {
	position: absolute;
	right: 5px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_1358[type=range],
#volumeMinstacks_in_1358,
#volumeMaxstacks_in_1358 {
	display: none;
}

#volumeMinstacks_in_1358,
#volumeMaxstacks_in_1358 {
	cursor: pointer;
}

#volumestacks_in_1358:hover #volume-barstacks_in_1358,
#volumestacks_in_1358:hover #volumeMinstacks_in_1358,
#volumestacks_in_1358:hover #volumeMaxstacks_in_1358 {
	display: inline;
}

#volume-barstacks_in_1358[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 60px;
	height: 60px;
}

#volume-barstacks_in_1358[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_1358[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#volume-barstacks_in_1358[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_1358[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#volume-barstacks_in_1358[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_1358[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_1358[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_1358[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_1358[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_1358[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_1358[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#volume-barstacks_in_1358[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}

/* @end */

/* @group Responsive Behavior */

@media screen and (max-width: 569px) {
	#videoPlayerControlsstacks_in_1358 #videoPlayerFullScreenstacks_in_1358,
	#videoPlayerControlsstacks_in_1358 #volumestacks_in_1358 {
		display: none;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end *//*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_1112 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_1112 .theDivider1,
#simpleDivider_stacks_in_1112 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_1112 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_1112.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_1112.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_1112 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_1112.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_1112.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_1112.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_1112.bgImageOn .theDivider1 img {
	display: block;
}

/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_396 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_396.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_396.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_396.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_396.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_396.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_396.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_396.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_396.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_396.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_396.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_396.RC4_LF.RC4_Goff, .stacks_in_396.RC4_LL.RC4_Goff, .stacks_in_396.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_396.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_396.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_396.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_396.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_396.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_396.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_396.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_396.RC5_LF.RC5_Goff, .stacks_in_396.RC5_LL.RC5_Goff, .stacks_in_396.RC5_RF.RC5_Goff, .stacks_in_396.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_396.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_396.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_396.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_396.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_396.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_396.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_396.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_396.RC6_LF.RC6_Goff,
.stacks_in_396.RC6_LL.RC6_Goff,
.stacks_in_396.RC6_RF.RC6_Goff,
.stacks_in_396.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_396.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_396.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_396.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_396.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_396.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_396.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_396.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_396.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_396.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_396.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_396.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_396.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_396.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_396.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_396.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_396.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_396.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_396.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_396.RC3_R.RespCol1,
  .stacks_in_396.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_396.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_396.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_396.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_396.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_396.RC3_L,
  .stacks_in_396.RC3_R.RespCol2,
  .stacks_in_396.RC3_R,
  .stacks_in_396.RC3_R.RespCol1,
  .stacks_in_396.RC3_RS.RespCol2,
  .stacks_in_396.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_396.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_396.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_396.RC4_L {
  float: left;
}
.stacks_in_396.RC4_R {
  float: left;
}
.stacks_in_396.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_396.RC4_S {
  width: 23.6%;
}
.stacks_in_396.RC4_LF,
.stacks_in_396.RC4_LL,
.stacks_in_396.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_396.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_396.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_396.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_396.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_396.RC4_S {
    width: 49%;
  }
  .stacks_in_396.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_396.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_396.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_396.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_396.RC4_R {
    float:left;
  }
  .stacks_in_396.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_396.RC4_S.RC4_Goff,
  .stacks_in_396.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_396.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_396.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_396.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_396.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_396.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC4_S.RC4_Goff,
  .stacks_in_396.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_396.RC5_L {
  float: left;
}
.stacks_in_396.RC5_R {
  float: left;
}
.stacks_in_396.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_396.RC5_S {
  width: 18.4%;
}
.stacks_in_396.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_396.RC5_LF,
.stacks_in_396.RC5_LL,
.stacks_in_396.RC5_RF,
.stacks_in_396.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_396.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_396.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_396.RC5, .stacks_in_396.RC5_S {
    width: 49%;
  }
  .stacks_in_396.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_396.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_396.RC5.RespColone5_Last,
  .stacks_in_396.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_396.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_396.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_396.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RespColone5_Last.RC5_Goff,
  .stacks_in_396.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_396.RC5.RespCol2,
  .stacks_in_396.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_396.RC5_LF.RespCol2,
  .stacks_in_396.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_396.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_396.RC5.RespColone5_First.RespCol2,
  .stacks_in_396.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_396.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_396.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_396.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_396.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_396.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_396.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_396.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_396.RC5.RC5_LL.RespCol2,
  .stacks_in_396.RC5.RC5_LF.RespCol2,
  .stacks_in_396.RC5.RC5_LL.RespCol1,
  .stacks_in_396.RC5.RC5_LF.RespCol1,
  .stacks_in_396.RC5_S.RC5_LL.RespCol2,
  .stacks_in_396.RC5_S.RC5_LF.RespCol2,
  .stacks_in_396.RC5_S.RC5_LL.RespCol1,
  .stacks_in_396.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC5.RC5_Goff,
  .stacks_in_396.RC5_S.RC5_Goff,
  .stacks_in_396.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_396.RC6_L,
.stacks_in_396.RC6_L1 {
  float: left;
}
.stacks_in_396.RC6_R,
.stacks_in_396.RC6_R1 {
  float: left;
}
.stacks_in_396.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_396.RC6_S {
  width: 15.2%;
}
.stacks_in_396.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_396.RC6_LF,
.stacks_in_396.RC6_LL,
.stacks_in_396.RC6_RF,
.stacks_in_396.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_396.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_396.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_396.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_396.RC6,
  .stacks_in_396.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_396.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_396.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_396.RC6.RC6_Goff,
  .stacks_in_396.RC6_S.RC6_Goff,
  .stacks_in_396.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_396.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_396.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_396.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_396.RC6,
  .stacks_in_396.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

#stacks_in_285 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_284 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_284 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_284 #jwresp_col2_stacks_in_284{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_284 #jwresp_col1_stacks_in_284,#stacks_in_284 #jwresp_col2_stacks_in_284{width:100%;float:none;display:block}#stacks_in_284 #jwresp_col1_stacks_in_284{margin-bottom:15px}}
#stacks_in_293 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_293 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_293 .fluid-image.unlimited img{width:100% !important}#stacks_in_293 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_293 .fluid-image.align-left img{float:left}#stacks_in_293 .fluid-image.align-right img{float:right}
#stacks_in_2257 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_2257 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_2257 .fluid-image.unlimited img{width:100% !important}#stacks_in_2257 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_2257 .fluid-image.align-left img{float:left}#stacks_in_2257 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_295 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_295 .theDivider1,
#simpleDivider_stacks_in_295 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_295 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_295.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_295.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_295 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_295.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_295.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_295.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_295.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_296 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_296 .jwresp_col{overflow:hidden;margin:0;width:45%; float:left;}#stacks_in_296 #jwresp_col2_stacks_in_296{ float:right; width:55%}@media screen and (max-width:500px){#stacks_in_296 #jwresp_col1_stacks_in_296,#stacks_in_296 #jwresp_col2_stacks_in_296{width:100%;float:none;display:block}#stacks_in_296 #jwresp_col1_stacks_in_296{margin-bottom:15px}}

#stacks_in_297 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_304 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_304 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_304 .fluid-image.unlimited img{width:100% !important}#stacks_in_304 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_304 .fluid-image.align-left img{float:left}#stacks_in_304 .fluid-image.align-right img{float:right}
#stacks_in_299 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_299 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_299 .fluid-image.unlimited img{width:100% !important}#stacks_in_299 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_299 .fluid-image.align-left img{float:left}#stacks_in_299 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_69 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_69 .theDivider1,
#simpleDivider_stacks_in_69 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_69 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_69.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_69.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_69 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_69.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_69.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_69.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_69.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_315 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_315 .jwresp_col{overflow:hidden;margin:0;width:60%; float:left;}#stacks_in_315 #jwresp_col2_stacks_in_315{ float:right; width:40%}@media screen and (max-width:500px){#stacks_in_315 #jwresp_col1_stacks_in_315,#stacks_in_315 #jwresp_col2_stacks_in_315{width:100%;float:none;display:block}#stacks_in_315 #jwresp_col1_stacks_in_315{margin-bottom:15px}}

#stacks_in_316 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_327 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_327 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_327 .fluid-image.unlimited img{width:100% !important}#stacks_in_327 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_327 .fluid-image.align-left img{float:left}#stacks_in_327 .fluid-image.align-right img{float:right}
#stacks_in_321 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_321 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_321 .fluid-image.unlimited img{width:100% !important}#stacks_in_321 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_321 .fluid-image.align-left img{float:left}#stacks_in_321 .fluid-image.align-right img{float:right}
#stacks_in_306 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_306 .jwresp_col{overflow:hidden;margin:0;width:49%; float:right;}#stacks_in_306 #jwresp_col2_stacks_in_306{ float:left; width:49%}@media screen and (max-width:500px){#stacks_in_306 #jwresp_col1_stacks_in_306,#stacks_in_306 #jwresp_col2_stacks_in_306{width:100%;float:none;display:block}#stacks_in_306 #jwresp_col1_stacks_in_306{margin-bottom:15px}}

#stacks_in_307 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_312 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_312 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_312 .fluid-image.unlimited img{width:100% !important}#stacks_in_312 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_312 .fluid-image.align-left img{float:left}#stacks_in_312 .fluid-image.align-right img{float:right}
#stacks_in_324 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_324 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_324 #jwresp_col2_stacks_in_324{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_324 #jwresp_col1_stacks_in_324,#stacks_in_324 #jwresp_col2_stacks_in_324{width:100%;float:none;display:block}#stacks_in_324 #jwresp_col1_stacks_in_324{margin-bottom:15px}}

#stacks_in_325 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_330 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_330 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_330 .fluid-image.unlimited img{width:100% !important}#stacks_in_330 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_330 .fluid-image.align-left img{float:left}#stacks_in_330 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_333 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_333 .theDivider1,
#simpleDivider_stacks_in_333 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_333 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_333.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_333.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_333 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_333.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_333.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_333.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_333.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_334 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_334 .jwresp_col{overflow:hidden;margin:0;width:49%; float:right;}#stacks_in_334 #jwresp_col2_stacks_in_334{ float:left; width:49%}@media screen and (max-width:500px){#stacks_in_334 #jwresp_col1_stacks_in_334,#stacks_in_334 #jwresp_col2_stacks_in_334{width:100%;float:none;display:block}#stacks_in_334 #jwresp_col1_stacks_in_334{margin-bottom:15px}}

#stacks_in_335 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_338 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_338 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_338 .fluid-image.unlimited img{width:100% !important}#stacks_in_338 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_338 .fluid-image.align-left img{float:left}#stacks_in_338 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_341 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_341 .theDivider1,
#simpleDivider_stacks_in_341 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_341 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_341.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_341.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_341 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_341.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_341.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_341.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_341.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_342 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_342 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_342 #jwresp_col2_stacks_in_342{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_342 #jwresp_col1_stacks_in_342,#stacks_in_342 #jwresp_col2_stacks_in_342{width:100%;float:none;display:block}#stacks_in_342 #jwresp_col1_stacks_in_342{margin-bottom:15px}}

#stacks_in_343 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_346 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_346 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_346 .fluid-image.unlimited img{width:100% !important}#stacks_in_346 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_346 .fluid-image.align-left img{float:left}#stacks_in_346 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_349 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_349 .theDivider1,
#simpleDivider_stacks_in_349 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_349 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_349.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_349.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_349 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_349.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_349.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_349.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_349.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_357 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_357 .jwresp_col{float:none} #stacks_in_357 #jwresp_col2_stacks_in_357{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_357 #jwresp_col1_stacks_in_357,#stacks_in_357 #jwresp_col3_stacks_in_357{width:32%}#stacks_in_357 #jwresp_col1_stacks_in_357{float:left}#stacks_in_357 #jwresp_col3_stacks_in_357{float:right} @media screen and (max-width:770px){#stacks_in_357 #jwresp_col1_stacks_in_357,#stacks_in_357 #jwresp_col3_stacks_in_357{margin-bottom:20px}#stacks_in_357 #jwresp_col1_stacks_in_357{width:49%}#stacks_in_357 #jwresp_col3_stacks_in_357{width:49%}#stacks_in_357 #jwresp_col2_stacks_in_357{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_357 #jwresp_col1_stacks_in_357,#stacks_in_357 #jwresp_col3_stacks_in_357,#stacks_in_357 #jwresp_col2_stacks_in_357{float:none;width:100%;display:block}#stacks_in_357 #jwresp_col1_stacks_in_357,#stacks_in_357 #jwresp_col3_stacks_in_357{margin-bottom:20px}} 

#stacks_in_351 {
	background-color: rgba(0, 0, 0, 0.00);
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_367 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_367 .theDivider1,
#simpleDivider_stacks_in_367 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_367 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_367.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_367.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_367 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_367.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_367.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_367.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_367.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_376 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_376 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_376 #jwresp_col2_stacks_in_376{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_376 #jwresp_col1_stacks_in_376,#stacks_in_376 #jwresp_col2_stacks_in_376{width:100%;float:none;display:block}#stacks_in_376 #jwresp_col1_stacks_in_376{margin-bottom:15px}}

#stacks_in_377 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_382 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_382 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_382 .fluid-image.unlimited img{width:100% !important}#stacks_in_382 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_382 .fluid-image.align-left img{float:left}#stacks_in_382 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_623 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_623 .theDivider1,
#simpleDivider_stacks_in_623 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_623 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_623.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_623.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_623 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_623.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_623.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_623.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_623.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_624 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_624 .jwresp_col{overflow:hidden;margin:0;width:49%; float:right;}#stacks_in_624 #jwresp_col2_stacks_in_624{ float:left; width:49%}@media screen and (max-width:500px){#stacks_in_624 #jwresp_col1_stacks_in_624,#stacks_in_624 #jwresp_col2_stacks_in_624{width:100%;float:none;display:block}#stacks_in_624 #jwresp_col1_stacks_in_624{margin-bottom:15px}}

#stacks_in_625 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_628 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_628 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_628 .fluid-image.unlimited img{width:100% !important}#stacks_in_628 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_628 .fluid-image.align-left img{float:left}#stacks_in_628 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_398 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_398 .theDivider1,
#simpleDivider_stacks_in_398 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_398 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_398.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_398.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_398 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_398.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_398.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_398.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_398.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_1092 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_1092 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_1092 #jwresp_col2_stacks_in_1092{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_1092 #jwresp_col1_stacks_in_1092,#stacks_in_1092 #jwresp_col2_stacks_in_1092{width:100%;float:none;display:block}#stacks_in_1092 #jwresp_col1_stacks_in_1092{margin-bottom:15px}}

#stacks_in_1093 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_1096 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_1096 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_1096 .fluid-image.unlimited img{width:100% !important}#stacks_in_1096 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_1096 .fluid-image.align-left img{float:left}#stacks_in_1096 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_1099 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_1099 .theDivider1,
#simpleDivider_stacks_in_1099 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_1099 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_1099.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_1099.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_1099 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_1099.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_1099.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_1099.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_1099.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_616 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_616 .jwresp_col{overflow:hidden;margin:0;width:49%; float:right;}#stacks_in_616 #jwresp_col2_stacks_in_616{ float:left; width:49%}@media screen and (max-width:500px){#stacks_in_616 #jwresp_col1_stacks_in_616,#stacks_in_616 #jwresp_col2_stacks_in_616{width:100%;float:none;display:block}#stacks_in_616 #jwresp_col1_stacks_in_616{margin-bottom:15px}}

#stacks_in_617 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_620 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_620 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_620 .fluid-image.unlimited img{width:100% !important}#stacks_in_620 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_620 .fluid-image.align-left img{float:left}#stacks_in_620 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_615 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_615 .theDivider1,
#simpleDivider_stacks_in_615 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_615 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_615.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_615.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_615 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_615.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_615.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_615.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_615.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_399 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_399 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_399 #jwresp_col2_stacks_in_399{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_399 #jwresp_col1_stacks_in_399,#stacks_in_399 #jwresp_col2_stacks_in_399{width:100%;float:none;display:block}#stacks_in_399 #jwresp_col1_stacks_in_399{margin-bottom:15px}}

#stacks_in_400 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_403 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_403 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_403 .fluid-image.unlimited img{width:100% !important}#stacks_in_403 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_403 .fluid-image.align-left img{float:left}#stacks_in_403 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_631 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_631 .theDivider1,
#simpleDivider_stacks_in_631 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_631 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_631.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_631.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_631 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_631.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_631.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_631.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_631.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_632 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_632 .jwresp_col{overflow:hidden;margin:0;width:49%; float:right;}#stacks_in_632 #jwresp_col2_stacks_in_632{ float:left; width:49%}@media screen and (max-width:500px){#stacks_in_632 #jwresp_col1_stacks_in_632,#stacks_in_632 #jwresp_col2_stacks_in_632{width:100%;float:none;display:block}#stacks_in_632 #jwresp_col1_stacks_in_632{margin-bottom:15px}}

#stacks_in_633 {
	background-color: rgba(0, 0, 0, 0.00);
}
#stacks_in_636 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_636 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_636 .fluid-image.unlimited img{width:100% !important}#stacks_in_636 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_636 .fluid-image.align-left img{float:left}#stacks_in_636 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_647 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_647 .theDivider1,
#simpleDivider_stacks_in_647 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_647 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_647.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_647.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_647 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_647.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_647.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_647.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_647.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_649 {
	background-color: rgba(0, 0, 0, 0.00);
}
/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_1825 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_1825.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_1825.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_1825.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_1825.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_1825.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_1825.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_1825.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_1825.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_1825.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_1825.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_1825.RC4_LF.RC4_Goff, .stacks_in_1825.RC4_LL.RC4_Goff, .stacks_in_1825.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1825.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1825.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_1825.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_1825.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_1825.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_1825.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_1825.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1825.RC5_LF.RC5_Goff, .stacks_in_1825.RC5_LL.RC5_Goff, .stacks_in_1825.RC5_RF.RC5_Goff, .stacks_in_1825.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1825.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1825.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_1825.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_1825.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_1825.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_1825.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_1825.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1825.RC6_LF.RC6_Goff,
.stacks_in_1825.RC6_LL.RC6_Goff,
.stacks_in_1825.RC6_RF.RC6_Goff,
.stacks_in_1825.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1825.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_1825.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_1825.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_1825.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_1825.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_1825.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_1825.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_1825.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_1825.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_1825.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_1825.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_1825.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_1825.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_1825.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_1825.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_1825.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_1825.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_1825.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_1825.RC3_R.RespCol1,
  .stacks_in_1825.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_1825.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_1825.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_1825.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1825.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_1825.RC3_L,
  .stacks_in_1825.RC3_R.RespCol2,
  .stacks_in_1825.RC3_R,
  .stacks_in_1825.RC3_R.RespCol1,
  .stacks_in_1825.RC3_RS.RespCol2,
  .stacks_in_1825.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_1825.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_1825.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_1825.RC4_L {
  float: left;
}
.stacks_in_1825.RC4_R {
  float: left;
}
.stacks_in_1825.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_1825.RC4_S {
  width: 23.6%;
}
.stacks_in_1825.RC4_LF,
.stacks_in_1825.RC4_LL,
.stacks_in_1825.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_1825.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_1825.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_1825.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_1825.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_1825.RC4_S {
    width: 49%;
  }
  .stacks_in_1825.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_1825.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_1825.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_1825.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_1825.RC4_R {
    float:left;
  }
  .stacks_in_1825.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_1825.RC4_S.RC4_Goff,
  .stacks_in_1825.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_1825.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_1825.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_1825.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_1825.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_1825.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC4_S.RC4_Goff,
  .stacks_in_1825.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_1825.RC5_L {
  float: left;
}
.stacks_in_1825.RC5_R {
  float: left;
}
.stacks_in_1825.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_1825.RC5_S {
  width: 18.4%;
}
.stacks_in_1825.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_1825.RC5_LF,
.stacks_in_1825.RC5_LL,
.stacks_in_1825.RC5_RF,
.stacks_in_1825.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_1825.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_1825.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_1825.RC5, .stacks_in_1825.RC5_S {
    width: 49%;
  }
  .stacks_in_1825.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_1825.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1825.RC5.RespColone5_Last,
  .stacks_in_1825.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_1825.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1825.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1825.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RespColone5_Last.RC5_Goff,
  .stacks_in_1825.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_1825.RC5.RespCol2,
  .stacks_in_1825.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_1825.RC5_LF.RespCol2,
  .stacks_in_1825.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1825.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_1825.RC5.RespColone5_First.RespCol2,
  .stacks_in_1825.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_1825.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1825.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_1825.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_1825.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_1825.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_1825.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_1825.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_1825.RC5.RC5_LL.RespCol2,
  .stacks_in_1825.RC5.RC5_LF.RespCol2,
  .stacks_in_1825.RC5.RC5_LL.RespCol1,
  .stacks_in_1825.RC5.RC5_LF.RespCol1,
  .stacks_in_1825.RC5_S.RC5_LL.RespCol2,
  .stacks_in_1825.RC5_S.RC5_LF.RespCol2,
  .stacks_in_1825.RC5_S.RC5_LL.RespCol1,
  .stacks_in_1825.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC5.RC5_Goff,
  .stacks_in_1825.RC5_S.RC5_Goff,
  .stacks_in_1825.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_1825.RC6_L,
.stacks_in_1825.RC6_L1 {
  float: left;
}
.stacks_in_1825.RC6_R,
.stacks_in_1825.RC6_R1 {
  float: left;
}
.stacks_in_1825.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_1825.RC6_S {
  width: 15.2%;
}
.stacks_in_1825.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_1825.RC6_LF,
.stacks_in_1825.RC6_LL,
.stacks_in_1825.RC6_RF,
.stacks_in_1825.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_1825.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_1825.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_1825.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_1825.RC6,
  .stacks_in_1825.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_1825.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_1825.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_1825.RC6.RC6_Goff,
  .stacks_in_1825.RC6_S.RC6_Goff,
  .stacks_in_1825.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_1825.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_1825.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_1825.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_1825.RC6,
  .stacks_in_1825.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}
#stacks_in_1827 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_1827 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_1827 .fluid-image.unlimited img{width:100% !important}#stacks_in_1827 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_1827 .fluid-image.align-left img{float:left}#stacks_in_1827 .fluid-image.align-right img{float:right}
/* @group Basics */

#videoPlayerContainerstacks_in_1831 {
	position: relative;
	z-index: 1;
}

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

#videoPlayerVideostacks_in_1831 {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}

/* @end */

/* @group Big Play Button */

#bigPlayButtonstacks_in_1831 {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 3;
	font-size: 75px;
	border: none;
	background: none;
	outline: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#bigPlayButtonstacks_in_1831 [class^="fa fa-"] {
	cursor: pointer;
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/* @end */

/* @group Video Controls */

#videoPlayerControlsstacks_in_1831 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	overflow: hidden;
	margin: 0px;
	border-radius: 0px;
}

#videoPlayerControlsstacks_in_1831 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/*  */

/*  */

/*  */

/*  */
#videoPlayerControlsstacks_in_1831 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	-ms-transition: all 1000ms;
	transition: all 1000ms;
	max-height: 0px;
	opacity: 0;
}

#videoPlayerContainerstacks_in_1831:hover #videoPlayerControlsstacks_in_1831 {
	max-height: 60px;
	opacity: 1.00;
}
/*  */

/*  */

/*  */

#videoPlayerControlsFillstacks_in_1831 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1.00);
	opacity: 0.75;
	z-index: 1;
}

#videoPlayerControlsWrapperstacks_in_1831 {
	display: flex;
	position: relative;
	z-index: 2;
}

#videoPlayerContainerstacks_in_1831:hover #videoPlayerControlsstacks_in_1831 {
	opacity: 1.00;
}

#videoPlayerControlsstacks_in_1831 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 60px;
	padding: 0;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#videoPlayerControlsstacks_in_1831 #videoPlayerPlayPausestacks_in_1831 {
	display: inline-block;
}

#videoPlayerControlsstacks_in_1831 #videoPlayerFullScreenstacks_in_1831 {
	display: inline-block;
}

/* @end */

/* @group Video Timing */

#videoPlayerVideoTimingstacks_in_1831 {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
	width: auto;
	padding: 0 15px;
	font-size: 12px;
}

#videoPlayerCurrentTimestacks_in_1831 {
	display: inline-block;
}

#videoPlayerDurationstacks_in_1831 {
	display: inline-block;
}

/*  */

/*  */

/* @end */

/* @group Seek Bar */

#progressBarstacks_in_1831 {
	flex: 1;
	padding-right: 10px;
	height: 60px;
	line-height: 60px;
	vertical-align: middle;
	display: inline-block;
}

#videoPlayerSeekBarstacks_in_1831[type=range] {
	-webkit-appearance: none;
	background: none;
	display: inline-block;
	width: 100%;
	height: 60px;
	line-height: 60px;
}

#videoPlayerSeekBarstacks_in_1831[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_1831[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#videoPlayerSeekBarstacks_in_1831[type=range]:focus {
	outline: none;
}

#videoPlayerSeekBarstacks_in_1831[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_1831[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_1831[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_1831[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_1831[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_1831[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_1831[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_1831[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_1831[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}
/* @end */

/* @group Volume */

#volumestacks_in_1831 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	transition: all ease-in-out 300ms;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 18px;
	vertical-align: middle;
}

#volumestacks_in_1831 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_1831:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 15px;
}

#volumeButtonstacks_in_1831 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_1831:hover #volumeButtonstacks_in_1831 {
	display: none;
}

#volumeMinstacks_in_1831 {
	position: absolute;
	left: 10px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumeMaxstacks_in_1831 {
	position: absolute;
	right: 5px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_1831[type=range],
#volumeMinstacks_in_1831,
#volumeMaxstacks_in_1831 {
	display: none;
}

#volumeMinstacks_in_1831,
#volumeMaxstacks_in_1831 {
	cursor: pointer;
}

#volumestacks_in_1831:hover #volume-barstacks_in_1831,
#volumestacks_in_1831:hover #volumeMinstacks_in_1831,
#volumestacks_in_1831:hover #volumeMaxstacks_in_1831 {
	display: inline;
}

#volume-barstacks_in_1831[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 60px;
	height: 60px;
}

#volume-barstacks_in_1831[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_1831[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#volume-barstacks_in_1831[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_1831[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#volume-barstacks_in_1831[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_1831[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_1831[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_1831[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_1831[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_1831[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_1831[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#volume-barstacks_in_1831[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}

/* @end */

/* @group Responsive Behavior */

@media screen and (max-width: 569px) {
	#videoPlayerControlsstacks_in_1831 #videoPlayerFullScreenstacks_in_1831,
	#videoPlayerControlsstacks_in_1831 #volumestacks_in_1831 {
		display: none;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end *//*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_1100 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_1100 .theDivider1,
#simpleDivider_stacks_in_1100 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_1100 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_1100.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_1100.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_1100 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_1100.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_1100.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_1100.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_1100.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_1101 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_1101 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_1101 #jwresp_col2_stacks_in_1101{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_1101 #jwresp_col1_stacks_in_1101,#stacks_in_1101 #jwresp_col2_stacks_in_1101{width:100%;float:none;display:block}#stacks_in_1101 #jwresp_col1_stacks_in_1101{margin-bottom:15px}}

#stacks_in_1102 {
	background-color: rgba(0, 0, 0, 0.00);
}
/* @group Basics */

#videoPlayerContainerstacks_in_1353 {
	position: relative;
	z-index: 1;
}

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

#videoPlayerVideostacks_in_1353 {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}

/* @end */

/* @group Big Play Button */

#bigPlayButtonstacks_in_1353 {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 3;
	font-size: 75px;
	border: none;
	background: none;
	outline: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#bigPlayButtonstacks_in_1353 [class^="fa fa-"] {
	cursor: pointer;
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/* @end */

/* @group Video Controls */

#videoPlayerControlsstacks_in_1353 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	overflow: hidden;
	margin: 0px;
	border-radius: 0px;
}

#videoPlayerControlsstacks_in_1353 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/*  */

/*  */

/*  */

/*  */
#videoPlayerControlsstacks_in_1353 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	-ms-transition: all 1000ms;
	transition: all 1000ms;
	max-height: 0px;
	opacity: 0;
}

#videoPlayerContainerstacks_in_1353:hover #videoPlayerControlsstacks_in_1353 {
	max-height: 60px;
	opacity: 1.00;
}
/*  */

/*  */

/*  */

#videoPlayerControlsFillstacks_in_1353 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1.00);
	opacity: 0.75;
	z-index: 1;
}

#videoPlayerControlsWrapperstacks_in_1353 {
	display: flex;
	position: relative;
	z-index: 2;
}

#videoPlayerContainerstacks_in_1353:hover #videoPlayerControlsstacks_in_1353 {
	opacity: 1.00;
}

#videoPlayerControlsstacks_in_1353 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 60px;
	padding: 0;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#videoPlayerControlsstacks_in_1353 #videoPlayerPlayPausestacks_in_1353 {
	display: inline-block;
}

#videoPlayerControlsstacks_in_1353 #videoPlayerFullScreenstacks_in_1353 {
	display: inline-block;
}

/* @end */

/* @group Video Timing */

#videoPlayerVideoTimingstacks_in_1353 {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
	width: auto;
	padding: 0 15px;
	font-size: 12px;
}

#videoPlayerCurrentTimestacks_in_1353 {
	display: inline-block;
}

#videoPlayerDurationstacks_in_1353 {
	display: inline-block;
}

/*  */

/*  */

/* @end */

/* @group Seek Bar */

#progressBarstacks_in_1353 {
	flex: 1;
	padding-right: 10px;
	height: 60px;
	line-height: 60px;
	vertical-align: middle;
	display: inline-block;
}

#videoPlayerSeekBarstacks_in_1353[type=range] {
	-webkit-appearance: none;
	background: none;
	display: inline-block;
	width: 100%;
	height: 60px;
	line-height: 60px;
}

#videoPlayerSeekBarstacks_in_1353[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_1353[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#videoPlayerSeekBarstacks_in_1353[type=range]:focus {
	outline: none;
}

#videoPlayerSeekBarstacks_in_1353[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_1353[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_1353[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_1353[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_1353[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_1353[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_1353[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_1353[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_1353[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}
/* @end */

/* @group Volume */

#volumestacks_in_1353 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	transition: all ease-in-out 300ms;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 18px;
	vertical-align: middle;
}

#volumestacks_in_1353 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_1353:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 15px;
}

#volumeButtonstacks_in_1353 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_1353:hover #volumeButtonstacks_in_1353 {
	display: none;
}

#volumeMinstacks_in_1353 {
	position: absolute;
	left: 10px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumeMaxstacks_in_1353 {
	position: absolute;
	right: 5px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_1353[type=range],
#volumeMinstacks_in_1353,
#volumeMaxstacks_in_1353 {
	display: none;
}

#volumeMinstacks_in_1353,
#volumeMaxstacks_in_1353 {
	cursor: pointer;
}

#volumestacks_in_1353:hover #volume-barstacks_in_1353,
#volumestacks_in_1353:hover #volumeMinstacks_in_1353,
#volumestacks_in_1353:hover #volumeMaxstacks_in_1353 {
	display: inline;
}

#volume-barstacks_in_1353[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 60px;
	height: 60px;
}

#volume-barstacks_in_1353[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_1353[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#volume-barstacks_in_1353[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_1353[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#volume-barstacks_in_1353[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_1353[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_1353[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_1353[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_1353[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_1353[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_1353[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#volume-barstacks_in_1353[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}

/* @end */

/* @group Responsive Behavior */

@media screen and (max-width: 569px) {
	#videoPlayerControlsstacks_in_1353 #videoPlayerFullScreenstacks_in_1353,
	#videoPlayerControlsstacks_in_1353 #volumestacks_in_1353 {
		display: none;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end */#stacks_in_2314 *,
#stacks_in_2314 *:before,
#stacks_in_2314 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_2259 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_2259 .theDivider1,
#simpleDivider_stacks_in_2259 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_2259 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_2259.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_2259.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_2259 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_2259.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_2259.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_2259.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_2259.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_2264 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_2264 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_2264 .fluid-image.unlimited img{width:100% !important}#stacks_in_2264 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_2264 .fluid-image.align-left img{float:left}#stacks_in_2264 .fluid-image.align-right img{float:right}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_2266 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_2266 .theDivider1,
#simpleDivider_stacks_in_2266 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_2266 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_2266.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_2266.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_2266 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_2266.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_2266.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_2266.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_2266.bgImageOn .theDivider1 img {
	display: block;
}

/* @group Basics */

#videoPlayerContainerstacks_in_2267 {
	position: relative;
	z-index: 1;
}

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

#videoPlayerVideostacks_in_2267 {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}

/* @end */

/* @group Big Play Button */

#bigPlayButtonstacks_in_2267 {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 3;
	font-size: 75px;
	border: none;
	background: none;
	outline: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#bigPlayButtonstacks_in_2267 [class^="fa fa-"] {
	cursor: pointer;
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/* @end */

/* @group Video Controls */

#videoPlayerControlsstacks_in_2267 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	overflow: hidden;
	margin: 0px;
	border-radius: 0px;
}

#videoPlayerControlsstacks_in_2267 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/*  */

/*  */

/*  */

/*  */
#videoPlayerControlsstacks_in_2267 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	-ms-transition: all 1000ms;
	transition: all 1000ms;
	max-height: 0px;
	opacity: 0;
}

#videoPlayerContainerstacks_in_2267:hover #videoPlayerControlsstacks_in_2267 {
	max-height: 60px;
	opacity: 1.00;
}
/*  */

/*  */

/*  */

#videoPlayerControlsFillstacks_in_2267 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1.00);
	opacity: 0.75;
	z-index: 1;
}

#videoPlayerControlsWrapperstacks_in_2267 {
	display: flex;
	position: relative;
	z-index: 2;
}

#videoPlayerContainerstacks_in_2267:hover #videoPlayerControlsstacks_in_2267 {
	opacity: 1.00;
}

#videoPlayerControlsstacks_in_2267 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 60px;
	padding: 0;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#videoPlayerControlsstacks_in_2267 #videoPlayerPlayPausestacks_in_2267 {
	display: inline-block;
}

#videoPlayerControlsstacks_in_2267 #videoPlayerFullScreenstacks_in_2267 {
	display: inline-block;
}

/* @end */

/* @group Video Timing */

#videoPlayerVideoTimingstacks_in_2267 {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
	width: auto;
	padding: 0 15px;
	font-size: 12px;
}

#videoPlayerCurrentTimestacks_in_2267 {
	display: inline-block;
}

#videoPlayerDurationstacks_in_2267 {
	display: inline-block;
}

/*  */

/*  */

/* @end */

/* @group Seek Bar */

#progressBarstacks_in_2267 {
	flex: 1;
	padding-right: 10px;
	height: 60px;
	line-height: 60px;
	vertical-align: middle;
	display: inline-block;
}

#videoPlayerSeekBarstacks_in_2267[type=range] {
	-webkit-appearance: none;
	background: none;
	display: inline-block;
	width: 100%;
	height: 60px;
	line-height: 60px;
}

#videoPlayerSeekBarstacks_in_2267[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2267[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#videoPlayerSeekBarstacks_in_2267[type=range]:focus {
	outline: none;
}

#videoPlayerSeekBarstacks_in_2267[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_2267[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2267[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_2267[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2267[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_2267[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_2267[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_2267[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_2267[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}
/* @end */

/* @group Volume */

#volumestacks_in_2267 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	transition: all ease-in-out 300ms;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 18px;
	vertical-align: middle;
}

#volumestacks_in_2267 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_2267:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 15px;
}

#volumeButtonstacks_in_2267 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_2267:hover #volumeButtonstacks_in_2267 {
	display: none;
}

#volumeMinstacks_in_2267 {
	position: absolute;
	left: 10px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumeMaxstacks_in_2267 {
	position: absolute;
	right: 5px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_2267[type=range],
#volumeMinstacks_in_2267,
#volumeMaxstacks_in_2267 {
	display: none;
}

#volumeMinstacks_in_2267,
#volumeMaxstacks_in_2267 {
	cursor: pointer;
}

#volumestacks_in_2267:hover #volume-barstacks_in_2267,
#volumestacks_in_2267:hover #volumeMinstacks_in_2267,
#volumestacks_in_2267:hover #volumeMaxstacks_in_2267 {
	display: inline;
}

#volume-barstacks_in_2267[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 60px;
	height: 60px;
}

#volume-barstacks_in_2267[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2267[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#volume-barstacks_in_2267[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_2267[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#volume-barstacks_in_2267[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2267[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_2267[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2267[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_2267[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_2267[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_2267[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#volume-barstacks_in_2267[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}

/* @end */

/* @group Responsive Behavior */

@media screen and (max-width: 569px) {
	#videoPlayerControlsstacks_in_2267 #videoPlayerFullScreenstacks_in_2267,
	#videoPlayerControlsstacks_in_2267 #volumestacks_in_2267 {
		display: none;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

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

#videoPlayerContainerstacks_in_2271 {
	position: relative;
	z-index: 1;
}

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

#videoPlayerVideostacks_in_2271 {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}

/* @end */

/* @group Big Play Button */

#bigPlayButtonstacks_in_2271 {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 3;
	font-size: 75px;
	border: none;
	background: none;
	outline: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#bigPlayButtonstacks_in_2271 [class^="fa fa-"] {
	cursor: pointer;
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/* @end */

/* @group Video Controls */

#videoPlayerControlsstacks_in_2271 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	overflow: hidden;
	margin: 0px;
	border-radius: 0px;
}

#videoPlayerControlsstacks_in_2271 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/*  */

/*  */

/*  */

/*  */
#videoPlayerControlsstacks_in_2271 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	-ms-transition: all 1000ms;
	transition: all 1000ms;
	max-height: 0px;
	opacity: 0;
}

#videoPlayerContainerstacks_in_2271:hover #videoPlayerControlsstacks_in_2271 {
	max-height: 60px;
	opacity: 1.00;
}
/*  */

/*  */

/*  */

#videoPlayerControlsFillstacks_in_2271 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1.00);
	opacity: 0.75;
	z-index: 1;
}

#videoPlayerControlsWrapperstacks_in_2271 {
	display: flex;
	position: relative;
	z-index: 2;
}

#videoPlayerContainerstacks_in_2271:hover #videoPlayerControlsstacks_in_2271 {
	opacity: 1.00;
}

#videoPlayerControlsstacks_in_2271 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 60px;
	padding: 0;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#videoPlayerControlsstacks_in_2271 #videoPlayerPlayPausestacks_in_2271 {
	display: inline-block;
}

#videoPlayerControlsstacks_in_2271 #videoPlayerFullScreenstacks_in_2271 {
	display: inline-block;
}

/* @end */

/* @group Video Timing */

#videoPlayerVideoTimingstacks_in_2271 {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
	width: auto;
	padding: 0 15px;
	font-size: 12px;
}

#videoPlayerCurrentTimestacks_in_2271 {
	display: inline-block;
}

#videoPlayerDurationstacks_in_2271 {
	display: inline-block;
}

/*  */

/*  */

/* @end */

/* @group Seek Bar */

#progressBarstacks_in_2271 {
	flex: 1;
	padding-right: 10px;
	height: 60px;
	line-height: 60px;
	vertical-align: middle;
	display: inline-block;
}

#videoPlayerSeekBarstacks_in_2271[type=range] {
	-webkit-appearance: none;
	background: none;
	display: inline-block;
	width: 100%;
	height: 60px;
	line-height: 60px;
}

#videoPlayerSeekBarstacks_in_2271[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2271[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#videoPlayerSeekBarstacks_in_2271[type=range]:focus {
	outline: none;
}

#videoPlayerSeekBarstacks_in_2271[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_2271[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2271[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_2271[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2271[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_2271[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_2271[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_2271[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_2271[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}
/* @end */

/* @group Volume */

#volumestacks_in_2271 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	transition: all ease-in-out 300ms;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 18px;
	vertical-align: middle;
}

#volumestacks_in_2271 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_2271:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 15px;
}

#volumeButtonstacks_in_2271 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_2271:hover #volumeButtonstacks_in_2271 {
	display: none;
}

#volumeMinstacks_in_2271 {
	position: absolute;
	left: 10px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumeMaxstacks_in_2271 {
	position: absolute;
	right: 5px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_2271[type=range],
#volumeMinstacks_in_2271,
#volumeMaxstacks_in_2271 {
	display: none;
}

#volumeMinstacks_in_2271,
#volumeMaxstacks_in_2271 {
	cursor: pointer;
}

#volumestacks_in_2271:hover #volume-barstacks_in_2271,
#volumestacks_in_2271:hover #volumeMinstacks_in_2271,
#volumestacks_in_2271:hover #volumeMaxstacks_in_2271 {
	display: inline;
}

#volume-barstacks_in_2271[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 60px;
	height: 60px;
}

#volume-barstacks_in_2271[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2271[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#volume-barstacks_in_2271[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_2271[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#volume-barstacks_in_2271[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2271[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_2271[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2271[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_2271[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_2271[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_2271[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#volume-barstacks_in_2271[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}

/* @end */

/* @group Responsive Behavior */

@media screen and (max-width: 569px) {
	#videoPlayerControlsstacks_in_2271 #videoPlayerFullScreenstacks_in_2271,
	#videoPlayerControlsstacks_in_2271 #volumestacks_in_2271 {
		display: none;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

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

#videoPlayerContainerstacks_in_2275 {
	position: relative;
	z-index: 1;
}

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

#videoPlayerVideostacks_in_2275 {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}

/* @end */

/* @group Big Play Button */

#bigPlayButtonstacks_in_2275 {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 3;
	font-size: 75px;
	border: none;
	background: none;
	outline: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#bigPlayButtonstacks_in_2275 [class^="fa fa-"] {
	cursor: pointer;
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/* @end */

/* @group Video Controls */

#videoPlayerControlsstacks_in_2275 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	overflow: hidden;
	margin: 0px;
	border-radius: 0px;
}

#videoPlayerControlsstacks_in_2275 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/*  */

/*  */

/*  */

/*  */
#videoPlayerControlsstacks_in_2275 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	-ms-transition: all 1000ms;
	transition: all 1000ms;
	max-height: 0px;
	opacity: 0;
}

#videoPlayerContainerstacks_in_2275:hover #videoPlayerControlsstacks_in_2275 {
	max-height: 60px;
	opacity: 1.00;
}
/*  */

/*  */

/*  */

#videoPlayerControlsFillstacks_in_2275 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1.00);
	opacity: 0.75;
	z-index: 1;
}

#videoPlayerControlsWrapperstacks_in_2275 {
	display: flex;
	position: relative;
	z-index: 2;
}

#videoPlayerContainerstacks_in_2275:hover #videoPlayerControlsstacks_in_2275 {
	opacity: 1.00;
}

#videoPlayerControlsstacks_in_2275 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 60px;
	padding: 0;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#videoPlayerControlsstacks_in_2275 #videoPlayerPlayPausestacks_in_2275 {
	display: inline-block;
}

#videoPlayerControlsstacks_in_2275 #videoPlayerFullScreenstacks_in_2275 {
	display: inline-block;
}

/* @end */

/* @group Video Timing */

#videoPlayerVideoTimingstacks_in_2275 {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
	width: auto;
	padding: 0 15px;
	font-size: 12px;
}

#videoPlayerCurrentTimestacks_in_2275 {
	display: inline-block;
}

#videoPlayerDurationstacks_in_2275 {
	display: inline-block;
}

/*  */

/*  */

/* @end */

/* @group Seek Bar */

#progressBarstacks_in_2275 {
	flex: 1;
	padding-right: 10px;
	height: 60px;
	line-height: 60px;
	vertical-align: middle;
	display: inline-block;
}

#videoPlayerSeekBarstacks_in_2275[type=range] {
	-webkit-appearance: none;
	background: none;
	display: inline-block;
	width: 100%;
	height: 60px;
	line-height: 60px;
}

#videoPlayerSeekBarstacks_in_2275[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2275[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#videoPlayerSeekBarstacks_in_2275[type=range]:focus {
	outline: none;
}

#videoPlayerSeekBarstacks_in_2275[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_2275[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2275[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_2275[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2275[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_2275[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_2275[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_2275[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_2275[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}
/* @end */

/* @group Volume */

#volumestacks_in_2275 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	transition: all ease-in-out 300ms;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 18px;
	vertical-align: middle;
}

#volumestacks_in_2275 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_2275:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 15px;
}

#volumeButtonstacks_in_2275 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_2275:hover #volumeButtonstacks_in_2275 {
	display: none;
}

#volumeMinstacks_in_2275 {
	position: absolute;
	left: 10px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumeMaxstacks_in_2275 {
	position: absolute;
	right: 5px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_2275[type=range],
#volumeMinstacks_in_2275,
#volumeMaxstacks_in_2275 {
	display: none;
}

#volumeMinstacks_in_2275,
#volumeMaxstacks_in_2275 {
	cursor: pointer;
}

#volumestacks_in_2275:hover #volume-barstacks_in_2275,
#volumestacks_in_2275:hover #volumeMinstacks_in_2275,
#volumestacks_in_2275:hover #volumeMaxstacks_in_2275 {
	display: inline;
}

#volume-barstacks_in_2275[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 60px;
	height: 60px;
}

#volume-barstacks_in_2275[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2275[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#volume-barstacks_in_2275[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_2275[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#volume-barstacks_in_2275[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2275[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_2275[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2275[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_2275[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_2275[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_2275[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#volume-barstacks_in_2275[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}

/* @end */

/* @group Responsive Behavior */

@media screen and (max-width: 569px) {
	#videoPlayerControlsstacks_in_2275 #videoPlayerFullScreenstacks_in_2275,
	#videoPlayerControlsstacks_in_2275 #volumestacks_in_2275 {
		display: none;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

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

#videoPlayerContainerstacks_in_2279 {
	position: relative;
	z-index: 1;
}

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

#videoPlayerVideostacks_in_2279 {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}

/* @end */

/* @group Big Play Button */

#bigPlayButtonstacks_in_2279 {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 3;
	font-size: 75px;
	border: none;
	background: none;
	outline: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#bigPlayButtonstacks_in_2279 [class^="fa fa-"] {
	cursor: pointer;
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/* @end */

/* @group Video Controls */

#videoPlayerControlsstacks_in_2279 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	overflow: hidden;
	margin: 0px;
	border-radius: 0px;
}

#videoPlayerControlsstacks_in_2279 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/*  */

/*  */

/*  */

/*  */
#videoPlayerControlsstacks_in_2279 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	-ms-transition: all 1000ms;
	transition: all 1000ms;
	max-height: 0px;
	opacity: 0;
}

#videoPlayerContainerstacks_in_2279:hover #videoPlayerControlsstacks_in_2279 {
	max-height: 60px;
	opacity: 1.00;
}
/*  */

/*  */

/*  */

#videoPlayerControlsFillstacks_in_2279 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1.00);
	opacity: 0.75;
	z-index: 1;
}

#videoPlayerControlsWrapperstacks_in_2279 {
	display: flex;
	position: relative;
	z-index: 2;
}

#videoPlayerContainerstacks_in_2279:hover #videoPlayerControlsstacks_in_2279 {
	opacity: 1.00;
}

#videoPlayerControlsstacks_in_2279 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 60px;
	padding: 0;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#videoPlayerControlsstacks_in_2279 #videoPlayerPlayPausestacks_in_2279 {
	display: inline-block;
}

#videoPlayerControlsstacks_in_2279 #videoPlayerFullScreenstacks_in_2279 {
	display: inline-block;
}

/* @end */

/* @group Video Timing */

#videoPlayerVideoTimingstacks_in_2279 {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
	width: auto;
	padding: 0 15px;
	font-size: 12px;
}

#videoPlayerCurrentTimestacks_in_2279 {
	display: inline-block;
}

#videoPlayerDurationstacks_in_2279 {
	display: inline-block;
}

/*  */

/*  */

/* @end */

/* @group Seek Bar */

#progressBarstacks_in_2279 {
	flex: 1;
	padding-right: 10px;
	height: 60px;
	line-height: 60px;
	vertical-align: middle;
	display: inline-block;
}

#videoPlayerSeekBarstacks_in_2279[type=range] {
	-webkit-appearance: none;
	background: none;
	display: inline-block;
	width: 100%;
	height: 60px;
	line-height: 60px;
}

#videoPlayerSeekBarstacks_in_2279[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2279[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#videoPlayerSeekBarstacks_in_2279[type=range]:focus {
	outline: none;
}

#videoPlayerSeekBarstacks_in_2279[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_2279[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2279[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_2279[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2279[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_2279[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_2279[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_2279[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_2279[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}
/* @end */

/* @group Volume */

#volumestacks_in_2279 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	transition: all ease-in-out 300ms;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 18px;
	vertical-align: middle;
}

#volumestacks_in_2279 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_2279:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 15px;
}

#volumeButtonstacks_in_2279 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_2279:hover #volumeButtonstacks_in_2279 {
	display: none;
}

#volumeMinstacks_in_2279 {
	position: absolute;
	left: 10px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumeMaxstacks_in_2279 {
	position: absolute;
	right: 5px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_2279[type=range],
#volumeMinstacks_in_2279,
#volumeMaxstacks_in_2279 {
	display: none;
}

#volumeMinstacks_in_2279,
#volumeMaxstacks_in_2279 {
	cursor: pointer;
}

#volumestacks_in_2279:hover #volume-barstacks_in_2279,
#volumestacks_in_2279:hover #volumeMinstacks_in_2279,
#volumestacks_in_2279:hover #volumeMaxstacks_in_2279 {
	display: inline;
}

#volume-barstacks_in_2279[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 60px;
	height: 60px;
}

#volume-barstacks_in_2279[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2279[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#volume-barstacks_in_2279[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_2279[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#volume-barstacks_in_2279[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2279[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_2279[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2279[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_2279[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_2279[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_2279[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#volume-barstacks_in_2279[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}

/* @end */

/* @group Responsive Behavior */

@media screen and (max-width: 569px) {
	#videoPlayerControlsstacks_in_2279 #videoPlayerFullScreenstacks_in_2279,
	#videoPlayerControlsstacks_in_2279 #volumestacks_in_2279 {
		display: none;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

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

#videoPlayerContainerstacks_in_2283 {
	position: relative;
	z-index: 1;
}

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

#videoPlayerVideostacks_in_2283 {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}

/* @end */

/* @group Big Play Button */

#bigPlayButtonstacks_in_2283 {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 3;
	font-size: 75px;
	border: none;
	background: none;
	outline: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#bigPlayButtonstacks_in_2283 [class^="fa fa-"] {
	cursor: pointer;
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/* @end */

/* @group Video Controls */

#videoPlayerControlsstacks_in_2283 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	overflow: hidden;
	margin: 0px;
	border-radius: 0px;
}

#videoPlayerControlsstacks_in_2283 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/*  */

/*  */

/*  */

/*  */
#videoPlayerControlsstacks_in_2283 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	-ms-transition: all 1000ms;
	transition: all 1000ms;
	max-height: 0px;
	opacity: 0;
}

#videoPlayerContainerstacks_in_2283:hover #videoPlayerControlsstacks_in_2283 {
	max-height: 60px;
	opacity: 1.00;
}
/*  */

/*  */

/*  */

#videoPlayerControlsFillstacks_in_2283 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1.00);
	opacity: 0.75;
	z-index: 1;
}

#videoPlayerControlsWrapperstacks_in_2283 {
	display: flex;
	position: relative;
	z-index: 2;
}

#videoPlayerContainerstacks_in_2283:hover #videoPlayerControlsstacks_in_2283 {
	opacity: 1.00;
}

#videoPlayerControlsstacks_in_2283 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 60px;
	padding: 0;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#videoPlayerControlsstacks_in_2283 #videoPlayerPlayPausestacks_in_2283 {
	display: inline-block;
}

#videoPlayerControlsstacks_in_2283 #videoPlayerFullScreenstacks_in_2283 {
	display: inline-block;
}

/* @end */

/* @group Video Timing */

#videoPlayerVideoTimingstacks_in_2283 {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
	width: auto;
	padding: 0 15px;
	font-size: 12px;
}

#videoPlayerCurrentTimestacks_in_2283 {
	display: inline-block;
}

#videoPlayerDurationstacks_in_2283 {
	display: inline-block;
}

/*  */

/*  */

/* @end */

/* @group Seek Bar */

#progressBarstacks_in_2283 {
	flex: 1;
	padding-right: 10px;
	height: 60px;
	line-height: 60px;
	vertical-align: middle;
	display: inline-block;
}

#videoPlayerSeekBarstacks_in_2283[type=range] {
	-webkit-appearance: none;
	background: none;
	display: inline-block;
	width: 100%;
	height: 60px;
	line-height: 60px;
}

#videoPlayerSeekBarstacks_in_2283[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2283[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#videoPlayerSeekBarstacks_in_2283[type=range]:focus {
	outline: none;
}

#videoPlayerSeekBarstacks_in_2283[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_2283[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2283[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_2283[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_2283[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_2283[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_2283[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_2283[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_2283[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}
/* @end */

/* @group Volume */

#volumestacks_in_2283 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	transition: all ease-in-out 300ms;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 18px;
	vertical-align: middle;
}

#volumestacks_in_2283 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_2283:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 15px;
}

#volumeButtonstacks_in_2283 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_2283:hover #volumeButtonstacks_in_2283 {
	display: none;
}

#volumeMinstacks_in_2283 {
	position: absolute;
	left: 10px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumeMaxstacks_in_2283 {
	position: absolute;
	right: 5px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_2283[type=range],
#volumeMinstacks_in_2283,
#volumeMaxstacks_in_2283 {
	display: none;
}

#volumeMinstacks_in_2283,
#volumeMaxstacks_in_2283 {
	cursor: pointer;
}

#volumestacks_in_2283:hover #volume-barstacks_in_2283,
#volumestacks_in_2283:hover #volumeMinstacks_in_2283,
#volumestacks_in_2283:hover #volumeMaxstacks_in_2283 {
	display: inline;
}

#volume-barstacks_in_2283[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 60px;
	height: 60px;
}

#volume-barstacks_in_2283[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2283[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#volume-barstacks_in_2283[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_2283[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#volume-barstacks_in_2283[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2283[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_2283[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_2283[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_2283[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_2283[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_2283[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#volume-barstacks_in_2283[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}

/* @end */

/* @group Responsive Behavior */

@media screen and (max-width: 569px) {
	#videoPlayerControlsstacks_in_2283 #videoPlayerFullScreenstacks_in_2283,
	#videoPlayerControlsstacks_in_2283 #volumestacks_in_2283 {
		display: none;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end */