@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);
  }
}

/* Edit Mode */


/* Preview */


.vast_hide.vast_video_player,
.vast_standby.vast_video_player{
  opacity: 0;
}


.vast_video_wrapper{
  position: relative;
  background-size: cover;
  overflow: hidden;
}
.vast_video_wrapper:before{
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.vast_video_tint{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: scale(1.05);
}
.vast_video_slice{
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.vast_video_background{
  background-position: center;
  background-size: cover;
  position: absolute;
  transform: scale(1.05);
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  bottom: 0;
  transition: opacity 500ms 500ms;
}
[data-status="ready"] ~ .vast_video_background{
  opacity: 0;
}
[data-status="ready"].vast_hide ~ .vast_video_background{
  opacity: 1;
}


#vast-log{
  position: fixed;
  width: 200px;
  bottom: 40px;
  right: 40px;
  background: #fff;
  color: #000;
  padding: 0 0 5px;
  border-radius: 9px;
  box-shadow: 0 1px 4px -2px #000;
  z-index: 10000;
  overflow: hidden;
}
#vast-log p{
  font-size: 13px;
  padding: 7px 20px;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
}
#vast-log p ~ p{
  border-top: 1px solid #eee;
}
#vast-log p#log-header{
  font-weight: bolder;
  text-align: center;
}
.vast-icon{
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 3px;

  border: 2px solid #f3f3f3; /* Light grey */
  border-top: 2px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.vast-loaded .vast-icon{
  background: rgb(255, 221, 7);
  animation: none;
  border: none;
}
.vast-loaded.vast-pause .vast-icon{
  background: rgb(206, 205, 204);
  animation: none;
  border: none;
}
.vast-loaded.vast-play .vast-icon{
  background: transparent;
  width: 0; 
  height: 0;
  border-radius: 0;
  animation: none;
  border-right: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid rgb(85, 211, 94);
}
.vast-pause{
  opacity: 0.4;
}
/* Depth Base */

.depth_out h2,.depth_out p,.depth_out a{margin:0;padding:0;border: 0;line-height:1.4;}
.depth_out hr:before,.depth_out hr:after,.depth_out .content_in .stacksEmptyFiller{display: none}

.depth_in,
header .depth_theme_limit,
footer .depth_theme_limit{
  
  max-width: 1200px;
  
}
main .depth_theme_limit{
  max-width: 100%;
  padding: 0;
}
.depth_limit{
  margin: 0 auto;
}

figure.depth_theme{height: 0;display: none;}

.nfont{
	font-family: 'Raleway', sans-serif !important;
}
h2.nfont,
.sub_heading.nfont{
	font-family: 'Josefin Sans', sans-serif !important;
}
header.depth_theme,
main.depth_theme h1,
main.depth_theme h2,
main.depth_theme h3,
main.depth_theme h4,
main.depth_theme h5,
main.depth_theme h6{
  font-family: 'Josefin Sans', sans-serif !important;
}
.depth_in a{text-decoration: none;}
.depth_in{
  font-size: 15px;
  line-height: 1.4;}

/* 2 Col Spacing */
.depth_section{
  margin-bottom: 20px;
}



.depth_out img{max-width: 100%}

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

.depth_out .cf:after {content:"";display:table;clear:both;}
.depth_out .exp{position:absolute;top:0;left:0;bottom:0;right:0;}

@media screen and (min-width: 770px){
  /* 2 Col Spacing */
  .depth_row .s3_column_left .depth_section{
    margin-right: 10.000000px;
  }
  .depth_row .s3_column_right .depth_section{
    margin-left: 10.000000px;
  }
  /* 3 Col Spacing */
  .depth_row.three_col .s3_column_left .depth_section{
    margin-right: 13.320000px;
  }
  .depth_row.three_col .s3_column_center .depth_section{
    margin-left: 6.660000px;
    margin-right: 6.660000px;
  }
  .depth_row.three_col .s3_column_right .depth_section{
    margin-left: 13.320000px;
  }
  /* 4 Col Spacing (1/4) */
  .depth_row .s3_column_4:first-child .depth_section{
    margin-right: 15.000000px;
    margin-left: 0;
  }
  /* 4 Col Spacing (2/4) */
  .depth_row .s3_column_4 + .s3_column_4 .depth_section{
    margin-right: 10.000000px;
    margin-left: 5.000000px;
  }
  /* 4 Col Spacing (3/4) */
  .depth_row .s3_column_4 + .s3_column_4 + .s3_column_4 .depth_section{
    margin-right: 5.000000px;
    margin-left: 10.000000px;
  }
  /* 4 Col Spacing (4/4) */
  .depth_row .s3_column_4 + .s3_column_4 + .s3_column_4 + .s3_column_4 .depth_section{
    margin-left: 15.000000px;
    margin-right: 0;
  }
  /* Flex Equal Height/Centering */
  
  .s3_row.depth_row,
  .depth_row .s3_column,
  .s3_row.depth_row .depth_out,
  .s3_row.depth_row .depth_out > div,
  .s3_row.depth_row .depth_wrapper,
  .s3_row.depth_row .content_out,
  .s3_row.depth_row .depth_image *{
    flex: 1;
    display: flex !important;
  }
  .s3_row.depth_row .content_out,
  .s3_row.depth_row .content_in{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .depth_ie .s3_row.depth_row,
  .depth_ie .depth_row .s3_column,
  .s3_row.depth_row .depth_ie .depth_out,
  .s3_row.depth_row .depth_ie .depth_out > div,
  .s3_row.depth_row .depth_ie .depth_wrapper,
  .s3_row.depth_row .depth_ie .content_out,
  .s3_row.depth_row .depth_ie .depth_image *{
    flex: auto !important;
    display: block !important;
  }
}


.content_flex {position: static;}

.s3_row.depth_row .content_flex {
  flex: 1;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
}

/* Edit Mode */


/* Animations */


.depth_fx .depth_image,
.depth_fx .depth_tint,
.depth_fx .depth_gradient,
.depth_fx .content_tint,
.depth_fx p.sub_heading,
.depth_fx .heading_out .stacks_out,
.depth_fx p.main_content,
.depth_fx .depth_aside,
.depth_fx .heading_out h2{ opacity: 0; }

.depth_fx.depth_ie .depth_image,
.depth_fx.depth_ie .depth_tint,
.depth_fx.depth_ie .depth_gradient,
.depth_fx.depth_ie .content_tint,
.depth_fx.depth_ie p.sub_heading,
.depth_fx.depth_ie .heading_out .stacks_out,
.depth_fx.depth_ie p.main_content,
.depth_fx.depth_ie .depth_aside,
.depth_fx.depth_ie .heading_out h2{ opacity: 1; }


.depth_inview.slow_fadeIn.depth_fx .depth_image,
.depth_inview.slow_fadeIn.depth_fx .depth_tint,
.depth_inview.slow_fadeIn.depth_fx .content_tint,
.depth_inview.slow_fadeIn.depth_fx .depth_gradient{ animation: nbanner_fadein .7s both; }
.depth_inview.slow_fadeIn.depth_fx .heading_out{ animation: heading_border_color 1s both; }
.depth_inview.slow_fadeIn.depth_fx p.super_heading,
.depth_inview.slow_fadeIn.depth_fx .heading_out h2{ animation: nbanner_fadein 1s .25s both; }
.depth_inview.slow_fadeIn.depth_fx p.sub_heading,
.depth_inview.slow_fadeIn.depth_fx .heading_out .stacks_out{ animation: nbanner_fadein 1s .5s both; }
.depth_inview.slow_fadeIn.depth_fx p.main_content,
.depth_inview.slow_fadeIn.depth_fx .depth_aside{	animation: nbanner_fadein 1s .75s both; }
.depth_inview.slow_fadeIn.depth_fx a.depth_button{	animation: nbanner_fadein 1s 1s backwards; }
.depth_inview.slow_fadeIn.depth_fx p.sub_content{ animation: nbanner_fadein 1s 1.25s backwards; }
.depth_inview.slow_fadeIn.depth_fx hr.hr_top_header{	animation: hr_top_header 1s .5s backwards; }
.depth_inview.slow_fadeIn.depth_fx hr.hr_bottom_header{ animation: hr_bottom_header 1s .5s backwards; }
.depth_inview.slow_fadeIn.depth_fx hr.hr_bottom_content{	animation: hr_bottom_content 1s .5s backwards; }

.depth_inview.steady_fadeIn.depth_fx .depth_image,
.depth_inview.steady_fadeIn.depth_fx .depth_tint,
.depth_inview.steady_fadeIn.depth_fx .content_tint,
.depth_inview.steady_fadeIn.depth_fx .depth_gradient{ animation: nbanner_fadein .5s both; }
.depth_inview.steady_fadeIn.depth_fx .heading_out{ animation: heading_border_color .7s both; }
.depth_inview.steady_fadeIn.depth_fx p.super_heading,
.depth_inview.steady_fadeIn.depth_fx .heading_out h2{ animation: nbanner_fadein .7s .15s both; }
.depth_inview.steady_fadeIn.depth_fx p.sub_heading,
.depth_inview.steady_fadeIn.depth_fx .heading_out .stacks_out{ animation: nbanner_fadein .7s .35s both; }
.depth_inview.steady_fadeIn.depth_fx p.main_content,
.depth_inview.steady_fadeIn.depth_fx .depth_aside{	animation: nbanner_fadein .7s .5s both; }
.depth_inview.steady_fadeIn.depth_fx a.depth_button{	animation: nbanner_fadein .7s .65s backwards; }
.depth_inview.steady_fadeIn.depth_fx p.sub_content{ animation: nbanner_fadein .7s .8s backwards; }
.depth_inview.steady_fadeIn.depth_fx hr.hr_top_header{	animation: hr_top_header .7s .25s backwards; }
.depth_inview.steady_fadeIn.depth_fx hr.hr_bottom_header{ animation: hr_bottom_header .7s .25s backwards; }
.depth_inview.steady_fadeIn.depth_fx hr.hr_bottom_content{	animation: hr_bottom_content .7s .25s backwards; }

.depth_inview.fast_fadeIn.depth_fx .depth_image,
.depth_inview.fast_fadeIn.depth_fx .depth_tint,
.depth_inview.fast_fadeIn.depth_fx .content_tint,
.depth_inview.fast_fadeIn.depth_fx .depth_gradient{ animation: nbanner_fadein .3s both; }
.depth_inview.fast_fadeIn.depth_fx .heading_out{ animation: heading_border_color .4s both; }
.depth_inview.fast_fadeIn.depth_fx p.super_heading,
.depth_inview.fast_fadeIn.depth_fx .heading_out h2{ animation: nbanner_fadein .4s .15s both; }
.depth_inview.fast_fadeIn.depth_fx p.sub_heading,
.depth_inview.fast_fadeIn.depth_fx .heading_out .stacks_out{ animation: nbanner_fadein .4s .35s both; }
.depth_inview.fast_fadeIn.depth_fx p.main_content,
.depth_inview.fast_fadeIn.depth_fx .depth_aside{	animation: nbanner_fadein .4s .5s both; }
.depth_inview.fast_fadeIn.depth_fx a.depth_button{	animation: nbanner_fadein .4s .65s backwards; }
.depth_inview.fast_fadeIn.depth_fx p.sub_content{ animation: nbanner_fadein .4s .8s backwards; }
.depth_inview.fast_fadeIn.depth_fx hr.hr_top_header{	animation: hr_top_header .4s .25s backwards; }
.depth_inview.fast_fadeIn.depth_fx hr.hr_bottom_header{ animation: hr_bottom_header .4s .25s backwards; }
.depth_inview.fast_fadeIn.depth_fx hr.hr_bottom_content{	animation: hr_bottom_content .4s .25s backwards; }


@-webkit-keyframes heading_border_color {
  from {border-color: transparent;}
  to {border-color: ;}}
@keyframes nbanner_fadein {
  from {border-color: transparent;}
  to {border-color: ;}}

@-webkit-keyframes nbanner_fadein {
  from {opacity: 0;}
  to {opacity: 1;}}
@keyframes nbanner_fadein {
  from {opacity: 0;}
  to {opacity: 1;}}

@-webkit-keyframes nbanner_bg_fadein {
  from {background-color: transparent;}
  to {background-color: inherit;}}
@keyframes nbanner_bg_fadein {
  from {background-color: transparent;}
  to {background-color: inherit;}}

@-webkit-keyframes hr_top_header {
  from {width: 0; opacity: 0;}
  to {opacity: 1; width: %;}}
@keyframes hr_top_header {
  from {width: 0; opacity: 0;}
  to {opacity: 1; width: %;}}


@-webkit-keyframes hr_bottom_header {
  from {width: 0; opacity: 0;}
  to {opacity: 1; width: %;}}
@keyframes hr_bottom_header {
  from {width: 0; opacity: 0;}
  to {opacity: 1; width: %;}}


@-webkit-keyframes hr_bottom_content {
  from {width: 0; opacity: 0;}
  to {opacity: 1; width: %;}}
@keyframes hr_bottom_content {
  from {width: 0; opacity: 0;}
  to {opacity: 1; width: %;}}/*
1.5.0.1
- hotfix: display bug with dropdown items in edit mode
*/
#stacks_in_803 {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#stacks_in_803 > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus {
  outline-style:none;
  box-shadow:none;
  border-color:transparent;
}

#stacks_in_803 .clean-menu-extra {
  display: none;
}
#clean-menu_stacks_in_803 .clean-menu-logo .cm-logo-right {
  white-space: nowrap;
}
#clean-menu_stacks_in_803 .clean-menu-logo .cm-logo-right * {
  margin: 0;
  display: flex;
  align-self: center;
}
#clean-menu-full_stacks_in_803.cm-full-menu li > a:hover,
#clean-menu_stacks_in_803 li > a:hover {
  text-decoration: none;
}

#stacks_in_803 nav {
  border: 0px solid transparent;
}
#clean-menu_stacks_in_803 {
  max-width: 1240px;
  box-sizing: border-box;
  padding: 0px 20px;
  
  margin: 0 auto;
  
}
/* compatability fixes */
#clean-menu_stacks_in_803 ul {
  margin: 0;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
#clean-menu_stacks_in_803 ul li > a:after,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a:after {
  align-self: center;
}
/* --- */
#clean-menu-full_stacks_in_803.cm-full-menu,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul {
  position: absolute;
  top: 0;
  left: 0;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul {
  text-decoration: none;
  list-style: none;
  margin: 0;
  display: block;
  padding: 0px 0px;
  background: transparent;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul {
  padding: 6px 0px;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul li,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li {
  display: block;
  margin: 0;
  padding: 0;
  float: none;
  background: transparent;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a {
  padding: 5px 20px;
  margin: 0;
  line-height: 1;
  background: transparent;
  display: inline-block;
}
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li.clean-menu-dropdown > ul {
  padding: 6px 0px;
}
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a {
  padding: 6px 20px;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul > li > a {
  font-weight: bold;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul > li > .cm-custom-content {
  padding: 4px 20px 4px 20px;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul ul > li > .cm-custom-content {
  padding: 4px 20px 4px 30px;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul > li.cm-grouped-item > .cm-custom-content  {
  padding: 4px 20px 4px 0px;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul ul > li > a,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul ul {
  padding: 6px 20px;
  font-weight: normal;
  line-height: 1;
  height: auto;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul > div,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul > div {
  padding: 20px;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul > div a,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul > div a {
  display: block;
  padding: 0;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul ul,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul ul {
  display: block;
  padding: 0px 0px 10px 10px;
  margin: 0;
}
#clean-menu-full_stacks_in_803.cm-full-menu,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul {
  position: absolute;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: -webkit-transform 300ms ease, opacity 300ms ease;
  transition: -webkit-transform 300ms ease, opacity 300ms ease;
  transition: transform 300ms ease, opacity 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease, opacity 300ms ease;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  min-width: 250px;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.4);
}
#clean-menu-full_stacks_in_803.cm-full-menu.clean-menu-active {
  -webkit-transform: translate(0px, 5px);
  transform: translate(0px, 5px);
  pointer-events: all;
  opacity: 1;
}
#clean-menu-full_stacks_in_803.cm-full-menu {
  height: 0;
  overflow: hidden;
}
#clean-menu-full_stacks_in_803.cm-full-menu.clean-menu-active {
  height: auto;
}

#clean-menu-full_stacks_in_803.cm-full-menu {
  -webkit-transform: translate(-50%, 50px);
  transform: translate(-50%, 50px);
}
#clean-menu-full_stacks_in_803.cm-full-menu.clean-menu-active {
  -webkit-transform: translate(-50%, 5px);
  transform: translate(-50%, 5px);
}



#clean-menu-full_stacks_in_803.cm-full-menu.clean-menu-active ul {
  pointer-events: all;
  opacity: 1;
}
#clean-menu-full_stacks_in_803 ul {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  -webkit-transition: opacity 450ms ease;
  transition: opacity 450ms ease;
}
#clean-menu-full_stacks_in_803.clean-menu-active ul {
  opacity: 1;
  pointer-events: all;
}
.cm-toggle {
  width: 30px;
  height: 28px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
.cm-toggle span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #333;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.cm-toggle span:nth-child(1) {
  top: 0px;
}
.cm-toggle span:nth-child(2),.cm-toggle span:nth-child(3) {
  top: 10px;
}
.cm-toggle span:nth-child(4) {
  top: 20px;
}
.cm-toggle.open span:nth-child(1) {
  opacity: 0;
}
.cm-toggle.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cm-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cm-toggle.open span:nth-child(4) {
  opacity: 0;
}



#clean-menu_stacks_in_803 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#clean-menu_stacks_in_803 > div {
  align-self: center;
}
#clean-menu_stacks_in_803 .clean-menu-full .cm-menu-toggle {
  width: 30px;
  height: 25px;
  box-sizing: border-box;
  padding: 0;
/*  border: 1px solid #000;*/
  border-radius: 3px;
  cursor: pointer;
}
#clean-menu_stacks_in_803 > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 10px 0;
  flex-grow: 1;
  transition: margin 300ms ease;
}
#clean-menu_stacks_in_803 .clean-menu-logo {
  max-width: 250px;
  min-width: 250px;
  margin: 0;
}
#clean-menu_stacks_in_803 .clean-menu-logo .cm-logo-wrap {
  max-width: 250px;
  min-width: 250px;
  -webkit-box-flex: none;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: center;
}
#clean-menu_stacks_in_803 .clean-menu-logo a {
  text-decoration: none;
  display: block;
}
/*
div[tag="slice"] > .mez > #stacks_in_803.com_onelittledesigner_stacks_Clean_Menu_stack > .clean-menu .clean-menu-logo {
  width: 300px; max-width: 300px;
}
*/
#clean-menu_stacks_in_803 .clean-menu-logo > div > div {
  align-self: center;
}
#clean-menu_stacks_in_803 .clean-menu-logo .cm-logo-left {
  max-width: 73px;
  
  
  max-width: 9999px;
  
  margin: 10px 0;
}
div[tag="slice"] > .mez > #stacks_in_803.com_onelittledesigner_stacks_Clean_Menu_stack > .clean-menu .clean-menu-logo .cm-logo-left  {
  max-width: 128px;
  
  max-width: 9999px;
  
}
#clean-menu_stacks_in_803 .clean-menu-logo .cm-logo-right {
  
  display: none;
  
  margin: 10px 0;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  
  
  display: -ms-flexbox;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  
  -ms-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  text-decoration: none;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul > div {
  display: none;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul ul {
  display: none;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li {
  margin: 0 15px;
  align-self: center;
  line-height: 1;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li:first-child {
  margin-left: 0;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li:last-child {
  margin-right: 0;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li:last-child.cm-group-True {
  margin: 0;
}


div[tag="slice"] > .mez > #stacks_in_803.com_onelittledesigner_stacks_Clean_Menu_stack > .clean-menu .clean-menu-top-level ul li {
  margin: 0 0 0 15px;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li > a,
#clean-menu_stacks_in_803 .clean-menu-top-level ul li > a:visited {
  transition: color 150ms ease;
  text-decoration: none;
  color: rgba(240, 242, 241, 1.00);
  font-size: 14px;
  
  line-height: 25px;
  align-items: center;
  padding: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a {
  font-size: 14px;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li > a,
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a {
  font-family: Raleway;
}
#clean-menu-full_stacks_in_803.cm-full-menu > ul > li > a {
  
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li > a svg,
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a svg,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a svg {
  fill: rgba(240, 242, 241, 1.00);
  align-self: center;
  vertical-align: middle;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a{
  transition: color 150ms ease;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li.cm-grouped-item,
#clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-grouped-item,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li.cm-grouped-item {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-grouped-item,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li.cm-grouped-item {
  padding: 5px 20px;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li.cm-grouped-item > a,
#clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-grouped-item > a {
  display: inline-block;
  margin-left: 8px;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li.cm-grouped-item > a {
  padding: 0;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li.cm-grouped-item > a:first-child,
#clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-grouped-item > a:first-child {
  margin-left: 0px;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-grouped-item > a {
  padding: 4px 30px 4px 0;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li > a ion-icon, #clean-menu_stacks_in_803 .clean-menu-top-level ul li > a i,
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a ion-icon, #clean-menu-full_stacks_in_803.cm-full-menu ul li > a i {
  font-size: 25px;
  line-height: 25px;
  
  font-size: 14px;
  line-height: 14px;
  

}
#stacks_in_803 li > a svg,
#clean-menu_stacks_in_803 .clean-menu-top-level ul li > a svg,
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a svg,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a svg {
  
  width: 14px;
  height: 14px;
  
}

#clean-menu_stacks_in_803 .clean-menu-top-level ul li > a:hover {
  transition: color 150ms ease;
  text-decoration: none;
  color: rgba(243, 213, 65, 1.00);
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li > a:hover svg,
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a:hover svg {
  fill: rgba(243, 213, 65, 1.00);
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li > a.cm-heading {
  pointer-events: none;
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li.cm-current > a {
  transition: color 150ms ease;
  text-decoration: none;
  color: rgba(234, 249, 236, 1.00);
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li.cm-current > a svg,
#clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-current > a svg {
  fill: rgba(234, 249, 236, 1.00);
}
#clean-menu_stacks_in_803 .cm-toggle span {
  background: #D93411;
}
#clean-menu_stacks_in_803 h1, #clean-menu_stacks_in_803 h2, #clean-menu_stacks_in_803 h3, #clean-menu_stacks_in_803 h4, #clean-menu_stacks_in_803 h5, #clean-menu_stacks_in_803 h6, #clean-menu_stacks_in_803 .layouts-text, #clean-menu_stacks_in_803 p {
  color: rgba(0, 0, 0, 1.00);
  font-size: inherit;
  margin: 0;
}
#clean-menu-full_stacks_in_803.cm-full-menu,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul {
  background: rgba(235, 235, 236, 1.00);
}
#clean-menu-full_stacks_in_803.cm-full-menu > ul > li,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul > li {
  border-bottom: 1px solid rgba(255,255,255,0.15)
}
#clean-menu-full_stacks_in_803.cm-full-menu > ul > li:last-child,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul > li:last-child {
  border-bottom: 0px solid transparent;
}
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a,
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a:visited,
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a svg,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a:visited,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a svg,
#clean-menu-full_stacks_in_803.cm-full-menu ul ul li:before {
  color: rgba(0, 0, 0, 0.40);
  fill: rgba(0, 0, 0, 0.40);
}
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a:hover,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a:hover,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a:hover svg {
  color: rgba(0, 0, 0, 0.20);
  fill:  rgba(0, 0, 0, 0.20);
}
/* #clean-menu-full_stacks_in_803.cm-full-menu ul li > a.cm-heading:hover,
#clean-menu-full_stacks_in_803.cm-full-menu ul li > a.cm-heading:hover svg,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a.cm-heading:hover {
  color: rgba(0, 0, 0, 0.40);
  cursor: default;
} */
#clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-current > a,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li.cm-current > a,
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li.cm-current > a svg {
  color: rgba(0, 0, 0, 0.60);
  fill:  rgba(0, 0, 0, 0.60);
}
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > a.parent:after {
  border-color: rgba(240, 242, 241, 1.00);
}
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > a.parent:hover:after {
  border-color: rgba(243, 213, 65, 1.00);
}
/* #clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > a.cm-heading.parent:hover:after {
  border-color: rgba(240, 242, 241, 1.00);
} */
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > a.parent.cm-current:after {
  border-color: rgba(234, 249, 236, 1.00);
}
.disable-parents #clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a.parent:hover:after,
.disable-parents #clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul li > a.parent:hover,
#clean-menu-full_stacks_in_803.cm-full-menu.disable-parents  ul li > a.parent:hover {
  color: rgba(0, 0, 0, 0.40);
  border-color: rgba(0, 0, 0, 0.40);
}
.disable-parents #clean-menu_stacks_in_803 .clean-menu-top-level ul li > a.parent:hover,
.disable-parents #clean-menu_stacks_in_803 .clean-menu-top-level ul li > a.parent:hover:after {
  color: rgba(240, 242, 241, 1.00);
  border-color: rgba(240, 242, 241, 1.00);
}




#clean-menu_stacks_in_803 .clean-menu-logo .cm-logo-wrap {
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#clean-menu_stacks_in_803 .clean-menu-full {
  width: 40px;
  -webkit-box-flex: none;
  -ms-flex: none;
  flex: none;
}
#clean-menu_stacks_in_803 .clean-menu-logo {
  width: auto;
  max-width: 9999px;
}
#clean-menu_stacks_in_803 .clean-menu-logo .cm-logo-wrap {
  max-width: 250px;
  margin-right: 5px;
  width: 100%;
}
div[tag="slice"] > .mez > #stacks_in_803.com_onelittledesigner_stacks_Clean_Menu_stack > .clean-menu .clean-menu-top-level ul li {
  margin: 0 0 0 15px;
}



#clean-menu_stacks_in_803 .clean-menu-full {
  margin: 0;
}
#clean-menu_stacks_in_803 .clean-menu-full .cm-menu-toggle {
  display: none;
}
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul {
  display: block;
  position: fixed;
  pointer-events: none;
  opacity: 0;
  top: 100%;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}
#clean-menu_stacks_in_803 .clean-menu-top-level ul li {
  position: relative;
}
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li.clean-menu-dropdown > ul {
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  pointer-events: all;
  opacity: 1;
}
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > a.parent:after {
  content: "";
  border-style: solid;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  margin: -3px 0 0 8px;
}
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > a.parent a.parent:after {
  border-color: rgba(0, 0, 0, 0.40);
}
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > a.parent a.parent:hover:after {
  border-color: rgba(0, 0, 0, 0.20);
}
/* #clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > a.parent a.cm-heading.parent:hover:after {
  border-color: rgba(0, 0, 0, 0.40);
} */
#clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > a.parent a.parent.cm-current:after {
  border-color: rgba(0, 0, 0, 0.60);
}





.cm-sticky-wrap_stacks_in_803 {
  transition: background 300ms ease;
  background: transparent;
}
.cm-sticky-wrap_stacks_in_803.cm-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(241, 245, 245, 1.00);
}
.cm-sticky-wrap_stacks_in_803.cm-sticky > #clean-menu-full_stacks_in_803.cm-full-menu {
  z-index: 9999;
}
.cm-sticky-wrap_stacks_in_803.cm-sticky #clean-menu_stacks_in_803.clean-menu {
  max-width: 1240px;
  box-sizing: border-box;
  padding: 0px 20px;
  
  margin: 0 auto;
  
}



@media all and (min-width: 771px) {
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu ul li {
    border-width: 0;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803 {
    padding: 10px 0px;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-hide-dropdown-menu,
  body:not(.cm-mobile-example) #clean-menu_stacks_in_803 ul li.cm-hide-menu {
    display: none;
  }
  
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu {
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu ul {
    text-align: center;
    padding: 20px 0px;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu ul li {
    display: inline-block;
    vertical-align: top;
    text-align: left;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu ul ul li{
    display: block;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu ul ul {
    padding: 0 0 0 0;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu ul ul ul {
    padding: 0 0 0 0;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu ul ul > li > a {
    padding: 4px 20px;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu {
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu.clean-menu-active {
    -webkit-transform: translate(0, 5px);
    transform: translate(0, 5px);
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu ul {
    padding: 0;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu ul ul li {
    margin: 3px 0px 3px 15px;
    position: relative;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu ul ul li {
    line-height: 1;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu ul ul li:before {
    content: ">";
    position: absolute;
    left: 5px;
    top: 4px;
    line-height: 1;
    font-family: monospace;
    font-weight: bold;
  }
  body:not(.cm-mobile-example) #clean-menu-full_stacks_in_803.cm-full-menu > ul > li {
    margin: 30px 0;
  }
  
  #clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul.cm-wide {
    display: grid;
  }
  #clean-menu_stacks_in_803 .clean-menu-top-level > ul > li > ul.cm-wide > li {
    text-align: left;
    align-self: flex-start;
  }
}

@media all and (max-width: 770px) {
  
  #clean-menu_stacks_in_803.clean-menu {
    gap: 0 16px;
  }
  #clean-menu-full_stacks_in_803 {
    min-width: 300px;
  }
  #clean-menu_stacks_in_803 .clean-menu-full {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 10px 0;
  }
  #clean-menu_stacks_in_803 > div:last-child {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  #clean-menu_stacks_in_803 .clean-menu-full .cm-menu-toggle {
    display: block;
  }
  #clean-menu_stacks_in_803 .clean-menu-top-level {
    display: none;
  }
  
  
  #clean-menu_stacks_in_803 .clean-menu-full .cm-menu-toggle {
    float: right;
  }
  
  #clean-menu-full_stacks_in_803.cm-full-menu ul li {
    display: block;
  }
  #clean-menu-full_stacks_in_803.cm-full-menu ul {
    padding: 12px 0px;
  }
  #clean-menu-full_stacks_in_803.cm-full-menu ul > li > .cm-custom-content {
    padding: 4px 24px 4px 24px;
  }
  #clean-menu-full_stacks_in_803.cm-full-menu ul ul > li > .cm-custom-content {
    padding: 4px 24px 4px 34px;
  }
  #clean-menu-full_stacks_in_803.cm-full-menu ul > li.cm-grouped-item > .cm-custom-content  {
    padding: 4px 24px 4px 0px;
  }
  #clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-grouped-item{
    padding: 4px 24px;
  }
  #clean-menu-full_stacks_in_803.cm-full-menu ul li > a {
    font-size: calc(14px + 2 );
    line-height: calc(14px + 2 );
    padding: 12px 24px;
    width: 100%;
    box-sizing: border-box;
  }
  #clean-menu-full_stacks_in_803.cm-full-menu ul ul > li > a {
    padding: 12px 24px;
    width: 100%;
    box-sizing: border-box;
  }
  #clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-grouped-item > a {
    width: auto;
  }
  #clean-menu-full_stacks_in_803.cm-full-menu {
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
  }
  #clean-menu-full_stacks_in_803.cm-full-menu.clean-menu-active {
    -webkit-transform: translate(0px, 5px);
    transform: translate(0px, 5px);
  }
  #clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-grouped-item > a {
    padding: 8px 30px 8px 0;
  }
}






.cm-mobile-example #clean-menu-full_stacks_in_803 {
  min-width: 300px;
}
.cm-mobile-example #clean-menu_stacks_in_803 .clean-menu-full {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cm-mobile-example #clean-menu_stacks_in_803 > div:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cm-mobile-example #clean-menu_stacks_in_803 .clean-menu-full .cm-menu-toggle {
  display: block;
}
.cm-mobile-example #clean-menu_stacks_in_803 .clean-menu-top-level {
  display: none;
}
.cm-mobile-example #clean-menu-full_stacks_in_803.cm-full-menu ul li {
  display: block;
}
.cm-mobile-example #clean-menu-full_stacks_in_803.cm-full-menu ul li > a {
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
}
.cm-mobile-example #clean-menu-full_stacks_in_803.cm-full-menu ul ul > li > a {
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
}
.cm-mobile-example #clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-grouped-item > a {
  width: auto;
}
.cm-mobile-example #clean-menu-full_stacks_in_803.cm-full-menu {
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
}
.cm-mobile-example #clean-menu-full_stacks_in_803.cm-full-menu.clean-menu-active {
  -webkit-transform: translate(0px, 5px);
  transform: translate(0px, 5px);
}
.cm-mobile-example #clean-menu-full_stacks_in_803.cm-full-menu ul li.cm-grouped-item > a {
  padding: 8px 30px 8px 0;
}

.cm-mobile-example  #clean-menu_stacks_in_803 .clean-menu-full .cm-menu-toggle {
  float: right;
}









#clean-menu_stacks_in_803 .clean-menu-top-level ul li.cm-current > a {
  
}

#stacks_in_803 {
	-moz-border-radius:  5px;
	-webkit-border-radius:  5px;
	border-radius:  5px;
	margin: 30px 0px 0px 0px;
	padding: 0px 20px 0px 30px;
}
/* -- Start Svg Each css Template -- */


#stacks_in_804 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_804svgwrapper{
	position: relative;
}



#stacks_in_804 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_804 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_804 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_out_804 {
	margin-left:0;
}

.clean-menu-top-level #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(51, 51, 51, 0.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_807.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(51, 51, 51, 0.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_807) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_807.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_808 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(51, 51, 51, 0.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_809.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(51, 51, 51, 0.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_809) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_809.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_810 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(51, 51, 51, 0.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_811.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(51, 51, 51, 0.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_811) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_811.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_812 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(51, 51, 51, 0.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_813.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(51, 51, 51, 0.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_813) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_813.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_814 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(51, 51, 51, 0.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_815.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(51, 51, 51, 0.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_815) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_815.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_816 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(51, 51, 51, 0.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_824.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(51, 51, 51, 0.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_824) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_824.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_825 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 20px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_821.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 20px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_821) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_821.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



.clean-menu-top-level #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(110, 201, 191, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_817.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_817) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(110, 201, 191, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_817.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



.clean-menu-top-level #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 5px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_830.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 5px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_830) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_830.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_831 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 5px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_839.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 5px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_839) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_839.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_840 {
	font-size: 95%;
	font-weight: bold;
}

#stacks_in_818 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(110, 201, 191, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_833.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_833) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(110, 201, 191, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_833.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



.clean-menu-top-level #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 10px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_828.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 10px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_828) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_828.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_829 {
	font-size: 95%;
	font-weight: bold;
}

#stacks_in_834 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(110, 201, 191, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_837.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_837) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(110, 201, 191, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_837.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



.clean-menu-top-level #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 10px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_826.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 10px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_826) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_826.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_827 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 10px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_891.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 10px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_891) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_891.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_892 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(110, 201, 191, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_849.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_849) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(110, 201, 191, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_849.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



.clean-menu-top-level #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 5px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_847.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 5px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_847) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_847.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_848 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 5px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_859.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 5px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_859) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_859.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_860 {
	font-size: 95%;
	font-weight: bold;
}

#stacks_in_850 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(110, 201, 191, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_862.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_862) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(110, 201, 191, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_862.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



.clean-menu-top-level #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 5px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_863.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 5px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_863) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_863.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_864 {
	font-size: 95%;
	font-weight: bold;
}

#stacks_in_868 {
	font-size: 95%;
	font-weight: bold;
}

#stacks_in_838 {
	font-size: 95%;
	font-weight: bold;
}

.clean-menu-top-level #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(110, 201, 191, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_857.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(253, 238, 227, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_857) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(110, 201, 191, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_857.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



.clean-menu-top-level #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  padding: 6px 12px;
}
.clean-menu-top-level #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  padding: 0;
}
.clean-menu-top-level #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.clean-menu-top-level #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a:hover,
.clean-menu-top-level #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.clean-menu-top-level #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a:hover svg,
.clean-menu-top-level #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.clean-menu-top-level #cta_stacks_in_855.clean-menu-cta {
  margin: 0 9px;
}
.clean-menu-top-level #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a:hover {

}
.clean-menu-top-level #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}
.cm-full-menu #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style {
  padding: 10px 18px 10px 18px;
}
.cm-full-menu #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a {
  transition: all 150ms ease;
  color: rgba(67, 73, 94, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
  border-radius: 4px;
  display: block;
  text-align: center;
  padding: 6px 12px;
}
.cm-vert-bottom > .clean-menu-top-level > ul:has(> #cta_stacks_in_855) {
  margin-bottom: -6px;
}
.cm-full-menu #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style.cm-grouped-item > a {
  display: inline-block;
}
.cm-full-menu #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a svg {
  fill: rgba(67, 73, 94, 1.00);
}
.cm-full-menu #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a:hover,
.cm-full-menu #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style.current a {
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(226, 74, 19, 1.00);
  border: 1px solid rgba(34, 34, 34, 0.00);
}
.cm-full-menu #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a:hover svg,
.cm-full-menu #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a.current a svg {
  fill: rgba(255, 255, 255, 1.00);
}
.cm-full-menu #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a:hover {

}
.cm-full-menu #cta_stacks_in_855.clean-menu-cta.clean-menu-cta-style a:active {
  transform: translate(0,1px);
}



#stacks_in_856 {
	font-size: 95%;
	font-weight: bold;
}

#stacks_in_858 {
	font-size: 95%;
	font-weight: bold;
}

#stacks_in_822 {
	font-size: 95%;
	font-weight: bold;
}
/* Depth Limit */

#stacks_in_2 .depth_limit {
	max-width: 1300px;
}
#stacks_in_2 .depth_limit_padding {
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_2 .depth_limit_padding {
		padding: 0px 0px 0px 0px;
	}
}

/* Depth Limit Gradient*/

#stacks_in_2.depth_limit_wrapper{
	   
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 95%);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 95%);
	

	
}



#stacks_in_362.vast_video_wrapper,
#stacks_in_362.vast_video_wrapper strong,
#stacks_in_362.vast_video_wrapper b,
#stacks_in_362.vast_video_wrapper h1,
#stacks_in_362.vast_video_wrapper h2,
#stacks_in_362.vast_video_wrapper h3,
#stacks_in_362.vast_video_wrapper h4,
#stacks_in_362.vast_video_wrapper h5,
#stacks_in_362.vast_video_wrapper h6{
	color: rgba(255, 255, 255, 1.00);
}
#stacks_in_362 .vast_video_player,
#stacks_in_362.vast_video_wrapper .vast_video_background {
	filter: blur(4px);
}
#stacks_in_362 .vast_video_tint,
#stacks_in_362 .vast_video_player,
#stacks_in_362.vast_video_wrapper,
#stacks_in_362.vast_video_wrapper:before{
  border-radius: 4px;
}
#stacks_in_362.vast_video_wrapper a{
	color: rgba(52, 188, 255, 1.00);
}
#stacks_in_362.vast_video_wrapper a:hover{
	color: rgba(95, 211, 255, 1.00);
}

#stacks_in_362 .vast_video_tint{
	background: rgba(12, 18, 20, 0.26);
}

#stacks_in_362 .vast_video_slice{
  
	min-height: 70vh;
  
	max-width: 1000px;
}
#stacks_in_362 .vast_video_player{
	opacity: 1;
	width: 100% !important;
  
  height: 100%;
  max-height: 100%;
  min-height: 100%;
  position: absolute;
  display: block;
  font-family: "object-fit:cover";
  max-width: none;
  object-fit: cover;
  transition: opacity 500ms;
  transform: scale(1.05);
  
}

/* Align Top */



/* Align Middle */


	#stacks_in_362 .vast_video_slice{ flex-direction: column; }


/* Align Bottom */

/* Depth Content */

@media (min-width: 300px){
	#stacks_in_419 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 770px){
	#stacks_in_419 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_419 .depth_section_link:hover .depth_in,
#stacks_in_419 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}




	#stacks_in_419{margin-bottom: 0;}


#stacks_in_419.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_419.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_419 .depth_in{
	position: relative;
	margin: 0 auto;
	text-align: left;
	
	
}

#stacks_in_419 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: 50% 50%;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 0.00);
	background-size: cover;
	
}





#stacks_in_419 .depth_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_419 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_419 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_419 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_419 .heading_in{
	padding: 3px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_419 .heading_out h2{
	font-size: 29px;
	line-height: 38px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	
	
	
	 text-align: left !important; 
	
	
	 text-transform: uppercase;
	letter-spacing: 0px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_419 p.super_heading{
	color: rgba(20, 23, 28, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

#stacks_in_419 p.sub_heading{
	color: rgba(20, 23, 28, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	
	float: none;}

/* Content */

#stacks_in_419 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 540px; 
	

	 text-align: left; 
	
	
	padding: 9% 0px 0% 0px;
	margin: 0 5%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_419 .content_out{
		padding: 21% 20px 10% 20px;
		margin: 0 10%;}
	#stacks_in_419 .heading_out h2{
		font-size: 25px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_419 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_419 .depth_tint,
	#stacks_in_419 .content_tint{ background: none !important; }
	#stacks_in_419 .heading_out h2,
	#stacks_in_419 .content_out{
		 text-align: left !important; 
		
		
	}
	
	#stacks_in_419 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_419 .content_flex{
	
	
	 align-items: flex-end; 
}

#stacks_in_419 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 50px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_419 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 6%;
	
	
	}

#stacks_in_419 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	
	
	 text-transform: uppercase;}

@media screen and (max-width: 770px){
	#stacks_in_419 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_419 .content_in a.depth_button:hover{
	color: rgba(230, 73, 30, 1.00);
	background: rgba(255, 255, 255, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_419 .content_in p.sub_content{
	font-weight: normal;
	
	
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_419 .depth_aside{
	position: static;
	width: 100%;
	float: right;
	

	 
	margin-right: -540px; 
	

	

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_419 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_419 .depth_aside_wrapper{
	
	
	 
	padding-right: 540px; 
	
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	
	width: 100%;
}
#stacks_in_419 .depth_aside_wrapper,
#stacks_in_419 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_419 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}

 #stacks_in_419 .content_out .centered_image img{float: left;} 





#stacks_in_419 .depth_aside_padding > div{max-width:500px;}

@media screen and (max-width: 770px){
	#stacks_in_419 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_419 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_419 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_419 .depth_in{z-index: 4;}
#stacks_in_419 .depth_tint{z-index: 3;}
#stacks_in_419 .depth_gradient{z-index: 2;}
#stacks_in_419 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_419 .depth_wrapper.content_tint,
	#stacks_in_419 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_419 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_419 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_419 hr{border: 0;margin: 0;}

#stacks_in_419 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_419 hr.hr_bottom_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_419 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}/* -- Start Svg Each css Template -- */


#stacks_in_573 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_573svgwrapper{
	position: relative;
}



#stacks_in_573 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_573 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_573 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_in_573 {
	margin: 100px 0px 30px 0px;
}

#stacks_out_573 {
	width: 75%;
	margin-left:0;
}
/* Depth Limit */

#stacks_in_899 .depth_limit {
	max-width: 2100px;
}
#stacks_in_899 .depth_limit_padding {
	padding: 25px 10px 0px 10px;
}
@media screen and (min-width: 770px){
	#stacks_in_899 .depth_limit_padding {
		padding: 25px 25px 25px 25px;
	}
}

/* Depth Limit Gradient*/

#stacks_in_899.depth_limit_wrapper{
	   
	background-image: -webkit-linear-gradient(top, rgba(239, 239, 240, 1.00) 0%,rgba(239, 239, 240, 1.00) 95%);
	background-image: linear-gradient(to bottom, rgba(239, 239, 240, 1.00) 0%,rgba(239, 239, 240, 1.00) 95%);
	

	
}



/* Depth Limit */

#stacks_in_900 .depth_limit {
	max-width: 2100px;
}
#stacks_in_900 .depth_limit_padding {
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_900 .depth_limit_padding {
		padding: 0px 0px 0px 0px;
	}
}

/* Depth Limit Gradient*/

#stacks_in_900.depth_limit_wrapper{
	   
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 95%);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 95%);
	

	
}



:root {
  --multi_columns_stacks_in_901:1fr 1fr 1fr 1fr;
}
#multi_columns_stacks_in_901 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_901);
  grid-gap: 20px;
  
  
  
  
  justify-content: center;
  
}
#multi_columns_stacks_in_901 > div {
  min-width: 0;
}
#multi_columns_stacks_in_901 + .deluxe-columns {
  margin-top: 20px;
}
#multi_columns_stacks_in_901 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_901 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}

#multi_columns_stacks_in_901 > div {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}
#multi_columns_stacks_in_901 > div > div:only-child {
  height: 100%;
}



@media all and (min-width: 1101px) {
  #multi_columns_stacks_in_901 .hide-mobile {
    display: inherit;
  }
  #multi_columns_stacks_in_901 .hide-tablet {
    display: inherit;
  }
  #multi_columns_stacks_in_901 .hide-mobile {
    display: inherit;
  }
  #multi_columns_stacks_in_901 .hide-desktop {
    display: none;
  }
}
@media all and (max-width: 1100px) and (min-width: 501px) {
  #multi_columns_stacks_in_901 .column-tablet-top {
    grid-row: 1;
  }
  #multi_columns_stacks_in_901 .hide-desktop {
    display: inherit;
  }
  #multi_columns_stacks_in_901 .hide-mobile {
    display: inherit;
  }
  #multi_columns_stacks_in_901 .hide-tablet {
    display: none;
  }
}
@media all and (max-width: 500px) {
  #multi_columns_stacks_in_901 .column-mobile-top {
    grid-row: 1;
  }
  #multi_columns_stacks_in_901 .hide-tablet {
    display: inherit;
  }
  #multi_columns_stacks_in_901 .hide-desktop {
    display: inherit;
  }
  #multi_columns_stacks_in_901 .hide-mobile {
    display: none;
  }
}

@media all and (max-width: 1100px) {
  #multi_columns_stacks_in_901 {
    grid-template-columns: repeat(2, 1fr);
    
  }
  #multi_columns_stacks_in_901 + .deluxe-columns {
    
  }
  #multi_columns_stacks_in_901 > div:last-child {
    grid-column: span 1;
  }
  
}
@media all and (max-width: 500px) {
  #multi_columns_stacks_in_901 {
    grid-template-columns: repeat(1, 1fr);
  }
  #multi_columns_stacks_in_901 > div:last-child {
    grid-column: span 1;
  }
  
  #multi_columns_stacks_in_901 > div > * {position: relative;}
  #multi_columns_stacks_in_901 > div > * > * {transform: translate(0,0);}
  
}


#stacks_in_934 {
	-moz-border-radius:  2px;
	-webkit-border-radius:  2px;
	border-radius:  2px;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_936 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 900px){
	#stacks_in_936 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_936 .depth_section_link:hover .depth_in,
#stacks_in_936 .depth_section_link:hover .depth_image{
	transform: scale(1.04);
}




	#stacks_in_936{margin-bottom: 0;}


#stacks_in_936.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_936.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_936 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_936 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(255, 255, 255, 0.00);
	background-size: cover;
	
}





#stacks_in_936 .depth_tint{ background: rgba(255, 255, 255, 0.00); }

#stacks_in_936 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_936 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 75%);
	background: linear-gradient(to right, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 75%);
	
	
	   
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 95%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 95%);
	
	}



/* Heading */

#stacks_in_936 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 247, 0, 1.00);
	border-right: 0px solid rgba(255, 247, 0, 1.00);
	border-bottom: 0px solid rgba(255, 247, 0, 1.00);
	border-left: 0px solid rgba(255, 247, 0, 1.00);
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_936 .heading_in{
	padding: 0px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_936 .heading_out h2{
	font-size: 23px;
	line-height: 33px;
	color: rgba(229, 232, 237, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	 text-align: left !important; 
	
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_936 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 5px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	
	float: none;}

#stacks_in_936 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	
	float: none;}

/* Content */

#stacks_in_936 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 500px; 
	

	 text-align: left; 
	
	
	padding: 0% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_936 .depth_wrapper{background-color: rgba(255, 255, 255, 1.00);}
	#stacks_in_936 .depth_tint,
	#stacks_in_936 .content_tint{ background: none !important; }
	#stacks_in_936 .heading_out h2,
	#stacks_in_936 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_936 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_936 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_936 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 30px 30px 30px 30px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_936 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 0.85em;
	line-height: 1.50;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_936 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 4% 6.000000%;
	border-radius: 3px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(219, 221, 221, 1.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_936 .content_in a.depth_button{
		padding: 4% 8%;
	}
}
#stacks_in_936 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_936 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(0, 0, 0, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_936 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -500px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_936 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_936 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_936 .depth_aside_wrapper,
#stacks_in_936 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_936 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}

 #stacks_in_936 .content_out .centered_image img{float: left;} 





#stacks_in_936 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_936 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_936 .depth_aside_padding{
	padding: 0px 50px 70px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_936 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_936 .depth_in{z-index: 4;}
#stacks_in_936 .depth_tint{z-index: 3;}
#stacks_in_936 .depth_gradient{z-index: 2;}
#stacks_in_936 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_936 hr{border: 0;margin: 0;}

#stacks_in_936 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.50);
	display: inline-block;}

#stacks_in_936 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.50);
	display: inline-block;}

#stacks_in_936 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 11%;
	background: rgba(255, 102, 0, 1.00);
	margin-top: 20px;}
#stacks_in_938 {
	margin: 0px 0px 10px 0px;
}

#stacks_in_924 {
	-moz-border-radius:  2px;
	-webkit-border-radius:  2px;
	border-radius:  2px;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_926 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 900px){
	#stacks_in_926 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_926 .depth_section_link:hover .depth_in,
#stacks_in_926 .depth_section_link:hover .depth_image{
	transform: scale(1.04);
}




	#stacks_in_926{margin-bottom: 0;}


#stacks_in_926.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_926.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_926 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_926 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(255, 255, 255, 0.00);
	background-size: cover;
	
}





#stacks_in_926 .depth_tint{ background: rgba(255, 255, 255, 0.00); }

#stacks_in_926 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_926 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 75%);
	background: linear-gradient(to right, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 75%);
	
	
	   
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 95%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 95%);
	
	}



/* Heading */

#stacks_in_926 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_926 .heading_in{
	padding: 0px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_926 .heading_out h2{
	font-size: 23px;
	line-height: 33px;
	color: rgba(229, 232, 237, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	 text-align: left !important; 
	
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_926 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	
	float: none;}

#stacks_in_926 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	
	float: none;}

/* Content */

#stacks_in_926 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 500px; 
	

	 text-align: left; 
	
	
	padding: 0% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_926 .depth_wrapper{background-color: rgba(255, 255, 255, 1.00);}
	#stacks_in_926 .depth_tint,
	#stacks_in_926 .content_tint{ background: none !important; }
	#stacks_in_926 .heading_out h2,
	#stacks_in_926 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_926 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_926 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_926 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 30px 30px 30px 30px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_926 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 0.85em;
	line-height: 1.50;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_926 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 4% 6.000000%;
	border-radius: 3px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.17);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_926 .content_in a.depth_button{
		padding: 4% 8%;
	}
}
#stacks_in_926 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_926 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(0, 0, 0, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_926 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -500px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_926 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_926 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_926 .depth_aside_wrapper,
#stacks_in_926 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_926 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}

 #stacks_in_926 .content_out .centered_image img{float: left;} 





#stacks_in_926 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_926 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_926 .depth_aside_padding{
	padding: 0px 50px 70px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_926 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_926 .depth_in{z-index: 4;}
#stacks_in_926 .depth_tint{z-index: 3;}
#stacks_in_926 .depth_gradient{z-index: 2;}
#stacks_in_926 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_926 hr{border: 0;margin: 0;}

#stacks_in_926 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.50);
	display: inline-block;}

#stacks_in_926 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.50);
	display: inline-block;}

#stacks_in_926 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 11%;
	background: rgba(255, 102, 0, 1.00);
	margin-top: 20px;}
#stacks_in_928 {
	margin: 0px 0px 10px 0px;
}

#stacks_in_913 {
	-moz-border-radius:  2px;
	-webkit-border-radius:  2px;
	border-radius:  2px;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_915 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 900px){
	#stacks_in_915 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_915 .depth_section_link:hover .depth_in,
#stacks_in_915 .depth_section_link:hover .depth_image{
	transform: scale(1.04);
}




	#stacks_in_915{margin-bottom: 0;}


#stacks_in_915.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_915.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_915 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_915 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(255, 255, 255, 0.00);
	background-size: cover;
	
}





#stacks_in_915 .depth_tint{ background: rgba(255, 255, 255, 0.00); }

#stacks_in_915 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_915 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 75%);
	background: linear-gradient(to right, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 75%);
	
	
	   
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 95%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 95%);
	
	}



/* Heading */

#stacks_in_915 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_915 .heading_in{
	padding: 0px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_915 .heading_out h2{
	font-size: 23px;
	line-height: 33px;
	color: rgba(229, 232, 237, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	 text-align: left !important; 
	
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_915 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	
	float: none;}

#stacks_in_915 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	
	float: none;}

/* Content */

#stacks_in_915 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 500px; 
	

	 text-align: left; 
	
	
	padding: 0% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_915 .depth_wrapper{background-color: rgba(255, 255, 255, 1.00);}
	#stacks_in_915 .depth_tint,
	#stacks_in_915 .content_tint{ background: none !important; }
	#stacks_in_915 .heading_out h2,
	#stacks_in_915 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_915 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_915 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_915 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 30px 30px 30px 30px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_915 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 0.85em;
	line-height: 1.50;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_915 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 4% 6.000000%;
	border-radius: 3px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.17);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_915 .content_in a.depth_button{
		padding: 4% 8%;
	}
}
#stacks_in_915 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_915 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(0, 0, 0, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_915 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -500px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_915 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_915 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_915 .depth_aside_wrapper,
#stacks_in_915 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_915 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}

 #stacks_in_915 .content_out .centered_image img{float: left;} 





#stacks_in_915 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_915 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_915 .depth_aside_padding{
	padding: 0px 50px 70px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_915 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_915 .depth_in{z-index: 4;}
#stacks_in_915 .depth_tint{z-index: 3;}
#stacks_in_915 .depth_gradient{z-index: 2;}
#stacks_in_915 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_915 hr{border: 0;margin: 0;}

#stacks_in_915 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.50);
	display: inline-block;}

#stacks_in_915 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.50);
	display: inline-block;}

#stacks_in_915 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 11%;
	background: rgba(255, 102, 0, 1.00);
	margin-top: 20px;}
#stacks_in_916 {
	margin: 0px 0px 10px 0px;
}

#stacks_in_903 {
	-moz-border-radius:  2px;
	-webkit-border-radius:  2px;
	border-radius:  2px;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_905 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 900px){
	#stacks_in_905 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_905 .depth_section_link:hover .depth_in,
#stacks_in_905 .depth_section_link:hover .depth_image{
	transform: scale(1.04);
}




	#stacks_in_905{margin-bottom: 0;}


#stacks_in_905.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_905.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_905 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_905 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(255, 255, 255, 0.00);
	background-size: cover;
	
}





#stacks_in_905 .depth_tint{ background: rgba(255, 255, 255, 0.00); }

#stacks_in_905 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_905 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 75%);
	background: linear-gradient(to right, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 75%);
	
	
	   
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 95%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 95%);
	
	}



/* Heading */

#stacks_in_905 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_905 .heading_in{
	padding: 0px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_905 .heading_out h2{
	font-size: 23px;
	line-height: 33px;
	color: rgba(229, 232, 237, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	 text-align: left !important; 
	
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_905 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	
	float: none;}

#stacks_in_905 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	
	float: none;}

/* Content */

#stacks_in_905 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 500px; 
	

	 text-align: left; 
	
	
	padding: 0% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_905 .depth_wrapper{background-color: rgba(255, 255, 255, 1.00);}
	#stacks_in_905 .depth_tint,
	#stacks_in_905 .content_tint{ background: none !important; }
	#stacks_in_905 .heading_out h2,
	#stacks_in_905 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_905 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_905 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_905 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 30px 30px 30px 30px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_905 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 0.85em;
	line-height: 1.50;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_905 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 4% 6.000000%;
	border-radius: 3px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.17);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_905 .content_in a.depth_button{
		padding: 4% 8%;
	}
}
#stacks_in_905 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_905 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(0, 0, 0, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_905 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -500px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_905 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_905 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_905 .depth_aside_wrapper,
#stacks_in_905 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_905 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}

 #stacks_in_905 .content_out .centered_image img{float: left;} 





#stacks_in_905 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_905 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_905 .depth_aside_padding{
	padding: 0px 50px 70px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_905 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_905 .depth_in{z-index: 4;}
#stacks_in_905 .depth_tint{z-index: 3;}
#stacks_in_905 .depth_gradient{z-index: 2;}
#stacks_in_905 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_905 hr{border: 0;margin: 0;}

#stacks_in_905 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.50);
	display: inline-block;}

#stacks_in_905 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.50);
	display: inline-block;}

#stacks_in_905 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 11%;
	background: rgba(255, 102, 0, 1.00);
	margin-top: 20px;}
#stacks_in_906 {
	margin: 0px 0px 10px 0px;
}
/* Depth Limit */

#stacks_in_183 .depth_limit {
	max-width: 1300px;
}
#stacks_in_183 .depth_limit_padding {
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_183 .depth_limit_padding {
		padding: 0px 0px 0px 0px;
	}
}

/* Depth Limit Gradient*/

#stacks_in_183.depth_limit_wrapper{
	   
	background-image: -webkit-linear-gradient(top, rgba(244, 247, 247, 1.00) 0%,rgba(244, 247, 247, 1.00) 95%);
	background-image: linear-gradient(to bottom, rgba(244, 247, 247, 1.00) 0%,rgba(244, 247, 247, 1.00) 95%);
	

	
}




div#ambitie {
  
  
  
  
}

/* Depth Content */

@media (min-width: 300px){
	#stacks_in_185 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 770px){
	#stacks_in_185 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_185 .depth_section_link:hover .depth_in,
#stacks_in_185 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}





#stacks_in_185.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_185.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_185 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_185 .depth_image{

	
	background-size: contain;

	background-repeat: no-repeat;
	background-position: 100% 0;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(238, 238, 238, 0.00);
	background-size: cover;
	
}





#stacks_in_185 .depth_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_185 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_185 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_185 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_185 .heading_in{
	padding: 3px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_185 .heading_out h2{
	font-size: 29px;
	line-height: 20px;
	color: rgba(226, 73, 19, 1.00);
	font-weight: 500;
	
	
	
	
	 text-align: center !important; 
	
	 text-transform: uppercase;
	letter-spacing: 0px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_185 p.super_heading{
	color: rgba(25, 23, 23, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

#stacks_in_185 p.sub_heading{
	color: rgba(25, 23, 23, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

/* Content */

#stacks_in_185 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 700px; 
	

	
	 text-align: center; 
	
	padding: 9% 0px 3% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_185 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_185 .depth_tint,
	#stacks_in_185 .content_tint{ background: none !important; }
	#stacks_in_185 .heading_out h2,
	#stacks_in_185 .content_out{
		
		 text-align: center !important; 
		
	}
	
}


#stacks_in_185 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_185 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_185 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_185 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	
	
	 text-transform: uppercase;}

@media screen and (max-width: 770px){
	#stacks_in_185 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_185 .content_in a.depth_button:hover{
	color: rgba(230, 73, 30, 1.00);
	background: rgba(255, 255, 255, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_185 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(67, 73, 94, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_185 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -700px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_185 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_185 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_185 .depth_aside_wrapper,
#stacks_in_185 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_185 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_185 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_185 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_185 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_185 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_185 .depth_in{z-index: 4;}
#stacks_in_185 .depth_tint{z-index: 3;}
#stacks_in_185 .depth_gradient{z-index: 2;}
#stacks_in_185 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_185 hr{border: 0;margin: 0;}

#stacks_in_185 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_185 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_185 hr.hr_bottom_content{
	display: inline-block;
	height: 1px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 5px;}#stacks_in_579 *,
#stacks_in_579 *:before,
#stacks_in_579 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_201>.s3_row {
	margin: 0 -0px;
}

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

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

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

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








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



}



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


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


}



/* Depth Content */

@media (min-width: 300px){
	#stacks_in_207 .content_flex{
		min-height: 350px;
	}
}

@media (min-width: 900px){
	#stacks_in_207 .content_flex{
		min-height: 350px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_207 .depth_section_link:hover .depth_in,
#stacks_in_207 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_207{margin-left: 0;margin-right: 0;}



	#stacks_in_207{margin-bottom: 0;}


#stacks_in_207.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_207.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_207 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_207 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-207.jpg);
	
	
	
}





#stacks_in_207 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_207 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_207 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.50) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.50) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.50) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.50) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_207 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_207 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_207 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_207 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_207 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	 display: none; 
	
	float: none;}

/* Content */

#stacks_in_207 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_207 .content_out{
		padding: 10% 50px 10% 50px;
		margin: 0 0%;}
	#stacks_in_207 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_207 .depth_wrapper{background-color: rgba(0, 0, 0, 0.30);}
	#stacks_in_207 .depth_tint,
	#stacks_in_207 .content_tint{ background: none !important; }
	#stacks_in_207 .heading_out h2,
	#stacks_in_207 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_207 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_207 .content_flex{
	
	 align-items: center; 
	
}

#stacks_in_207 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_207 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.10em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	 display: none; }

#stacks_in_207 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_207 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_207 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_207 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_207 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_207 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_207 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_207 .depth_aside_wrapper,
#stacks_in_207 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_207 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_207 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_207 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_207 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_207 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_207 .depth_in{z-index: 4;}
#stacks_in_207 .depth_tint{z-index: 3;}
#stacks_in_207 .depth_gradient{z-index: 2;}
#stacks_in_207 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_207 .depth_wrapper.content_tint,
	#stacks_in_207 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_207 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_207 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_207 hr{border: 0;margin: 0;}

#stacks_in_207 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_207 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_207 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_217 .content_flex{
		min-height: 360px;
	}
}

@media (min-width: 900px){
	#stacks_in_217 .content_flex{
		min-height: 200px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_217 .depth_section_link:hover .depth_in,
#stacks_in_217 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_217{margin-left: 0;margin-right: 0;}



	#stacks_in_217{margin-bottom: 0;}


#stacks_in_217.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_217.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_217 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_217 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(53, 57, 67, 1.00);
	background-size: cover;
	
}





#stacks_in_217 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_217 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_217 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_217 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_217 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_217 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_217 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_217 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 0px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_217 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_217 .content_out{
		padding: 3% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_217 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_217 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_217 .depth_tint,
	#stacks_in_217 .content_tint{ background: none !important; }
	#stacks_in_217 .heading_out h2,
	#stacks_in_217 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_217 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_217 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_217 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_217 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_217 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_217 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_217 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_217 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_217 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_217 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_217 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_217 .depth_aside_wrapper,
#stacks_in_217 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_217 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_217 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_217 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_217 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_217 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_217 .depth_in{z-index: 4;}
#stacks_in_217 .depth_tint{z-index: 3;}
#stacks_in_217 .depth_gradient{z-index: 2;}
#stacks_in_217 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_217 .depth_wrapper.content_tint,
	#stacks_in_217 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_217 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_217 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_217 hr{border: 0;margin: 0;}

#stacks_in_217 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_217 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_217 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_210 .content_flex{
		min-height: 350px;
	}
}

@media (min-width: 900px){
	#stacks_in_210 .content_flex{
		min-height: 350px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_210 .depth_section_link:hover .depth_in,
#stacks_in_210 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_210{margin-left: 0;margin-right: 0;}



	#stacks_in_210{margin-bottom: 0;}


#stacks_in_210.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_210.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_210 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_210 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-210.jpg);
	
	
	
}





#stacks_in_210 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_210 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_210 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_210 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_210 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_210 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_210 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_210 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	 display: none; 
	
	float: none;}

/* Content */

#stacks_in_210 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_210 .content_out{
		padding: 10% 50px 10% 50px;
		margin: 0 0%;}
	#stacks_in_210 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_210 .depth_wrapper{background-color: rgba(0, 0, 0, 0.30);}
	#stacks_in_210 .depth_tint,
	#stacks_in_210 .content_tint{ background: none !important; }
	#stacks_in_210 .heading_out h2,
	#stacks_in_210 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_210 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_210 .content_flex{
	
	 align-items: center; 
	
}

#stacks_in_210 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_210 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.10em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	 display: none; }

#stacks_in_210 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_210 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_210 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_210 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_210 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_210 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_210 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_210 .depth_aside_wrapper,
#stacks_in_210 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_210 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_210 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_210 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_210 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_210 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_210 .depth_in{z-index: 4;}
#stacks_in_210 .depth_tint{z-index: 3;}
#stacks_in_210 .depth_gradient{z-index: 2;}
#stacks_in_210 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_210 .depth_wrapper.content_tint,
	#stacks_in_210 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_210 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_210 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_210 hr{border: 0;margin: 0;}

#stacks_in_210 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_210 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_210 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_220 .content_flex{
		min-height: 360px;
	}
}

@media (min-width: 900px){
	#stacks_in_220 .content_flex{
		min-height: 200px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_220 .depth_section_link:hover .depth_in,
#stacks_in_220 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_220{margin-left: 0;margin-right: 0;}



	#stacks_in_220{margin-bottom: 0;}


#stacks_in_220.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_220.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_220 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_220 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(226, 74, 19, 1.00);
	background-size: cover;
	
}





#stacks_in_220 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_220 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_220 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_220 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_220 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_220 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_220 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_220 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 0px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_220 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_220 .content_out{
		padding: 3% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_220 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_220 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_220 .depth_tint,
	#stacks_in_220 .content_tint{ background: none !important; }
	#stacks_in_220 .heading_out h2,
	#stacks_in_220 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_220 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_220 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_220 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_220 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_220 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_220 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_220 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_220 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_220 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_220 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_220 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_220 .depth_aside_wrapper,
#stacks_in_220 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_220 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_220 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_220 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_220 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_220 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_220 .depth_in{z-index: 4;}
#stacks_in_220 .depth_tint{z-index: 3;}
#stacks_in_220 .depth_gradient{z-index: 2;}
#stacks_in_220 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_220 .depth_wrapper.content_tint,
	#stacks_in_220 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_220 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_220 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_220 hr{border: 0;margin: 0;}

#stacks_in_220 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_220 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_220 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_213 .content_flex{
		min-height: 350px;
	}
}

@media (min-width: 900px){
	#stacks_in_213 .content_flex{
		min-height: 350px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_213 .depth_section_link:hover .depth_in,
#stacks_in_213 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_213{margin-left: 0;margin-right: 0;}



	#stacks_in_213{margin-bottom: 0;}


#stacks_in_213.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_213.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_213 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_213 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-213.jpg);
	
	
	
}





#stacks_in_213 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_213 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_213 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.50) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.50) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.50) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.50) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_213 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_213 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_213 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_213 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_213 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	 display: none; 
	
	float: none;}

/* Content */

#stacks_in_213 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_213 .content_out{
		padding: 10% 50px 10% 50px;
		margin: 0 0%;}
	#stacks_in_213 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_213 .depth_wrapper{background-color: rgba(0, 0, 0, 0.30);}
	#stacks_in_213 .depth_tint,
	#stacks_in_213 .content_tint{ background: none !important; }
	#stacks_in_213 .heading_out h2,
	#stacks_in_213 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_213 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_213 .content_flex{
	
	 align-items: center; 
	
}

#stacks_in_213 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_213 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.10em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	 display: none; }

#stacks_in_213 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_213 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_213 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_213 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_213 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_213 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_213 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_213 .depth_aside_wrapper,
#stacks_in_213 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_213 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_213 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_213 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_213 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_213 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_213 .depth_in{z-index: 4;}
#stacks_in_213 .depth_tint{z-index: 3;}
#stacks_in_213 .depth_gradient{z-index: 2;}
#stacks_in_213 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_213 .depth_wrapper.content_tint,
	#stacks_in_213 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_213 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_213 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_213 hr{border: 0;margin: 0;}

#stacks_in_213 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_213 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_213 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_223 .content_flex{
		min-height: 360px;
	}
}

@media (min-width: 900px){
	#stacks_in_223 .content_flex{
		min-height: 200px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_223 .depth_section_link:hover .depth_in,
#stacks_in_223 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_223{margin-left: 0;margin-right: 0;}



	#stacks_in_223{margin-bottom: 0;}


#stacks_in_223.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_223.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_223 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_223 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-223.jpg);
	
	
	
	background-image: none;
	background-color: rgba(58, 134, 165, 1.00);
	background-size: cover;
	
}





#stacks_in_223 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_223 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_223 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_223 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_223 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_223 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_223 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_223 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 0px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_223 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_223 .content_out{
		padding: 3% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_223 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_223 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_223 .depth_tint,
	#stacks_in_223 .content_tint{ background: none !important; }
	#stacks_in_223 .heading_out h2,
	#stacks_in_223 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_223 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_223 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_223 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_223 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_223 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_223 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_223 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_223 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_223 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_223 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_223 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_223 .depth_aside_wrapper,
#stacks_in_223 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_223 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_223 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_223 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_223 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_223 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_223 .depth_in{z-index: 4;}
#stacks_in_223 .depth_tint{z-index: 3;}
#stacks_in_223 .depth_gradient{z-index: 2;}
#stacks_in_223 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_223 .depth_wrapper.content_tint,
	#stacks_in_223 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_223 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_223 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_223 hr{border: 0;margin: 0;}

#stacks_in_223 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_223 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_223 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Limit */

#stacks_in_288 .depth_limit {
	max-width: 1300px;
}
#stacks_in_288 .depth_limit_padding {
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_288 .depth_limit_padding {
		padding: 0px 0px 0px 0px;
	}
}

/* Depth Limit Gradient*/

#stacks_in_288.depth_limit_wrapper{
	   
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 95%);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 95%);
	

	
}



/* Depth Limit */

#stacks_in_168 .depth_limit {
	max-width: 1300px;
}
#stacks_in_168 .depth_limit_padding {
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_168 .depth_limit_padding {
		padding: 0px 0px 0px 0px;
	}
}

/* Depth Limit Gradient*/

#stacks_in_168.depth_limit_wrapper{
	   
	background-image: -webkit-linear-gradient(top, rgba(244, 247, 247, 1.00) 0%,rgba(244, 247, 247, 1.00) 95%);
	background-image: linear-gradient(to bottom, rgba(244, 247, 247, 1.00) 0%,rgba(244, 247, 247, 1.00) 95%);
	

	
}



/* Depth Content */

@media (min-width: 300px){
	#stacks_in_170 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 770px){
	#stacks_in_170 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_170 .depth_section_link:hover .depth_in,
#stacks_in_170 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}




	#stacks_in_170{margin-bottom: 0;}


#stacks_in_170.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_170.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_170 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_170 .depth_image{

	
	background-size: contain;

	background-repeat: no-repeat;
	background-position: 100% 0;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(238, 238, 238, 0.00);
	background-size: cover;
	
}





#stacks_in_170 .depth_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_170 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_170 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_170 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_170 .heading_in{
	padding: 3px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_170 .heading_out h2{
	font-size: 29px;
	line-height: 38px;
	color: rgba(226, 73, 19, 1.00);
	font-weight: 500;
	
	
	
	
	 text-align: center !important; 
	
	 text-transform: uppercase;
	letter-spacing: 0px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_170 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

#stacks_in_170 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

/* Content */

#stacks_in_170 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 700px; 
	

	
	 text-align: center; 
	
	padding: 9% 20px 0% 20px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_170 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_170 .depth_tint,
	#stacks_in_170 .content_tint{ background: none !important; }
	#stacks_in_170 .heading_out h2,
	#stacks_in_170 .content_out{
		
		 text-align: center !important; 
		
	}
	
}


#stacks_in_170 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_170 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_170 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_170 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	
	
	 text-transform: uppercase;}

@media screen and (max-width: 770px){
	#stacks_in_170 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_170 .content_in a.depth_button:hover{
	color: rgba(230, 73, 30, 1.00);
	background: rgba(255, 255, 255, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_170 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	 text-transform: uppercase;
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_170 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -700px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_170 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_170 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_170 .depth_aside_wrapper,
#stacks_in_170 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_170 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_170 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_170 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_170 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_170 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_170 .depth_in{z-index: 4;}
#stacks_in_170 .depth_tint{z-index: 3;}
#stacks_in_170 .depth_gradient{z-index: 2;}
#stacks_in_170 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_170 hr{border: 0;margin: 0;}

#stacks_in_170 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_170 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_170 hr.hr_bottom_content{
	display: inline-block;
	height: 1px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}#stacks_in_172>.s3_row {
	margin: 0 -0px;
}

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

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




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










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



}



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


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


}






#stacks_in_172 {
	margin: 0px 50px 0px 50px;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_174 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 770px){
	#stacks_in_174 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_174 .depth_section_link:hover .depth_in,
#stacks_in_174 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}





#stacks_in_174.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_174.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_174 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_174 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: 50% 50%;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(251, 255, 255, 0.00);
	background-size: cover;
	
}





#stacks_in_174 .depth_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_174 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_174 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_174 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_174 .heading_in{
	padding: 3px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_174 .heading_out h2{
	font-size: 29px;
	line-height: 38px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -2px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_174 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

#stacks_in_174 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

/* Content */

#stacks_in_174 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 460px; 
	

	
	 text-align: center; 
	
	padding: 10% 50px 10% 50px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_174 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_174 .depth_tint,
	#stacks_in_174 .content_tint{ background: none !important; }
	#stacks_in_174 .heading_out h2,
	#stacks_in_174 .content_out{
		
		 text-align: center !important; 
		
	}
	
}


#stacks_in_174 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_174 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_174 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 10%;
	
	
	}

#stacks_in_174 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	
	
	 text-transform: uppercase;}

@media screen and (max-width: 770px){
	#stacks_in_174 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_174 .content_in a.depth_button:hover{
	color: rgba(230, 73, 30, 1.00);
	background: rgba(255, 255, 255, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_174 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	 text-transform: uppercase;
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_174 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -460px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_174 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_174 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_174 .depth_aside_wrapper,
#stacks_in_174 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_174 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_174 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_174 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_174 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_174 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_174 .depth_in{z-index: 4;}
#stacks_in_174 .depth_tint{z-index: 3;}
#stacks_in_174 .depth_gradient{z-index: 2;}
#stacks_in_174 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_174 hr{border: 0;margin: 0;}

#stacks_in_174 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(241, 16, 70, 1.00);
	display: inline-block;}

#stacks_in_174 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(241, 16, 70, 1.00);
	display: inline-block;}

#stacks_in_174 hr.hr_bottom_content{
	display: inline-block;
	height: 1px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}/* -- Start Svg Each css Template -- */


#stacks_in_176 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_176svgwrapper{
	position: relative;
}



#stacks_in_176 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_176 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_176 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_out_176 {
	width: 61%;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_179 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 770px){
	#stacks_in_179 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_179 .depth_section_link:hover .depth_in,
#stacks_in_179 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}





#stacks_in_179.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_179.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_179 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_179 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: 50% 50%;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(251, 255, 255, 0.00);
	background-size: cover;
	
}





#stacks_in_179 .depth_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_179 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_179 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_179 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_179 .heading_in{
	padding: 3px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_179 .heading_out h2{
	font-size: 29px;
	line-height: 38px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -2px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_179 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

#stacks_in_179 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

/* Content */

#stacks_in_179 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 460px; 
	

	
	 text-align: center; 
	
	padding: 10% 50px 10% 50px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_179 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_179 .depth_tint,
	#stacks_in_179 .content_tint{ background: none !important; }
	#stacks_in_179 .heading_out h2,
	#stacks_in_179 .content_out{
		
		 text-align: center !important; 
		
	}
	
}


#stacks_in_179 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_179 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_179 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 10%;
	
	
	}

#stacks_in_179 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	
	
	 text-transform: uppercase;}

@media screen and (max-width: 770px){
	#stacks_in_179 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_179 .content_in a.depth_button:hover{
	color: rgba(230, 73, 30, 1.00);
	background: rgba(255, 255, 255, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_179 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	 text-transform: uppercase;
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_179 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -460px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_179 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_179 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_179 .depth_aside_wrapper,
#stacks_in_179 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_179 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_179 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_179 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_179 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_179 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_179 .depth_in{z-index: 4;}
#stacks_in_179 .depth_tint{z-index: 3;}
#stacks_in_179 .depth_gradient{z-index: 2;}
#stacks_in_179 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_179 hr{border: 0;margin: 0;}

#stacks_in_179 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_179 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_179 hr.hr_bottom_content{
	display: inline-block;
	height: 1px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}/* -- Start Svg Each css Template -- */


#stacks_in_181 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_181svgwrapper{
	position: relative;
}



#stacks_in_181 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_181 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_181 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_out_181 {
	width: 61%;
}
#stacks_in_633>.s3_row {
	margin: 0 -0px;
}

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

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




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










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



}



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


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


}





/* Depth Content */

@media (min-width: 300px){
	#stacks_in_635 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 770px){
	#stacks_in_635 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_635 .depth_section_link:hover .depth_in,
#stacks_in_635 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}





#stacks_in_635.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_635.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_635 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_635 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: 50% 50%;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(251, 255, 255, 0.00);
	background-size: cover;
	
}





#stacks_in_635 .depth_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_635 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_635 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_635 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_635 .heading_in{
	padding: 3px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_635 .heading_out h2{
	font-size: 29px;
	line-height: 38px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -2px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_635 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

#stacks_in_635 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

/* Content */

#stacks_in_635 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 460px; 
	

	
	 text-align: center; 
	
	padding: 10% 50px 10% 50px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_635 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_635 .depth_tint,
	#stacks_in_635 .content_tint{ background: none !important; }
	#stacks_in_635 .heading_out h2,
	#stacks_in_635 .content_out{
		
		 text-align: center !important; 
		
	}
	
}


#stacks_in_635 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_635 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_635 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 10%;
	
	
	}

#stacks_in_635 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	
	
	 text-transform: uppercase;}

@media screen and (max-width: 770px){
	#stacks_in_635 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_635 .content_in a.depth_button:hover{
	color: rgba(230, 73, 30, 1.00);
	background: rgba(255, 255, 255, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_635 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	 text-transform: uppercase;
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_635 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -460px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_635 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_635 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_635 .depth_aside_wrapper,
#stacks_in_635 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_635 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_635 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_635 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_635 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_635 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_635 .depth_in{z-index: 4;}
#stacks_in_635 .depth_tint{z-index: 3;}
#stacks_in_635 .depth_gradient{z-index: 2;}
#stacks_in_635 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_635 hr{border: 0;margin: 0;}

#stacks_in_635 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(241, 16, 70, 1.00);
	display: inline-block;}

#stacks_in_635 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(241, 16, 70, 1.00);
	display: inline-block;}

#stacks_in_635 hr.hr_bottom_content{
	display: inline-block;
	height: 1px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}/* -- Start Svg Each css Template -- */


#stacks_in_637 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_637svgwrapper{
	position: relative;
}



#stacks_in_637 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_637 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_637 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_out_637 {
	width: 61%;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_640 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 770px){
	#stacks_in_640 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_640 .depth_section_link:hover .depth_in,
#stacks_in_640 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}





#stacks_in_640.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_640.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_640 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_640 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: 50% 50%;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(251, 255, 255, 0.00);
	background-size: cover;
	
}





#stacks_in_640 .depth_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_640 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_640 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_640 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_640 .heading_in{
	padding: 3px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_640 .heading_out h2{
	font-size: 29px;
	line-height: 38px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -2px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_640 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

#stacks_in_640 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

/* Content */

#stacks_in_640 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 460px; 
	

	
	 text-align: center; 
	
	padding: 10% 50px 10% 50px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_640 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_640 .depth_tint,
	#stacks_in_640 .content_tint{ background: none !important; }
	#stacks_in_640 .heading_out h2,
	#stacks_in_640 .content_out{
		
		 text-align: center !important; 
		
	}
	
}


#stacks_in_640 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_640 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_640 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 10%;
	
	
	}

#stacks_in_640 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	
	
	 text-transform: uppercase;}

@media screen and (max-width: 770px){
	#stacks_in_640 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_640 .content_in a.depth_button:hover{
	color: rgba(230, 73, 30, 1.00);
	background: rgba(255, 255, 255, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_640 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	 text-transform: uppercase;
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_640 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -460px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_640 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_640 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_640 .depth_aside_wrapper,
#stacks_in_640 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_640 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_640 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_640 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_640 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_640 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_640 .depth_in{z-index: 4;}
#stacks_in_640 .depth_tint{z-index: 3;}
#stacks_in_640 .depth_gradient{z-index: 2;}
#stacks_in_640 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_640 hr{border: 0;margin: 0;}

#stacks_in_640 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_640 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_640 hr.hr_bottom_content{
	display: inline-block;
	height: 1px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}/* -- Start Svg Each css Template -- */


#stacks_in_642 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_642svgwrapper{
	position: relative;
}



#stacks_in_642 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_642 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_642 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_out_642 {
	width: 61%;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_86 .content_flex{
		min-height: 250px;
	}
}

@media (min-width: 770px){
	#stacks_in_86 .content_flex{
		min-height: 200px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_86 .depth_section_link:hover .depth_in,
#stacks_in_86 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}




	#stacks_in_86{margin-bottom: 0;}


#stacks_in_86.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_86.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_86 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_86 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: 50% 50%;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-86.jpg);
	
	
	
}





#stacks_in_86 .depth_tint{ background: rgba(12, 18, 20, 0.51); }

#stacks_in_86 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_86 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_86 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_86 .heading_in{
	padding: 3px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_86 .heading_out h2{
	font-size: 29px;
	line-height: 38px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	
	
	
	
	 text-align: center !important; 
	
	 text-transform: uppercase;
	letter-spacing: 0px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_86 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	
	 text-transform: uppercase;
	float: none;}

#stacks_in_86 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

/* Content */

#stacks_in_86 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 460px; 
	

	
	 text-align: center; 
	
	padding: 12% 50px 15% 50px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_86 .content_out{
		padding: 21% 30px 10% 30px;
		margin: 0 0%;}
	#stacks_in_86 .heading_out h2{
		font-size: 28px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_86 .depth_wrapper{background-color: rgba(12, 18, 20, 0.51);}
	#stacks_in_86 .depth_tint,
	#stacks_in_86 .content_tint{ background: none !important; }
	#stacks_in_86 .heading_out h2,
	#stacks_in_86 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_86 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_86 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_86 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_86 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.20em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 10%;
	
	
	 display: none; }

#stacks_in_86 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	
	
	 text-transform: uppercase;}

@media screen and (max-width: 770px){
	#stacks_in_86 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_86 .content_in a.depth_button:hover{
	color: rgba(230, 73, 30, 1.00);
	background: rgba(255, 255, 255, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_86 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	 text-transform: uppercase;
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_86 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -460px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_86 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_86 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_86 .depth_aside_wrapper,
#stacks_in_86 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_86 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_86 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_86 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_86 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_86 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_86 .depth_in{z-index: 4;}
#stacks_in_86 .depth_tint{z-index: 3;}
#stacks_in_86 .depth_gradient{z-index: 2;}
#stacks_in_86 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_86 .depth_wrapper.content_tint,
	#stacks_in_86 .depth_gradient{display: none;}
}




/* Breaks */

#stacks_in_86 hr{border: 0;margin: 0;}

#stacks_in_86 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_86 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_86 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}/* Depth Limit */

#stacks_in_290 .depth_limit {
	max-width: 1300px;
}
#stacks_in_290 .depth_limit_padding {
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_290 .depth_limit_padding {
		padding: 0px 0px 0px 0px;
	}
}

/* Depth Limit Gradient*/

#stacks_in_290.depth_limit_wrapper{
	   
	background-image: -webkit-linear-gradient(top, rgba(232, 235, 245, 0.00) 0%,rgba(0, 0, 0, 0.00) 95%);
	background-image: linear-gradient(to bottom, rgba(232, 235, 245, 0.00) 0%,rgba(0, 0, 0, 0.00) 95%);
	

	
}




div#overons {
  
  
  
  
}

/* Depth Content */

@media (min-width: 300px){
	#stacks_in_437 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 900px){
	#stacks_in_437 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_437 .depth_section_link:hover .depth_in,
#stacks_in_437 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_437{margin-left: 0;margin-right: 0;}



	#stacks_in_437{margin-bottom: 0;}


#stacks_in_437.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_437.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_437 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_437 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_437 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_437 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_437 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_437 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_437 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_437 .heading_out h2{
	font-size: 29px;
	line-height: 30px;
	color: rgba(226, 73, 19, 1.00);
	font-weight: 500;
	
	
	
	
	 text-align: center !important; 
	
	 text-transform: uppercase;
	letter-spacing: 0px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_437 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_437 p.sub_heading{
	color: rgba(25, 23, 23, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	 display: none; 
	
	float: none;}

/* Content */

#stacks_in_437 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 12% 0px 6% 0px;
	margin: 0 10%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_437 .content_out{
		padding: 10% 50px 0% 50px;
		margin: 0 0%;}
	#stacks_in_437 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_437 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_437 .depth_tint,
	#stacks_in_437 .content_tint{ background: none !important; }
	#stacks_in_437 .heading_out h2,
	#stacks_in_437 .content_out{
		 text-align: left !important; 
		
		
	}
	
	#stacks_in_437 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_437 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_437 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_437 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1.10em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 10%;
	
	
	}

#stacks_in_437 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_437 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_437 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_437 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 15px;
	color: rgba(67, 73, 94, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_437 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_437 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_437 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_437 .depth_aside_wrapper,
#stacks_in_437 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_437 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_437 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_437 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_437 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_437 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_437 .depth_in{z-index: 4;}
#stacks_in_437 .depth_tint{z-index: 3;}
#stacks_in_437 .depth_gradient{z-index: 2;}
#stacks_in_437 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_437 .depth_wrapper.content_tint,
	#stacks_in_437 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_437 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_437 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_437 hr{border: 0;margin: 0;}

#stacks_in_437 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_437 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_437 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_in_435 {
	background-color: rgba(244, 247, 247, 1.00);
}
#stacks_in_581 *,
#stacks_in_581 *:before,
#stacks_in_581 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* -- Start Svg Each css Template -- */


#stacks_in_433 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_433svgwrapper{
	position: relative;
}



#stacks_in_433 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_433 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_433 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_out_433 {
	width: 61%;
}

div#catalysts {
  
  
  
  
}

/* Depth Content */

@media (min-width: 300px){
	#stacks_in_425 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 900px){
	#stacks_in_425 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_425 .depth_section_link:hover .depth_in,
#stacks_in_425 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_425{margin-left: 0;margin-right: 0;}



	#stacks_in_425{margin-bottom: 0;}


#stacks_in_425.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_425.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_425 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_425 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_425 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_425 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_425 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_425 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_425 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_425 .heading_out h2{
	font-size: 29px;
	line-height: 30px;
	color: rgba(226, 73, 19, 1.00);
	font-weight: 500;
	
	
	
	
	 text-align: center !important; 
	
	 text-transform: uppercase;
	letter-spacing: 0px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_425 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_425 p.sub_heading{
	color: rgba(25, 23, 23, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	 display: none; 
	
	float: none;}

/* Content */

#stacks_in_425 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 12% 0px 3% 0px;
	margin: 0 10%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_425 .content_out{
		padding: 10% 50px 0% 50px;
		margin: 0 0%;}
	#stacks_in_425 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_425 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_425 .depth_tint,
	#stacks_in_425 .content_tint{ background: none !important; }
	#stacks_in_425 .heading_out h2,
	#stacks_in_425 .content_out{
		 text-align: left !important; 
		
		
	}
	
	#stacks_in_425 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_425 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_425 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_425 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1.10em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 10%;
	
	
	}

#stacks_in_425 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_425 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_425 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_425 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_425 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_425 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_425 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_425 .depth_aside_wrapper,
#stacks_in_425 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_425 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_425 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_425 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_425 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_425 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_425 .depth_in{z-index: 4;}
#stacks_in_425 .depth_tint{z-index: 3;}
#stacks_in_425 .depth_gradient{z-index: 2;}
#stacks_in_425 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_425 .depth_wrapper.content_tint,
	#stacks_in_425 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_425 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_425 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_425 hr{border: 0;margin: 0;}

#stacks_in_425 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_425 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_425 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}#stacks_in_469>.s3_row {
	margin: 0 -0px;
}

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

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

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

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








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



}



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


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


}



/* Depth Content */

@media (min-width: 300px){
	#stacks_in_475 .content_flex{
		min-height: 650px;
	}
}

@media (min-width: 900px){
	#stacks_in_475 .content_flex{
		min-height: 465px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_475 .depth_section_link:hover .depth_in,
#stacks_in_475 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_475{margin-left: 0;margin-right: 0;}



	#stacks_in_475{margin-bottom: 0;}


#stacks_in_475.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_475.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_475 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_475 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_475 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_475 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_475 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_475 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_475 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_475 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_475 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_475 p.sub_heading{
	color: rgba(12, 19, 33, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_475 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 3% 0px 12% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_475 .content_out{
		padding: 6% 50px 0% 50px;
		margin: 0 0%;}
	#stacks_in_475 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_475 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_475 .depth_tint,
	#stacks_in_475 .content_tint{ background: none !important; }
	#stacks_in_475 .heading_out h2,
	#stacks_in_475 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_475 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_475 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_475 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_475 .content_in p.main_content{
	display: block;
	color: rgba(84, 92, 113, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_475 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_475 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_475 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_475 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_475 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_475 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_475 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_475 .depth_aside_wrapper,
#stacks_in_475 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_475 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_475 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_475 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_475 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_475 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_475 .depth_in{z-index: 4;}
#stacks_in_475 .depth_tint{z-index: 3;}
#stacks_in_475 .depth_gradient{z-index: 2;}
#stacks_in_475 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_475 .depth_wrapper.content_tint,
	#stacks_in_475 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_475 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_475 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_475 hr{border: 0;margin: 0;}

#stacks_in_475 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_475 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_475 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_out_494 {
	width: 45%;
}
/* --------------------------------

Primary style

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

body.overflow-hidden {
  /* used when modal is visible */
  overflow: hidden;
}

body.overflow-hidden .cd-modal {
  display: block !important;
}


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

Main Components

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


#stacks_in_513 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_513 .cd-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  -moz-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
}


#stacks_in_513 .cd-modal .cd-modal-content {
  box-sizing: border-box;
  
	height: 100%;
  width: 100%;
  padding: 3em 5%;
	color: #FFFFFF;
	
  text-align: left;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#stacks_in_513 .cd-modal-content a,
#stacks_in_513 .cd-modal-content a:visited {
	color: #DE425A;
}

#stacks_in_513 .cd-modal-content a:hover,
#stacks_in_513 .cd-modal-content a:active {
	color: #B13448;
}

#stacks_in_513 .modal-is-visible .cd-modal {
  z-index: 300000 !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  -moz-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
}

#stacks_in_513 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


@media only screen and (min-width: 768px) {
  #stacks_in_513 .cd-modal .cd-modal-content {
    padding: 4em 10%;
  }
}

@media only screen and (min-width: 1170px) {
  #stacks_in_513 .cd-modal .cd-modal-content {
    padding: 6em 20%;
  }
}


#stacks_in_513 .cd-modal-action {
  position: relative;
}

#stacks_in_513 .cd-modal-action .modal_btn, #stacks_in_513 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #F4F7F7;
}

#stacks_in_513 .modal_btn,
#stacks_in_513 .cd-modal-close {
  text-decoration: none !important;
  border: none !important;
}

#stacks_in_513 .cd-modal-action .modal_btn {
	
  border-radius: 5em;
	
  color: #ffffff;
  line-height: 4em;
  white-space: nowrap;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.2s 0.3s, width 0.3s 0s;
  -moz-transition: color 0.2s 0.3s, width 0.3s 0s;
  transition: color 0.2s 0.3s, width 0.3s 0s;
	overflow: hidden;
}

@media only screen {
	#stacks_in_513 .cd-modal-action .modal_btn {
		width: 225px;
	}
}

@media only screen and (max-width: 720px) {
	#stacks_in_513 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	#stacks_in_513 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

#stacks_in_513 .cd-modal-action .modal_btn i {
	margin-right: 6px;
}

#stacks_in_513 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	color: transparent !important;
  -webkit-transition: color 0.2s 0s, width 0.3s 0.2s;
  -moz-transition: color 0.2s 0s, width 0.3s 0.2s;
  transition: color 0.2s 0s, width 0.3s 0.2s;
}

#stacks_in_513 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
  border-radius: 50%;
	
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-2em);
  -moz-transform: translateX(-2em);
  -ms-transform: translateX(-2em);
  -o-transform: translateX(-2em);
  transform: translateX(-2em);
  -webkit-transition: visibility 0s 0.5s;
  -moz-transition: visibility 0s 0.5s;
  transition: visibility 0s 0.5s;
}
#stacks_in_513 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_513 .cd-modal-close {
  position: fixed;
  z-index: 300001  !important;
  top: 10px;
  right: 10px;
	display: block;
  height: 50px;
  width: 50px;
	
  border-radius: 50%;
	
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../index_files/cd-icon-close.png);
  background-repeat: no-repeat;
  background-position: center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}
#stacks_in_513 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_513 .modal-is-visible .cd-modal-close {
  visibility: visible;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
@media only screen and (min-width: 768px) {
  #stacks_in_513 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

#stacks_in_513 .cd-modal-action a,
#stacks_in_513 .cd-modal-action a:visited,
#stacks_in_513 .cd-modal-action a:hover,
#stacks_in_513 .cd-modal-action a:active {
		color: #214554 !important;
		text-decoration: none;
}


/* Font Selections */
  #stacks_in_513 .cd-modal-action .modal_btn {
  }





/* Depth Content */

@media (min-width: 300px){
	#stacks_in_515 .content_flex{
		min-height: 650px;
	}
}

@media (min-width: 900px){
	#stacks_in_515 .content_flex{
		min-height: 426px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_515 .depth_section_link:hover .depth_in,
#stacks_in_515 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_515{margin-left: 0;margin-right: 0;}



	#stacks_in_515{margin-bottom: 0;}


#stacks_in_515.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_515.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_515 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_515 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_515 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_515 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_515 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_515 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_515 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_515 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_515 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_515 p.sub_heading{
	color: rgba(12, 19, 33, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_515 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 3% 0px 12% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_515 .content_out{
		padding: 6% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_515 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_515 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_515 .depth_tint,
	#stacks_in_515 .content_tint{ background: none !important; }
	#stacks_in_515 .heading_out h2,
	#stacks_in_515 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_515 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_515 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_515 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_515 .content_in p.main_content{
	display: block;
	color: rgba(84, 92, 113, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_515 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_515 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_515 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_515 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_515 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_515 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_515 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_515 .depth_aside_wrapper,
#stacks_in_515 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_515 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_515 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_515 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_515 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_515 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_515 .depth_in{z-index: 4;}
#stacks_in_515 .depth_tint{z-index: 3;}
#stacks_in_515 .depth_gradient{z-index: 2;}
#stacks_in_515 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_515 .depth_wrapper.content_tint,
	#stacks_in_515 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_515 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_515 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_515 hr{border: 0;margin: 0;}

#stacks_in_515 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_515 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_515 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_out_517 {
	width: 45%;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_482 .content_flex{
		min-height: 650px;
	}
}

@media (min-width: 900px){
	#stacks_in_482 .content_flex{
		min-height: 465px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_482 .depth_section_link:hover .depth_in,
#stacks_in_482 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_482{margin-left: 0;margin-right: 0;}



	#stacks_in_482{margin-bottom: 0;}


#stacks_in_482.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_482.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_482 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_482 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_482 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_482 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_482 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_482 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_482 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_482 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_482 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_482 p.sub_heading{
	color: rgba(12, 19, 33, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_482 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 3% 0px 12% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_482 .content_out{
		padding: 6% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_482 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_482 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_482 .depth_tint,
	#stacks_in_482 .content_tint{ background: none !important; }
	#stacks_in_482 .heading_out h2,
	#stacks_in_482 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_482 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_482 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_482 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_482 .content_in p.main_content{
	display: block;
	color: rgba(84, 92, 113, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_482 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_482 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_482 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_482 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_482 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_482 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_482 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_482 .depth_aside_wrapper,
#stacks_in_482 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_482 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_482 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_482 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_482 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_482 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_482 .depth_in{z-index: 4;}
#stacks_in_482 .depth_tint{z-index: 3;}
#stacks_in_482 .depth_gradient{z-index: 2;}
#stacks_in_482 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_482 .depth_wrapper.content_tint,
	#stacks_in_482 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_482 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_482 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_482 hr{border: 0;margin: 0;}

#stacks_in_482 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_482 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_482 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_out_498 {
	width: 45%;
}
/* --------------------------------

Primary style

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

body.overflow-hidden {
  /* used when modal is visible */
  overflow: hidden;
}

body.overflow-hidden .cd-modal {
  display: block !important;
}


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

Main Components

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


#stacks_in_524 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_524 .cd-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  -moz-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
}


#stacks_in_524 .cd-modal .cd-modal-content {
  box-sizing: border-box;
  
	height: 100%;
  width: 100%;
  padding: 3em 5%;
	color: #FFFFFF;
	
  text-align: left;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#stacks_in_524 .cd-modal-content a,
#stacks_in_524 .cd-modal-content a:visited {
	color: #DE425A;
}

#stacks_in_524 .cd-modal-content a:hover,
#stacks_in_524 .cd-modal-content a:active {
	color: #B13448;
}

#stacks_in_524 .modal-is-visible .cd-modal {
  z-index: 300000 !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  -moz-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
}

#stacks_in_524 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


@media only screen and (min-width: 768px) {
  #stacks_in_524 .cd-modal .cd-modal-content {
    padding: 4em 10%;
  }
}

@media only screen and (min-width: 1170px) {
  #stacks_in_524 .cd-modal .cd-modal-content {
    padding: 6em 20%;
  }
}


#stacks_in_524 .cd-modal-action {
  position: relative;
}

#stacks_in_524 .cd-modal-action .modal_btn, #stacks_in_524 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #F4F7F7;
}

#stacks_in_524 .modal_btn,
#stacks_in_524 .cd-modal-close {
  text-decoration: none !important;
  border: none !important;
}

#stacks_in_524 .cd-modal-action .modal_btn {
	
  border-radius: 5em;
	
  color: #ffffff;
  line-height: 4em;
  white-space: nowrap;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.2s 0.3s, width 0.3s 0s;
  -moz-transition: color 0.2s 0.3s, width 0.3s 0s;
  transition: color 0.2s 0.3s, width 0.3s 0s;
	overflow: hidden;
}

@media only screen {
	#stacks_in_524 .cd-modal-action .modal_btn {
		width: 225px;
	}
}

@media only screen and (max-width: 720px) {
	#stacks_in_524 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	#stacks_in_524 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

#stacks_in_524 .cd-modal-action .modal_btn i {
	margin-right: 6px;
}

#stacks_in_524 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	color: transparent !important;
  -webkit-transition: color 0.2s 0s, width 0.3s 0.2s;
  -moz-transition: color 0.2s 0s, width 0.3s 0.2s;
  transition: color 0.2s 0s, width 0.3s 0.2s;
}

#stacks_in_524 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
  border-radius: 50%;
	
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-2em);
  -moz-transform: translateX(-2em);
  -ms-transform: translateX(-2em);
  -o-transform: translateX(-2em);
  transform: translateX(-2em);
  -webkit-transition: visibility 0s 0.5s;
  -moz-transition: visibility 0s 0.5s;
  transition: visibility 0s 0.5s;
}
#stacks_in_524 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_524 .cd-modal-close {
  position: fixed;
  z-index: 300001  !important;
  top: 10px;
  right: 10px;
	display: block;
  height: 50px;
  width: 50px;
	
  border-radius: 50%;
	
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../index_files/cd-icon-close.png);
  background-repeat: no-repeat;
  background-position: center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}
#stacks_in_524 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_524 .modal-is-visible .cd-modal-close {
  visibility: visible;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
@media only screen and (min-width: 768px) {
  #stacks_in_524 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

#stacks_in_524 .cd-modal-action a,
#stacks_in_524 .cd-modal-action a:visited,
#stacks_in_524 .cd-modal-action a:hover,
#stacks_in_524 .cd-modal-action a:active {
		color: #214554 !important;
		text-decoration: none;
}


/* Font Selections */
  #stacks_in_524 .cd-modal-action .modal_btn {
  }





/* Depth Content */

@media (min-width: 300px){
	#stacks_in_533 .content_flex{
		min-height: 650px;
	}
}

@media (min-width: 900px){
	#stacks_in_533 .content_flex{
		min-height: 426px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_533 .depth_section_link:hover .depth_in,
#stacks_in_533 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_533{margin-left: 0;margin-right: 0;}



	#stacks_in_533{margin-bottom: 0;}


#stacks_in_533.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_533.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_533 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_533 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_533 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_533 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_533 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_533 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_533 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_533 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_533 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_533 p.sub_heading{
	color: rgba(12, 19, 33, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_533 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 3% 0px 12% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_533 .content_out{
		padding: 6% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_533 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_533 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_533 .depth_tint,
	#stacks_in_533 .content_tint{ background: none !important; }
	#stacks_in_533 .heading_out h2,
	#stacks_in_533 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_533 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_533 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_533 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_533 .content_in p.main_content{
	display: block;
	color: rgba(84, 92, 113, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_533 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_533 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_533 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_533 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_533 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_533 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_533 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_533 .depth_aside_wrapper,
#stacks_in_533 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_533 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_533 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_533 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_533 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_533 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_533 .depth_in{z-index: 4;}
#stacks_in_533 .depth_tint{z-index: 3;}
#stacks_in_533 .depth_gradient{z-index: 2;}
#stacks_in_533 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_533 .depth_wrapper.content_tint,
	#stacks_in_533 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_533 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_533 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_533 hr{border: 0;margin: 0;}

#stacks_in_533 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_533 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_533 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_out_535 {
	width: 45%;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_489 .content_flex{
		min-height: 650px;
	}
}

@media (min-width: 900px){
	#stacks_in_489 .content_flex{
		min-height: 465px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_489 .depth_section_link:hover .depth_in,
#stacks_in_489 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_489{margin-left: 0;margin-right: 0;}



	#stacks_in_489{margin-bottom: 0;}


#stacks_in_489.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_489.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_489 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_489 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_489 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_489 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_489 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_489 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_489 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_489 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_489 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_489 p.sub_heading{
	color: rgba(12, 19, 33, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_489 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 3% 0px 12% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_489 .content_out{
		padding: 6% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_489 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_489 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_489 .depth_tint,
	#stacks_in_489 .content_tint{ background: none !important; }
	#stacks_in_489 .heading_out h2,
	#stacks_in_489 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_489 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_489 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_489 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_489 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_489 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_489 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_489 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_489 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_489 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_489 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_489 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_489 .depth_aside_wrapper,
#stacks_in_489 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_489 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_489 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_489 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_489 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_489 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_489 .depth_in{z-index: 4;}
#stacks_in_489 .depth_tint{z-index: 3;}
#stacks_in_489 .depth_gradient{z-index: 2;}
#stacks_in_489 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_489 .depth_wrapper.content_tint,
	#stacks_in_489 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_489 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_489 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_489 hr{border: 0;margin: 0;}

#stacks_in_489 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_489 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_489 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_out_496 {
	width: 45%;
}
/* --------------------------------

Primary style

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

body.overflow-hidden {
  /* used when modal is visible */
  overflow: hidden;
}

body.overflow-hidden .cd-modal {
  display: block !important;
}


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

Main Components

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


#stacks_in_547 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_547 .cd-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  -moz-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
}


#stacks_in_547 .cd-modal .cd-modal-content {
  box-sizing: border-box;
  
	height: 100%;
  width: 100%;
  padding: 3em 5%;
	color: #FFFFFF;
	
  text-align: left;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#stacks_in_547 .cd-modal-content a,
#stacks_in_547 .cd-modal-content a:visited {
	color: #DE425A;
}

#stacks_in_547 .cd-modal-content a:hover,
#stacks_in_547 .cd-modal-content a:active {
	color: #B13448;
}

#stacks_in_547 .modal-is-visible .cd-modal {
  z-index: 300000 !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  -moz-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
}

#stacks_in_547 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


@media only screen and (min-width: 768px) {
  #stacks_in_547 .cd-modal .cd-modal-content {
    padding: 4em 10%;
  }
}

@media only screen and (min-width: 1170px) {
  #stacks_in_547 .cd-modal .cd-modal-content {
    padding: 6em 20%;
  }
}


#stacks_in_547 .cd-modal-action {
  position: relative;
}

#stacks_in_547 .cd-modal-action .modal_btn, #stacks_in_547 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #F4F7F7;
}

#stacks_in_547 .modal_btn,
#stacks_in_547 .cd-modal-close {
  text-decoration: none !important;
  border: none !important;
}

#stacks_in_547 .cd-modal-action .modal_btn {
	
  border-radius: 5em;
	
  color: #ffffff;
  line-height: 4em;
  white-space: nowrap;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.2s 0.3s, width 0.3s 0s;
  -moz-transition: color 0.2s 0.3s, width 0.3s 0s;
  transition: color 0.2s 0.3s, width 0.3s 0s;
	overflow: hidden;
}

@media only screen {
	#stacks_in_547 .cd-modal-action .modal_btn {
		width: 225px;
	}
}

@media only screen and (max-width: 720px) {
	#stacks_in_547 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	#stacks_in_547 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

#stacks_in_547 .cd-modal-action .modal_btn i {
	margin-right: 6px;
}

#stacks_in_547 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	color: transparent !important;
  -webkit-transition: color 0.2s 0s, width 0.3s 0.2s;
  -moz-transition: color 0.2s 0s, width 0.3s 0.2s;
  transition: color 0.2s 0s, width 0.3s 0.2s;
}

#stacks_in_547 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
  border-radius: 50%;
	
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-2em);
  -moz-transform: translateX(-2em);
  -ms-transform: translateX(-2em);
  -o-transform: translateX(-2em);
  transform: translateX(-2em);
  -webkit-transition: visibility 0s 0.5s;
  -moz-transition: visibility 0s 0.5s;
  transition: visibility 0s 0.5s;
}
#stacks_in_547 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_547 .cd-modal-close {
  position: fixed;
  z-index: 300001  !important;
  top: 10px;
  right: 10px;
	display: block;
  height: 50px;
  width: 50px;
	
  border-radius: 50%;
	
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../index_files/cd-icon-close.png);
  background-repeat: no-repeat;
  background-position: center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}
#stacks_in_547 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_547 .modal-is-visible .cd-modal-close {
  visibility: visible;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
@media only screen and (min-width: 768px) {
  #stacks_in_547 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

#stacks_in_547 .cd-modal-action a,
#stacks_in_547 .cd-modal-action a:visited,
#stacks_in_547 .cd-modal-action a:hover,
#stacks_in_547 .cd-modal-action a:active {
		color: #214554 !important;
		text-decoration: none;
}


/* Font Selections */
  #stacks_in_547 .cd-modal-action .modal_btn {
  }





/* Depth Content */

@media (min-width: 300px){
	#stacks_in_556 .content_flex{
		min-height: 650px;
	}
}

@media (min-width: 900px){
	#stacks_in_556 .content_flex{
		min-height: 426px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_556 .depth_section_link:hover .depth_in,
#stacks_in_556 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_556{margin-left: 0;margin-right: 0;}



	#stacks_in_556{margin-bottom: 0;}


#stacks_in_556.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_556.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_556 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_556 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_556 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_556 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_556 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_556 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_556 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_556 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_556 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_556 p.sub_heading{
	color: rgba(12, 19, 33, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_556 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 3% 0px 12% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_556 .content_out{
		padding: 6% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_556 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_556 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_556 .depth_tint,
	#stacks_in_556 .content_tint{ background: none !important; }
	#stacks_in_556 .heading_out h2,
	#stacks_in_556 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_556 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_556 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_556 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_556 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_556 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_556 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_556 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_556 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_556 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_556 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_556 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_556 .depth_aside_wrapper,
#stacks_in_556 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_556 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_556 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_556 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_556 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_556 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_556 .depth_in{z-index: 4;}
#stacks_in_556 .depth_tint{z-index: 3;}
#stacks_in_556 .depth_gradient{z-index: 2;}
#stacks_in_556 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_556 .depth_wrapper.content_tint,
	#stacks_in_556 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_556 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_556 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_556 hr{border: 0;margin: 0;}

#stacks_in_556 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_556 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_556 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_out_558 {
	width: 45%;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_664 .content_flex{
		min-height: 500px;
	}
}

@media (min-width: 900px){
	#stacks_in_664 .content_flex{
		min-height: 465px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_664 .depth_section_link:hover .depth_in,
#stacks_in_664 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_664{margin-left: 0;margin-right: 0;}



	#stacks_in_664{margin-bottom: 0;}


#stacks_in_664.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_664.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_664 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_664 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_664 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_664 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_664 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_664 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_664 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_664 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_664 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_664 p.sub_heading{
	color: rgba(12, 19, 33, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_664 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 3% 0px 3% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_664 .content_out{
		padding: 6% 50px 0% 50px;
		margin: 0 0%;}
	#stacks_in_664 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_664 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_664 .depth_tint,
	#stacks_in_664 .content_tint{ background: none !important; }
	#stacks_in_664 .heading_out h2,
	#stacks_in_664 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_664 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_664 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_664 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_664 .content_in p.main_content{
	display: block;
	color: rgba(84, 92, 113, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_664 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_664 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_664 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_664 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_664 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_664 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_664 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_664 .depth_aside_wrapper,
#stacks_in_664 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_664 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_664 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_664 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_664 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_664 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_664 .depth_in{z-index: 4;}
#stacks_in_664 .depth_tint{z-index: 3;}
#stacks_in_664 .depth_gradient{z-index: 2;}
#stacks_in_664 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_664 .depth_wrapper.content_tint,
	#stacks_in_664 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_664 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_664 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_664 hr{border: 0;margin: 0;}

#stacks_in_664 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_664 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_664 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_out_666 {
	width: 45%;
}
/* --------------------------------

Primary style

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

body.overflow-hidden {
  /* used when modal is visible */
  overflow: hidden;
}

body.overflow-hidden .cd-modal {
  display: block !important;
}


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

Main Components

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


#stacks_in_669 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_669 .cd-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  -moz-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
}


#stacks_in_669 .cd-modal .cd-modal-content {
  box-sizing: border-box;
  
	height: 100%;
  width: 100%;
  padding: 3em 5%;
	color: #FFFFFF;
	
  text-align: left;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#stacks_in_669 .cd-modal-content a,
#stacks_in_669 .cd-modal-content a:visited {
	color: #DE425A;
}

#stacks_in_669 .cd-modal-content a:hover,
#stacks_in_669 .cd-modal-content a:active {
	color: #B13448;
}

#stacks_in_669 .modal-is-visible .cd-modal {
  z-index: 300000 !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  -moz-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
}

#stacks_in_669 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


@media only screen and (min-width: 768px) {
  #stacks_in_669 .cd-modal .cd-modal-content {
    padding: 4em 10%;
  }
}

@media only screen and (min-width: 1170px) {
  #stacks_in_669 .cd-modal .cd-modal-content {
    padding: 6em 20%;
  }
}


#stacks_in_669 .cd-modal-action {
  position: relative;
}

#stacks_in_669 .cd-modal-action .modal_btn, #stacks_in_669 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #F4F7F7;
}

#stacks_in_669 .modal_btn,
#stacks_in_669 .cd-modal-close {
  text-decoration: none !important;
  border: none !important;
}

#stacks_in_669 .cd-modal-action .modal_btn {
	
  border-radius: 5em;
	
  color: #ffffff;
  line-height: 4em;
  white-space: nowrap;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.2s 0.3s, width 0.3s 0s;
  -moz-transition: color 0.2s 0.3s, width 0.3s 0s;
  transition: color 0.2s 0.3s, width 0.3s 0s;
	overflow: hidden;
}

@media only screen {
	#stacks_in_669 .cd-modal-action .modal_btn {
		width: 225px;
	}
}

@media only screen and (max-width: 720px) {
	#stacks_in_669 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	#stacks_in_669 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

#stacks_in_669 .cd-modal-action .modal_btn i {
	margin-right: 6px;
}

#stacks_in_669 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	color: transparent !important;
  -webkit-transition: color 0.2s 0s, width 0.3s 0.2s;
  -moz-transition: color 0.2s 0s, width 0.3s 0.2s;
  transition: color 0.2s 0s, width 0.3s 0.2s;
}

#stacks_in_669 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
  border-radius: 50%;
	
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-2em);
  -moz-transform: translateX(-2em);
  -ms-transform: translateX(-2em);
  -o-transform: translateX(-2em);
  transform: translateX(-2em);
  -webkit-transition: visibility 0s 0.5s;
  -moz-transition: visibility 0s 0.5s;
  transition: visibility 0s 0.5s;
}
#stacks_in_669 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_669 .cd-modal-close {
  position: fixed;
  z-index: 300001  !important;
  top: 10px;
  right: 10px;
	display: block;
  height: 50px;
  width: 50px;
	
  border-radius: 50%;
	
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../index_files/cd-icon-close.png);
  background-repeat: no-repeat;
  background-position: center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}
#stacks_in_669 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_669 .modal-is-visible .cd-modal-close {
  visibility: visible;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
@media only screen and (min-width: 768px) {
  #stacks_in_669 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

#stacks_in_669 .cd-modal-action a,
#stacks_in_669 .cd-modal-action a:visited,
#stacks_in_669 .cd-modal-action a:hover,
#stacks_in_669 .cd-modal-action a:active {
		color: #214554 !important;
		text-decoration: none;
}


/* Font Selections */
  #stacks_in_669 .cd-modal-action .modal_btn {
  }





/* Depth Content */

@media (min-width: 300px){
	#stacks_in_671 .content_flex{
		min-height: 650px;
	}
}

@media (min-width: 900px){
	#stacks_in_671 .content_flex{
		min-height: 426px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_671 .depth_section_link:hover .depth_in,
#stacks_in_671 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_671{margin-left: 0;margin-right: 0;}



	#stacks_in_671{margin-bottom: 0;}


#stacks_in_671.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_671.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_671 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_671 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_671 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_671 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_671 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_671 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_671 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_671 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_671 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_671 p.sub_heading{
	color: rgba(12, 19, 33, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_671 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 3% 0px 12% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_671 .content_out{
		padding: 6% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_671 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_671 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_671 .depth_tint,
	#stacks_in_671 .content_tint{ background: none !important; }
	#stacks_in_671 .heading_out h2,
	#stacks_in_671 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_671 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_671 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_671 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_671 .content_in p.main_content{
	display: block;
	color: rgba(84, 92, 113, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_671 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_671 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_671 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_671 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_671 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_671 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_671 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_671 .depth_aside_wrapper,
#stacks_in_671 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_671 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_671 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_671 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_671 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_671 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_671 .depth_in{z-index: 4;}
#stacks_in_671 .depth_tint{z-index: 3;}
#stacks_in_671 .depth_gradient{z-index: 2;}
#stacks_in_671 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_671 .depth_wrapper.content_tint,
	#stacks_in_671 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_671 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_671 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_671 hr{border: 0;margin: 0;}

#stacks_in_671 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_671 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_671 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_out_673 {
	width: 45%;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_694 .content_flex{
		min-height: 500px;
	}
}

@media (min-width: 900px){
	#stacks_in_694 .content_flex{
		min-height: 465px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_694 .depth_section_link:hover .depth_in,
#stacks_in_694 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_694{margin-left: 0;margin-right: 0;}



	#stacks_in_694{margin-bottom: 0;}


#stacks_in_694.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_694.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_694 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_694 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_694 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_694 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_694 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_694 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_694 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_694 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_694 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_694 p.sub_heading{
	color: rgba(12, 19, 33, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_694 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 3% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_694 .content_out{
		padding: 6% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_694 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_694 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_694 .depth_tint,
	#stacks_in_694 .content_tint{ background: none !important; }
	#stacks_in_694 .heading_out h2,
	#stacks_in_694 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_694 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_694 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_694 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_694 .content_in p.main_content{
	display: block;
	color: rgba(84, 92, 113, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_694 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_694 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_694 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_694 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_694 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_694 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_694 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_694 .depth_aside_wrapper,
#stacks_in_694 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_694 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_694 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_694 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_694 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_694 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_694 .depth_in{z-index: 4;}
#stacks_in_694 .depth_tint{z-index: 3;}
#stacks_in_694 .depth_gradient{z-index: 2;}
#stacks_in_694 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_694 .depth_wrapper.content_tint,
	#stacks_in_694 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_694 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_694 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_694 hr{border: 0;margin: 0;}

#stacks_in_694 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_694 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_694 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_out_696 {
	width: 45%;
}
/* --------------------------------

Primary style

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

body.overflow-hidden {
  /* used when modal is visible */
  overflow: hidden;
}

body.overflow-hidden .cd-modal {
  display: block !important;
}


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

Main Components

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


#stacks_in_699 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_699 .cd-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  -moz-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
}


#stacks_in_699 .cd-modal .cd-modal-content {
  box-sizing: border-box;
  
	height: 100%;
  width: 100%;
  padding: 3em 5%;
	color: #FFFFFF;
	
  text-align: left;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#stacks_in_699 .cd-modal-content a,
#stacks_in_699 .cd-modal-content a:visited {
	color: #DE425A;
}

#stacks_in_699 .cd-modal-content a:hover,
#stacks_in_699 .cd-modal-content a:active {
	color: #B13448;
}

#stacks_in_699 .modal-is-visible .cd-modal {
  z-index: 300000 !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  -moz-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
}

#stacks_in_699 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


@media only screen and (min-width: 768px) {
  #stacks_in_699 .cd-modal .cd-modal-content {
    padding: 4em 10%;
  }
}

@media only screen and (min-width: 1170px) {
  #stacks_in_699 .cd-modal .cd-modal-content {
    padding: 6em 20%;
  }
}


#stacks_in_699 .cd-modal-action {
  position: relative;
}

#stacks_in_699 .cd-modal-action .modal_btn, #stacks_in_699 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #F4F7F7;
}

#stacks_in_699 .modal_btn,
#stacks_in_699 .cd-modal-close {
  text-decoration: none !important;
  border: none !important;
}

#stacks_in_699 .cd-modal-action .modal_btn {
	
  border-radius: 5em;
	
  color: #ffffff;
  line-height: 4em;
  white-space: nowrap;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.2s 0.3s, width 0.3s 0s;
  -moz-transition: color 0.2s 0.3s, width 0.3s 0s;
  transition: color 0.2s 0.3s, width 0.3s 0s;
	overflow: hidden;
}

@media only screen {
	#stacks_in_699 .cd-modal-action .modal_btn {
		width: 225px;
	}
}

@media only screen and (max-width: 720px) {
	#stacks_in_699 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	#stacks_in_699 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

#stacks_in_699 .cd-modal-action .modal_btn i {
	margin-right: 6px;
}

#stacks_in_699 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	color: transparent !important;
  -webkit-transition: color 0.2s 0s, width 0.3s 0.2s;
  -moz-transition: color 0.2s 0s, width 0.3s 0.2s;
  transition: color 0.2s 0s, width 0.3s 0.2s;
}

#stacks_in_699 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
  border-radius: 50%;
	
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-2em);
  -moz-transform: translateX(-2em);
  -ms-transform: translateX(-2em);
  -o-transform: translateX(-2em);
  transform: translateX(-2em);
  -webkit-transition: visibility 0s 0.5s;
  -moz-transition: visibility 0s 0.5s;
  transition: visibility 0s 0.5s;
}
#stacks_in_699 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_699 .cd-modal-close {
  position: fixed;
  z-index: 300001  !important;
  top: 10px;
  right: 10px;
	display: block;
  height: 50px;
  width: 50px;
	
  border-radius: 50%;
	
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../index_files/cd-icon-close.png);
  background-repeat: no-repeat;
  background-position: center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}
#stacks_in_699 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_699 .modal-is-visible .cd-modal-close {
  visibility: visible;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
@media only screen and (min-width: 768px) {
  #stacks_in_699 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

#stacks_in_699 .cd-modal-action a,
#stacks_in_699 .cd-modal-action a:visited,
#stacks_in_699 .cd-modal-action a:hover,
#stacks_in_699 .cd-modal-action a:active {
		color: #214554 !important;
		text-decoration: none;
}


/* Font Selections */
  #stacks_in_699 .cd-modal-action .modal_btn {
  }





/* Depth Content */

@media (min-width: 300px){
	#stacks_in_701 .content_flex{
		min-height: 650px;
	}
}

@media (min-width: 900px){
	#stacks_in_701 .content_flex{
		min-height: 426px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_701 .depth_section_link:hover .depth_in,
#stacks_in_701 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_701{margin-left: 0;margin-right: 0;}



	#stacks_in_701{margin-bottom: 0;}


#stacks_in_701.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_701.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_701 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_701 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_701 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_701 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_701 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_701 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_701 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_701 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_701 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_701 p.sub_heading{
	color: rgba(12, 19, 33, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_701 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 3% 0px 12% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_701 .content_out{
		padding: 6% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_701 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_701 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_701 .depth_tint,
	#stacks_in_701 .content_tint{ background: none !important; }
	#stacks_in_701 .heading_out h2,
	#stacks_in_701 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_701 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_701 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_701 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_701 .content_in p.main_content{
	display: block;
	color: rgba(84, 92, 113, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_701 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_701 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_701 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_701 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_701 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_701 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_701 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_701 .depth_aside_wrapper,
#stacks_in_701 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_701 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_701 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_701 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_701 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_701 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_701 .depth_in{z-index: 4;}
#stacks_in_701 .depth_tint{z-index: 3;}
#stacks_in_701 .depth_gradient{z-index: 2;}
#stacks_in_701 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_701 .depth_wrapper.content_tint,
	#stacks_in_701 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_701 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_701 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_701 hr{border: 0;margin: 0;}

#stacks_in_701 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_701 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_701 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_out_703 {
	width: 45%;
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_709 .content_flex{
		min-height: 500px;
	}
}

@media (min-width: 900px){
	#stacks_in_709 .content_flex{
		min-height: 465px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_709 .depth_section_link:hover .depth_in,
#stacks_in_709 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_709{margin-left: 0;margin-right: 0;}



	#stacks_in_709{margin-bottom: 0;}


#stacks_in_709.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_709.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_709 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_709 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_709 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_709 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_709 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_709 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_709 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_709 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_709 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_709 p.sub_heading{
	color: rgba(12, 19, 33, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_709 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 3% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_709 .content_out{
		padding: 6% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_709 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_709 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_709 .depth_tint,
	#stacks_in_709 .content_tint{ background: none !important; }
	#stacks_in_709 .heading_out h2,
	#stacks_in_709 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_709 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_709 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_709 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_709 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_709 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_709 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_709 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_709 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_709 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_709 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_709 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_709 .depth_aside_wrapper,
#stacks_in_709 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_709 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_709 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_709 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_709 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_709 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_709 .depth_in{z-index: 4;}
#stacks_in_709 .depth_tint{z-index: 3;}
#stacks_in_709 .depth_gradient{z-index: 2;}
#stacks_in_709 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_709 .depth_wrapper.content_tint,
	#stacks_in_709 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_709 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_709 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_709 hr{border: 0;margin: 0;}

#stacks_in_709 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_709 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_709 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_out_711 {
	width: 45%;
}
/* --------------------------------

Primary style

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

body.overflow-hidden {
  /* used when modal is visible */
  overflow: hidden;
}

body.overflow-hidden .cd-modal {
  display: block !important;
}


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

Main Components

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


#stacks_in_714 .cd-section {
  text-align: center;
	position: relative;
}


#stacks_in_714 .cd-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  -moz-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
}


#stacks_in_714 .cd-modal .cd-modal-content {
  box-sizing: border-box;
  
	height: 100%;
  width: 100%;
  padding: 3em 5%;
	color: #FFFFFF;
	
  text-align: left;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#stacks_in_714 .cd-modal-content a,
#stacks_in_714 .cd-modal-content a:visited {
	color: #DE425A;
}

#stacks_in_714 .cd-modal-content a:hover,
#stacks_in_714 .cd-modal-content a:active {
	color: #B13448;
}

#stacks_in_714 .modal-is-visible .cd-modal {
  z-index: 300000 !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  -moz-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
}

#stacks_in_714 .modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}


@media only screen and (min-width: 768px) {
  #stacks_in_714 .cd-modal .cd-modal-content {
    padding: 4em 10%;
  }
}

@media only screen and (min-width: 1170px) {
  #stacks_in_714 .cd-modal .cd-modal-content {
    padding: 6em 20%;
  }
}


#stacks_in_714 .cd-modal-action {
  position: relative;
}

#stacks_in_714 .cd-modal-action .modal_btn, #stacks_in_714 .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #F4F7F7;
}

#stacks_in_714 .modal_btn,
#stacks_in_714 .cd-modal-close {
  text-decoration: none !important;
  border: none !important;
}

#stacks_in_714 .cd-modal-action .modal_btn {
	
  border-radius: 5em;
	
  color: #ffffff;
  line-height: 4em;
  white-space: nowrap;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.2s 0.3s, width 0.3s 0s;
  -moz-transition: color 0.2s 0.3s, width 0.3s 0s;
  transition: color 0.2s 0.3s, width 0.3s 0s;
	overflow: hidden;
}

@media only screen {
	#stacks_in_714 .cd-modal-action .modal_btn {
		width: 225px;
	}
}

@media only screen and (max-width: 720px) {
	#stacks_in_714 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

@media only screen and (max-width: 480px) {
	#stacks_in_714 .cd-modal-action .modal_btn {
		width: 100%;
	}
}

#stacks_in_714 .cd-modal-action .modal_btn i {
	margin-right: 6px;
}

#stacks_in_714 .cd-modal-action .modal_btn.to-circle {
  width: 4em;
	color: transparent !important;
  -webkit-transition: color 0.2s 0s, width 0.3s 0.2s;
  -moz-transition: color 0.2s 0s, width 0.3s 0.2s;
  transition: color 0.2s 0s, width 0.3s 0.2s;
}

#stacks_in_714 .cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 300000  !important;
  left: 50%;
  top: 0;
  width: 4em;
	
  border-radius: 50%;
	
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-2em);
  -moz-transform: translateX(-2em);
  -ms-transform: translateX(-2em);
  -o-transform: translateX(-2em);
  transform: translateX(-2em);
  -webkit-transition: visibility 0s 0.5s;
  -moz-transition: visibility 0s 0.5s;
  transition: visibility 0s 0.5s;
}
#stacks_in_714 .cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

#stacks_in_714 .cd-modal-close {
  position: fixed;
  z-index: 300001  !important;
  top: 10px;
  right: 10px;
	display: block;
  height: 50px;
  width: 50px;
	
  border-radius: 50%;
	
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../index_files/cd-icon-close.png);
  background-repeat: no-repeat;
  background-position: center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}
#stacks_in_714 .no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#stacks_in_714 .modal-is-visible .cd-modal-close {
  visibility: visible;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
@media only screen and (min-width: 768px) {
  #stacks_in_714 .cd-modal-close {
		top: 40px;
	  right: 40px;
  }
}

#stacks_in_714 .cd-modal-action a,
#stacks_in_714 .cd-modal-action a:visited,
#stacks_in_714 .cd-modal-action a:hover,
#stacks_in_714 .cd-modal-action a:active {
		color: #214554 !important;
		text-decoration: none;
}


/* Font Selections */
  #stacks_in_714 .cd-modal-action .modal_btn {
  }





/* Depth Content */

@media (min-width: 300px){
	#stacks_in_716 .content_flex{
		min-height: 650px;
	}
}

@media (min-width: 900px){
	#stacks_in_716 .content_flex{
		min-height: 426px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_716 .depth_section_link:hover .depth_in,
#stacks_in_716 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}


	#stacks_in_716{margin-left: 0;margin-right: 0;}



	#stacks_in_716{margin-bottom: 0;}


#stacks_in_716.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_716.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_716 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_716 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(244, 247, 247, 1.00);
	background-size: cover;
	
}





#stacks_in_716 .depth_tint{ background: rgba(227, 88, 23, 0.00); }

#stacks_in_716 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_716 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_716 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 15px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_716 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_716 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_716 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_716 p.sub_heading{
	color: rgba(12, 19, 33, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_716 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 3% 0px 12% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_716 .content_out{
		padding: 6% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_716 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_716 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_716 .depth_tint,
	#stacks_in_716 .content_tint{ background: none !important; }
	#stacks_in_716 .heading_out h2,
	#stacks_in_716 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_716 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_716 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_716 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_716 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_716 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_716 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_716 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_716 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_716 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_716 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_716 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_716 .depth_aside_wrapper,
#stacks_in_716 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_716 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_716 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_716 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_716 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_716 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_716 .depth_in{z-index: 4;}
#stacks_in_716 .depth_tint{z-index: 3;}
#stacks_in_716 .depth_gradient{z-index: 2;}
#stacks_in_716 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_716 .depth_wrapper.content_tint,
	#stacks_in_716 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_716 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_716 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_716 hr{border: 0;margin: 0;}

#stacks_in_716 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_716 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_716 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_out_718 {
	width: 45%;
}
/* Depth Content */

@media (min-width: 500px){
	#stacks_in_461 .content_flex{
		min-height: 250px;
	}
}

@media (min-width: 770px){
	#stacks_in_461 .content_flex{
		min-height: 200px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_461 .depth_section_link:hover .depth_in,
#stacks_in_461 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}




	#stacks_in_461{margin-bottom: 0;}


#stacks_in_461.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_461.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_461 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_461 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: 50% 50%;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-461.jpg);
	
	
	
}





#stacks_in_461 .depth_tint{ background: rgba(12, 18, 20, 0.26); }

#stacks_in_461 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_461 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_461 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_461 .heading_in{
	padding: 3px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_461 .heading_out h2{
	font-size: 29px;
	line-height: 38px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	
	
	
	
	 text-align: center !important; 
	
	 text-transform: uppercase;
	letter-spacing: 0px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_461 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	
	 text-transform: uppercase;
	float: none;}

#stacks_in_461 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

/* Content */

#stacks_in_461 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 700px; 
	

	
	 text-align: center; 
	
	padding: 12% 0px 9% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_461 .content_out{
		padding: 10% 30px 10% 30px;
		margin: 0 0%;}
	#stacks_in_461 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_461 .depth_wrapper{background-color: rgba(12, 18, 20, 0.51);}
	#stacks_in_461 .depth_tint,
	#stacks_in_461 .content_tint{ background: none !important; }
	#stacks_in_461 .heading_out h2,
	#stacks_in_461 .content_out{
		
		 text-align: center !important; 
		
	}
	
}


#stacks_in_461 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_461 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_461 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.20em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 10%;
	
	
	 display: none; }

#stacks_in_461 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	
	
	 text-transform: uppercase;}

@media screen and (max-width: 770px){
	#stacks_in_461 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_461 .content_in a.depth_button:hover{
	color: rgba(230, 73, 30, 1.00);
	background: rgba(255, 255, 255, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_461 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	 text-transform: uppercase;
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_461 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -700px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_461 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_461 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_461 .depth_aside_wrapper,
#stacks_in_461 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_461 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_461 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_461 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_461 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_461 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_461 .depth_in{z-index: 4;}
#stacks_in_461 .depth_tint{z-index: 3;}
#stacks_in_461 .depth_gradient{z-index: 2;}
#stacks_in_461 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_461 .depth_wrapper.content_tint,
	#stacks_in_461 .depth_gradient{display: none;}
}




/* Breaks */

#stacks_in_461 hr{border: 0;margin: 0;}

#stacks_in_461 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_461 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_461 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}/* -- Start Svg Each css Template -- */


#stacks_in_574 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_574svgwrapper{
	position: relative;
}



#stacks_in_574 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_574 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_574 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- *//* -- Start Svg Each css Template -- */


#stacks_in_575 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_575svgwrapper{
	position: relative;
}



#stacks_in_575 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_575 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_575 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- *//* Depth Limit */

#stacks_in_594 .depth_limit {
	max-width: 1300px;
}
#stacks_in_594 .depth_limit_padding {
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_594 .depth_limit_padding {
		padding: 0px 0px 0px 0px;
	}
}

/* Depth Limit Gradient*/

#stacks_in_594.depth_limit_wrapper{
	   
	background-image: -webkit-linear-gradient(top, rgba(244, 247, 247, 1.00) 0%,rgba(244, 247, 247, 1.00) 95%);
	background-image: linear-gradient(to bottom, rgba(244, 247, 247, 1.00) 0%,rgba(244, 247, 247, 1.00) 95%);
	

	
}




div#phcmagazine {
  
  
  
  
}

/* Depth Content */

@media (min-width: 300px){
	#stacks_in_596 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 770px){
	#stacks_in_596 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_596 .depth_section_link:hover .depth_in,
#stacks_in_596 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}




	#stacks_in_596{margin-bottom: 0;}


#stacks_in_596.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_596.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_596 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_596 .depth_image{

	
	background-size: contain;

	background-repeat: no-repeat;
	background-position: 100% 0;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(238, 238, 238, 0.00);
	background-size: cover;
	
}





#stacks_in_596 .depth_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_596 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_596 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_596 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_596 .heading_in{
	padding: 3px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_596 .heading_out h2{
	font-size: 29px;
	line-height: 38px;
	color: rgba(226, 74, 19, 1.00);
	font-weight: 500;
	
	
	
	
	 text-align: center !important; 
	
	 text-transform: uppercase;
	letter-spacing: 0px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_596 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

#stacks_in_596 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

/* Content */

#stacks_in_596 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 700px; 
	

	
	 text-align: center; 
	
	padding: 9% 20px 0% 20px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_596 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_596 .depth_tint,
	#stacks_in_596 .content_tint{ background: none !important; }
	#stacks_in_596 .heading_out h2,
	#stacks_in_596 .content_out{
		
		 text-align: center !important; 
		
	}
	
}


#stacks_in_596 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_596 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_596 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_596 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	
	
	 text-transform: uppercase;}

@media screen and (max-width: 770px){
	#stacks_in_596 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_596 .content_in a.depth_button:hover{
	color: rgba(230, 73, 30, 1.00);
	background: rgba(255, 255, 255, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_596 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	 text-transform: uppercase;
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_596 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -700px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_596 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_596 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_596 .depth_aside_wrapper,
#stacks_in_596 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_596 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_596 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_596 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_596 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_596 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_596 .depth_in{z-index: 4;}
#stacks_in_596 .depth_tint{z-index: 3;}
#stacks_in_596 .depth_gradient{z-index: 2;}
#stacks_in_596 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_596 hr{border: 0;margin: 0;}

#stacks_in_596 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_596 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_596 hr.hr_bottom_content{
	display: inline-block;
	height: 1px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}#stacks_in_598>.s3_row {
	margin: 0 -0px;
}

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

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




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










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



}



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


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


}





/* Depth Content */

@media (min-width: 300px){
	#stacks_in_618 .content_flex{
		min-height: 200px;
	}
}

@media (min-width: 900px){
	#stacks_in_618 .content_flex{
		min-height: 400px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_618 .depth_section_link:hover .depth_in,
#stacks_in_618 .depth_section_link:hover .depth_image{
	transform: scale(1.04);
}





#stacks_in_618.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_618.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_618 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_618 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-618.jpg);
	
	
	
}





#stacks_in_618 .depth_tint{ background: rgba(0, 0, 0, 0.32); }

#stacks_in_618 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_618 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_618 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_618 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_618 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_618 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_618 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_618 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 12% 0px;
	margin: 0 13%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_618 .content_out{
		padding: 3% 50px 10% 50px;
		margin: 0 0%;}
	#stacks_in_618 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_618 .depth_wrapper{background-color: rgba(0, 0, 0, 0.45);}
	#stacks_in_618 .depth_tint,
	#stacks_in_618 .content_tint{ background: none !important; }
	#stacks_in_618 .heading_out h2,
	#stacks_in_618 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_618 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_618 .content_flex{
	
	 align-items: center; 
	
}

#stacks_in_618 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_618 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_618 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_618 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_618 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_618 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_618 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_618 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_618 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_618 .depth_aside_wrapper,
#stacks_in_618 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_618 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_618 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_618 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_618 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_618 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_618 .depth_in{z-index: 4;}
#stacks_in_618 .depth_tint{z-index: 3;}
#stacks_in_618 .depth_gradient{z-index: 2;}
#stacks_in_618 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_618 .depth_wrapper.content_tint,
	#stacks_in_618 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_618 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_618 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_618 hr{border: 0;margin: 0;}

#stacks_in_618 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_618 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_618 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_620 .content_flex{
		min-height: 200px;
	}
}

@media (min-width: 900px){
	#stacks_in_620 .content_flex{
		min-height: 400px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_620 .depth_section_link:hover .depth_in,
#stacks_in_620 .depth_section_link:hover .depth_image{
	transform: scale(1.04);
}





#stacks_in_620.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_620.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_620 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_620 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-620.jpg);
	
	
	
}





#stacks_in_620 .depth_tint{ background: rgba(0, 0, 0, 0.32); }

#stacks_in_620 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_620 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_620 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_620 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_620 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_620 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_620 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_620 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 12% 0px;
	margin: 0 13%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_620 .content_out{
		padding: 3% 50px 10% 50px;
		margin: 0 0%;}
	#stacks_in_620 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_620 .depth_wrapper{background-color: rgba(0, 0, 0, 0.45);}
	#stacks_in_620 .depth_tint,
	#stacks_in_620 .content_tint{ background: none !important; }
	#stacks_in_620 .heading_out h2,
	#stacks_in_620 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_620 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_620 .content_flex{
	
	 align-items: center; 
	
}

#stacks_in_620 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_620 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_620 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_620 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_620 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_620 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_620 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_620 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_620 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_620 .depth_aside_wrapper,
#stacks_in_620 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_620 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_620 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_620 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_620 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_620 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_620 .depth_in{z-index: 4;}
#stacks_in_620 .depth_tint{z-index: 3;}
#stacks_in_620 .depth_gradient{z-index: 2;}
#stacks_in_620 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_620 .depth_wrapper.content_tint,
	#stacks_in_620 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_620 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_620 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_620 hr{border: 0;margin: 0;}

#stacks_in_620 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_620 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_620 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_650 .content_flex{
		min-height: 200px;
	}
}

@media (min-width: 900px){
	#stacks_in_650 .content_flex{
		min-height: 400px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_650 .depth_section_link:hover .depth_in,
#stacks_in_650 .depth_section_link:hover .depth_image{
	transform: scale(1.04);
}





#stacks_in_650.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_650.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_650 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_650 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-650.jpg);
	
	
	
}





#stacks_in_650 .depth_tint{ background: rgba(0, 0, 0, 0.32); }

#stacks_in_650 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_650 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_650 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_650 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_650 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_650 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_650 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_650 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 12% 0px;
	margin: 0 13%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_650 .content_out{
		padding: 3% 50px 10% 50px;
		margin: 0 0%;}
	#stacks_in_650 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_650 .depth_wrapper{background-color: rgba(0, 0, 0, 0.45);}
	#stacks_in_650 .depth_tint,
	#stacks_in_650 .content_tint{ background: none !important; }
	#stacks_in_650 .heading_out h2,
	#stacks_in_650 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_650 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_650 .content_flex{
	
	 align-items: center; 
	
}

#stacks_in_650 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_650 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_650 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_650 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_650 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_650 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_650 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_650 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_650 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_650 .depth_aside_wrapper,
#stacks_in_650 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_650 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_650 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_650 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_650 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_650 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_650 .depth_in{z-index: 4;}
#stacks_in_650 .depth_tint{z-index: 3;}
#stacks_in_650 .depth_gradient{z-index: 2;}
#stacks_in_650 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_650 .depth_wrapper.content_tint,
	#stacks_in_650 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_650 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_650 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_650 hr{border: 0;margin: 0;}

#stacks_in_650 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_650 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_650 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_648 .content_flex{
		min-height: 200px;
	}
}

@media (min-width: 900px){
	#stacks_in_648 .content_flex{
		min-height: 400px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_648 .depth_section_link:hover .depth_in,
#stacks_in_648 .depth_section_link:hover .depth_image{
	transform: scale(1.04);
}





#stacks_in_648.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_648.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_648 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_648 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-648.jpg);
	
	
	
}





#stacks_in_648 .depth_tint{ background: rgba(0, 0, 0, 0.32); }

#stacks_in_648 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_648 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_648 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_648 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_648 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_648 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_648 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_648 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 12% 0px;
	margin: 0 13%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_648 .content_out{
		padding: 3% 50px 10% 50px;
		margin: 0 0%;}
	#stacks_in_648 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_648 .depth_wrapper{background-color: rgba(0, 0, 0, 0.45);}
	#stacks_in_648 .depth_tint,
	#stacks_in_648 .content_tint{ background: none !important; }
	#stacks_in_648 .heading_out h2,
	#stacks_in_648 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_648 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_648 .content_flex{
	
	 align-items: center; 
	
}

#stacks_in_648 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_648 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_648 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_648 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_648 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_648 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_648 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_648 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_648 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_648 .depth_aside_wrapper,
#stacks_in_648 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_648 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_648 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_648 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_648 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_648 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_648 .depth_in{z-index: 4;}
#stacks_in_648 .depth_tint{z-index: 3;}
#stacks_in_648 .depth_gradient{z-index: 2;}
#stacks_in_648 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_648 .depth_wrapper.content_tint,
	#stacks_in_648 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_648 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_648 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_648 hr{border: 0;margin: 0;}

#stacks_in_648 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_648 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_648 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}
#stacks_in_397 {
	background-color: rgba(244, 248, 247, 1.00);
}

#stacks_in_398 {
	background-color: rgba(244, 247, 247, 1.00);
}

div#nieuws {
  
  
  
  
}

/* Depth Content */

@media (min-width: 300px){
	#stacks_in_622 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 770px){
	#stacks_in_622 .content_flex{
		min-height: 0px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_622 .depth_section_link:hover .depth_in,
#stacks_in_622 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}




	#stacks_in_622{margin-bottom: 0;}


#stacks_in_622.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_622.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_622 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_622 .depth_image{

	
	background-size: contain;

	background-repeat: no-repeat;
	background-position: 100% 0;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
	background-image: none;
	background-color: rgba(238, 238, 238, 0.00);
	background-size: cover;
	
}





#stacks_in_622 .depth_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_622 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_622 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_622 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_622 .heading_in{
	padding: 3px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_622 .heading_out h2{
	font-size: 29px;
	line-height: 38px;
	color: rgba(226, 74, 19, 1.00);
	font-weight: 500;
	
	
	
	
	 text-align: center !important; 
	
	 text-transform: uppercase;
	letter-spacing: 0px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_622 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

#stacks_in_622 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

/* Content */

#stacks_in_622 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 700px; 
	

	
	 text-align: center; 
	
	padding: 9% 20px 0% 20px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_622 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_622 .depth_tint,
	#stacks_in_622 .content_tint{ background: none !important; }
	#stacks_in_622 .heading_out h2,
	#stacks_in_622 .content_out{
		
		 text-align: center !important; 
		
	}
	
}


#stacks_in_622 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_622 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_622 .content_in p.main_content{
	display: block;
	color: rgba(67, 73, 94, 1.00);
	font-size: 1em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0%;
	
	
	 display: none; }

#stacks_in_622 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	
	
	 text-transform: uppercase;}

@media screen and (max-width: 770px){
	#stacks_in_622 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_622 .content_in a.depth_button:hover{
	color: rgba(230, 73, 30, 1.00);
	background: rgba(255, 255, 255, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_622 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	 text-transform: uppercase;
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_622 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -700px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_622 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_622 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_622 .depth_aside_wrapper,
#stacks_in_622 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_622 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_622 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_622 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_622 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_622 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_622 .depth_in{z-index: 4;}
#stacks_in_622 .depth_tint{z-index: 3;}
#stacks_in_622 .depth_gradient{z-index: 2;}
#stacks_in_622 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_622 hr{border: 0;margin: 0;}

#stacks_in_622 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_622 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_622 hr.hr_bottom_content{
	display: inline-block;
	height: 1px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}#stacks_in_793>.s3_row {
	margin: 0 -10px;
}

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








  


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




	#stacks_in_793>.s3_row  {
		margin: -10px -10px;
	}
	#stacks_in_793>.s3_row>.s3_column {
		padding: 10px 10px;
		width:50%;
	}



}



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


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





}




  
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_798 .content_flex{
		min-height: 200px;
	}
}

@media (min-width: 900px){
	#stacks_in_798 .content_flex{
		min-height: 400px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_798 .depth_section_link:hover .depth_in,
#stacks_in_798 .depth_section_link:hover .depth_image{
	transform: scale(1.04);
}





#stacks_in_798.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_798.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_798 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_798 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-798.jpg);
	
	
	
}





#stacks_in_798 .depth_tint{ background: rgba(0, 0, 0, 0.32); }

#stacks_in_798 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_798 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_798 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_798 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_798 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_798 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_798 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 0px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_798 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_798 .content_out{
		padding: 3% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_798 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_798 .depth_wrapper{background-color: rgba(0, 0, 0, 0.44);}
	#stacks_in_798 .depth_tint,
	#stacks_in_798 .content_tint{ background: none !important; }
	#stacks_in_798 .heading_out h2,
	#stacks_in_798 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_798 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_798 .content_flex{
	
	 align-items: center; 
	
}

#stacks_in_798 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_798 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_798 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_798 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_798 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_798 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_798 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_798 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_798 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_798 .depth_aside_wrapper,
#stacks_in_798 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_798 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_798 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_798 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_798 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_798 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_798 .depth_in{z-index: 4;}
#stacks_in_798 .depth_tint{z-index: 3;}
#stacks_in_798 .depth_gradient{z-index: 2;}
#stacks_in_798 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_798 .depth_wrapper.content_tint,
	#stacks_in_798 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_798 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_798 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_798 hr{border: 0;margin: 0;}

#stacks_in_798 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_798 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_798 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_755 .content_flex{
		min-height: 200px;
	}
}

@media (min-width: 900px){
	#stacks_in_755 .content_flex{
		min-height: 400px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_755 .depth_section_link:hover .depth_in,
#stacks_in_755 .depth_section_link:hover .depth_image{
	transform: scale(1.04);
}





#stacks_in_755.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_755.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_755 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_755 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-755.jpg);
	
	
	
}





#stacks_in_755 .depth_tint{ background: rgba(0, 0, 0, 0.32); }

#stacks_in_755 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_755 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_755 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_755 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_755 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_755 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_755 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 0px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_755 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 0% 0px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_755 .content_out{
		padding: 3% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_755 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_755 .depth_wrapper{background-color: rgba(0, 0, 0, 0.44);}
	#stacks_in_755 .depth_tint,
	#stacks_in_755 .content_tint{ background: none !important; }
	#stacks_in_755 .heading_out h2,
	#stacks_in_755 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_755 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_755 .content_flex{
	
	 align-items: center; 
	
}

#stacks_in_755 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_755 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_755 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_755 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_755 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_755 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_755 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_755 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_755 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_755 .depth_aside_wrapper,
#stacks_in_755 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_755 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_755 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_755 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_755 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_755 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_755 .depth_in{z-index: 4;}
#stacks_in_755 .depth_tint{z-index: 3;}
#stacks_in_755 .depth_gradient{z-index: 2;}
#stacks_in_755 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_755 .depth_wrapper.content_tint,
	#stacks_in_755 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_755 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_755 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_755 hr{border: 0;margin: 0;}

#stacks_in_755 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_755 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_755 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_758 .content_flex{
		min-height: 200px;
	}
}

@media (min-width: 900px){
	#stacks_in_758 .content_flex{
		min-height: 400px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_758 .depth_section_link:hover .depth_in,
#stacks_in_758 .depth_section_link:hover .depth_image{
	transform: scale(1.02);
}





#stacks_in_758.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_758.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_758 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_758 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	
		/* Default Background*/
		background-image: url(../rw_common/plugins/stacks/mount.jpg);
	

	
	
	
	
	
}





#stacks_in_758 .depth_tint{ background: rgba(0, 0, 0, 0.32); }

#stacks_in_758 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_758 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_758 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_758 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_758 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_758 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_758 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_758 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 0% 0px;
	margin: 0 13%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_758 .content_out{
		padding: 3% 50px 10% 50px;
		margin: 0 0%;}
	#stacks_in_758 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_758 .depth_wrapper{background-color: rgba(0, 0, 0, 0.45);}
	#stacks_in_758 .depth_tint,
	#stacks_in_758 .content_tint{ background: none !important; }
	#stacks_in_758 .heading_out h2,
	#stacks_in_758 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_758 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_758 .content_flex{
	
	 align-items: center; 
	
}

#stacks_in_758 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_758 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_758 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_758 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_758 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_758 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_758 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_758 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_758 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_758 .depth_aside_wrapper,
#stacks_in_758 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_758 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_758 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_758 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_758 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_758 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_758 .depth_in{z-index: 4;}
#stacks_in_758 .depth_tint{z-index: 3;}
#stacks_in_758 .depth_gradient{z-index: 2;}
#stacks_in_758 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_758 .depth_wrapper.content_tint,
	#stacks_in_758 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_758 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_758 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_758 hr{border: 0;margin: 0;}

#stacks_in_758 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_758 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_758 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_739 .content_flex{
		min-height: 200px;
	}
}

@media (min-width: 900px){
	#stacks_in_739 .content_flex{
		min-height: 400px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_739 .depth_section_link:hover .depth_in,
#stacks_in_739 .depth_section_link:hover .depth_image{
	transform: scale(1.04);
}





#stacks_in_739.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_739.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_739 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_739 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-739.jpg);
	
	
	
}





#stacks_in_739 .depth_tint{ background: rgba(0, 0, 0, 0.32); }

#stacks_in_739 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_739 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_739 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_739 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_739 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_739 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_739 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 8px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_739 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 0px 12% 0px;
	margin: 0 13%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_739 .content_out{
		padding: 3% 50px 10% 50px;
		margin: 0 0%;}
	#stacks_in_739 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_739 .depth_wrapper{background-color: rgba(0, 0, 0, 0.45);}
	#stacks_in_739 .depth_tint,
	#stacks_in_739 .content_tint{ background: none !important; }
	#stacks_in_739 .heading_out h2,
	#stacks_in_739 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_739 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_739 .content_flex{
	
	 align-items: center; 
	
}

#stacks_in_739 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_739 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	}

#stacks_in_739 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_739 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_739 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_739 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_739 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_739 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_739 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_739 .depth_aside_wrapper,
#stacks_in_739 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_739 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_739 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_739 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_739 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_739 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_739 .depth_in{z-index: 4;}
#stacks_in_739 .depth_tint{z-index: 3;}
#stacks_in_739 .depth_gradient{z-index: 2;}
#stacks_in_739 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_739 .depth_wrapper.content_tint,
	#stacks_in_739 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_739 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_739 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_739 hr{border: 0;margin: 0;}

#stacks_in_739 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_739 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_739 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}#stacks_in_372>.s3_row {
	margin: 0 -0px;
}

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

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

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

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








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


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


}



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


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


}




#stacks_in_372 {
	background-color: rgba(244, 247, 247, 1.00);
}
#stacks_in_760>.s3_row {
	margin: 0 -0px;
}

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

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

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

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








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


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


}



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


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


}




#stacks_in_760 {
	background-color: rgba(244, 247, 247, 1.00);
}
/* Depth Content */

@media (min-width: 300px){
	#stacks_in_395 .content_flex{
		min-height: 200px;
	}
}

@media (min-width: 900px){
	#stacks_in_395 .content_flex{
		min-height: 400px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_395 .depth_section_link:hover .depth_in,
#stacks_in_395 .depth_section_link:hover .depth_image{
	transform: scale(1.04);
}





#stacks_in_395.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_395.depth_out a{
	color: rgba(0, 0, 0, 1.00);}

#stacks_in_395 .depth_in{
	position: relative;
	margin: 0 auto;
	
	text-align: center;
	
}

#stacks_in_395 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: center;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-395.jpg);
	
	
	
}





#stacks_in_395 .depth_tint{ background: rgba(0, 0, 0, 0.32); }

#stacks_in_395 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_395 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(34, 35, 40, 0.00) 75%);
	
	
	
	   
	background: -webkit-radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	background: radial-gradient(rgba(34, 35, 40, 0.00) 0%,rgba(0, 0, 0, 0.00) 85%);
	}



/* Heading */

#stacks_in_395 .heading_out{
	display: block;
	display: inline-block;
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_395 .heading_in{
	padding: 5px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_395 .heading_out h2{
	font-size: 30px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	
	 text-align: center !important; 
	
	
	letter-spacing: -1px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_395 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 17px;
	letter-spacing: 0px;
	margin: 0px 0 0px;
	 font-weight: bolder; 
	
	 display: none; 
	
	float: none;}

#stacks_in_395 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
	letter-spacing: 0px;
	margin: 20px 0 0px;
	
	
	
	
	float: none;}

/* Content */

#stacks_in_395 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 600px; 
	

	
	 text-align: center; 
	
	padding: 0% 40px 0% 40px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */


@media screen and (max-width: 770px){
	#stacks_in_395 .content_out{
		padding: 3% 50px 3% 50px;
		margin: 0 0%;}
	#stacks_in_395 .heading_out h2{
		font-size: 30px;
		line-height: 36px;
	}
}


@media screen and (max-width: 770px ){
	#stacks_in_395 .depth_wrapper{background-color: rgba(0, 0, 0, 0.44);}
	#stacks_in_395 .depth_tint,
	#stacks_in_395 .content_tint{ background: none !important; }
	#stacks_in_395 .heading_out h2,
	#stacks_in_395 .content_out{
		
		 text-align: center !important; 
		
	}
	
	#stacks_in_395 .depth_wrapper .content_out{ display: block;margin: 0 auto; }
	
}


#stacks_in_395 .content_flex{
	
	 align-items: center; 
	
}

#stacks_in_395 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_395 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1.00em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 0%;
	
	
	 display: none; }

#stacks_in_395 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 18px;
	padding: 5% 7.500000%;
	border-radius: 0px;
	box-shadow: inset 0 0 0 0px rgba(230, 73, 30, 1.00);
	margin-bottom: 0%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 0.00);
	
	
	}

@media screen and (max-width: 770px){
	#stacks_in_395 .content_in a.depth_button{
		padding: 5% 10%;
	}
}
#stacks_in_395 .content_in a.depth_button:hover{
	color: rgba(255, 255, 255, 1.00);
	background: rgba(255, 102, 0, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_395 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_395 .depth_aside{
	position: static;
	width: 100%;
	
	

	 
	margin-right: -600px; 
	

	margin-right:0;

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_395 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_395 .depth_aside_wrapper{
	
	
	width: 100%;
}
#stacks_in_395 .depth_aside_wrapper,
#stacks_in_395 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_395 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}







#stacks_in_395 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_395 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_395 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_395 .depth_aside_padding{
		padding: 0px 20px 0px 20px;
	}
}

/* Layer Top */


#stacks_in_395 .depth_in{z-index: 4;}
#stacks_in_395 .depth_tint{z-index: 3;}
#stacks_in_395 .depth_gradient{z-index: 2;}
#stacks_in_395 .depth_image{z-index: 1;}








/* Force Mobile Legibility */

@media screen and (max-width: 770px ){
	#stacks_in_395 .depth_wrapper.content_tint,
	#stacks_in_395 .depth_gradient{display: none;}
}



@media screen and (max-width: 770px ){
	#stacks_in_395 .depth_wrapper .content_out{
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}
	#stacks_in_395 .depth_wrapper .content_in{
		padding: 30px !important;
		margin: 0 !important;
	}
}



/* Breaks */

#stacks_in_395 hr{border: 0;margin: 0;}

#stacks_in_395 hr.hr_top_header{
	height: 0px;
	width: 20%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_395 hr.hr_bottom_header{
	height: 0px;
	width: 15%;
	background: rgba(255, 54, 21, 1.00);
	display: inline-block;}

#stacks_in_395 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 0px;}/* Depth Content */

@media (min-width: 300px){
	#stacks_in_446 .content_flex{
		min-height: 0px;
	}
}

@media (min-width: 770px){
	#stacks_in_446 .content_flex{
		min-height: 150px;
	}
}

.depth_out .stacks-description{
  background: rgba(0,0,0,0.3);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.3) !important;
  color: #fff !important;
  border-radius: 3px;}
  


.stacks-partial.grande .depth_out .velvet-icon{
display: none;
}
/* Section Link Style */

.depth_section_link{
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
}
.depth_section_link .depth_in,
.depth_section_link .depth_image{
	transition: transform 300ms;
	transform: scale(1);
}
#stacks_in_446 .depth_section_link:hover .depth_in,
#stacks_in_446 .depth_section_link:hover .depth_image{
	transform: scale(1.00);
}


	#stacks_in_446{margin-left: 0;margin-right: 0;}



	#stacks_in_446{margin-bottom: 0;}


#stacks_in_446.depth_out{
	position: relative;
	letter-spacing: 0;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
	line-height: normal;
	color: rgba(0, 0, 0, 1.00);}
#stacks_in_446.depth_out a{
	color: rgba(46, 172, 254, 1.00);}

#stacks_in_446 .depth_in{
	position: relative;
	margin: 0 auto;
	text-align: left;
	
	
}

#stacks_in_446 .depth_image{

	background-size: cover;
	

	background-repeat: no-repeat;
	background-position: 50% 50%;

	

	
	

	
	
	
	/* Drop In Background*/
	background-image: url(../index_files/banner_bg_image-446.jpg);
	
	
	
}





#stacks_in_446 .depth_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_446 .content_tint{ background: rgba(0, 0, 0, 0.00); }

#stacks_in_446 .depth_gradient{
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0.00) 0%,rgba(0, 0, 0, 0.00) 75%);
	
	
	
	}



/* Heading */

#stacks_in_446 .heading_out{
	display: block;
	
	background: rgba(0, 0, 0, 0.00);
	border-top: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	border-bottom: 0px solid rgba(230, 73, 30, 1.00);
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 0;}

#stacks_in_446 .heading_in{
	padding: 3px 0;
	margin-left: 0px;
	margin-right: 0px;
}

#stacks_in_446 .heading_out h2{
	font-size: 29px;
	line-height: 38px;
	color: rgba(255, 255, 255, 1.00);
	font-weight: 500;
	 font-weight: bolder; 
	
	 display: none; 
	 text-align: left !important; 
	
	
	
	letter-spacing: -2px;
	text-indent: 0px;
	margin: 0;
	padding: 0;}

#stacks_in_446 p.super_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 0px 0 7px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

#stacks_in_446 p.sub_heading{
	color: rgba(255, 255, 255, 1.00);
	font-size: 14px;
	letter-spacing: 0px;
	margin: 3px 0 8px;
	
	
	 display: none; 
	 text-transform: uppercase;
	float: none;}

/* Content */

#stacks_in_446 .content_out{
	display: inline-block;
	position: relative;

	 
	max-width: 460px; 
	

	 text-align: left; 
	
	
	padding: 10% 50px 10% 50px;
	margin: 0 0%;}

/* Content (Separate Mobile Layout) */



@media screen and (max-width: 770px ){
	#stacks_in_446 .depth_wrapper{background-color: rgba(0, 0, 0, 0.00);}
	#stacks_in_446 .depth_tint,
	#stacks_in_446 .content_tint{ background: none !important; }
	#stacks_in_446 .heading_out h2,
	#stacks_in_446 .content_out{
		
		 text-align: center !important; 
		
	}
	
}


#stacks_in_446 .content_flex{
	 align-items: flex-start; 
	
	
}

#stacks_in_446 .content_in{
	min-width: 200px;
	position:relative;
	z-index:1;
	background: rgba(0, 0, 0, 0.00);
	border: 0px solid rgba(255, 255, 255, 1.00);
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}
/*IE 11 Fix*/
.depth_ie .content_in{
	width: 100%;
}

#stacks_in_446 .content_in p.main_content{
	display: block;
	color: rgba(255, 255, 255, 1.00);
	font-size: 1em;
	line-height: 1.4;
	margin-top: 0%;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 10%;
	
	
	 display: none; }

#stacks_in_446 .content_in a.depth_button{
	display: inline-block;
	text-decoration: none;
	line-height: 1.4;
	font-size: 15px;
	padding: 3% 4.500000%;
	border-radius: 2px;
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 0.40);
	margin-bottom: 15%;
	transition: background 200ms, box-shadow 200ms, color 200ms;
	color: rgba(255, 255, 255, 1.00);
	background: rgba(230, 73, 30, 1.00);
	
	
	 text-transform: uppercase;}

@media screen and (max-width: 770px){
	#stacks_in_446 .content_in a.depth_button{
		padding: 3% 6%;
	}
}
#stacks_in_446 .content_in a.depth_button:hover{
	color: rgba(230, 73, 30, 1.00);
	background: rgba(255, 255, 255, 1.00);
	box-shadow: inset 0 0 0 0px rgba(255, 255, 255, 1.00);}

#stacks_in_446 .content_in p.sub_content{
	font-weight: normal;
	
	 font-style: italic; 
	 text-transform: uppercase;
	font-size: 14px;
	color: rgba(255, 255, 255, 1.00);
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: relative;
	border-left: 0px solid rgba(230, 73, 30, 1.00);
	border-right: 0px solid rgba(230, 73, 30, 1.00);
	padding-left: 0px;
	padding-right: 0px;}

/* Aside */

#stacks_in_446 .depth_aside{
	position: static;
	width: 100%;
	float: right;
	

	 
	margin-right: -460px; 
	

	

	display: none;
}
@media screen and (max-width: 770px){
	#stacks_in_446 .depth_aside{
		margin-right:0;
		display: none;
	}
}
#stacks_in_446 .depth_aside_wrapper{
	
	
	 
	padding-right: 460px; 
	
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	
	width: 100%;
}
#stacks_in_446 .depth_aside_wrapper,
#stacks_in_446 .depth_aside_wrapper .centered_image{
	
	
	
}
#stacks_in_446 .depth_aside_wrapper .centered_image .imageStyle{
	
	
}

 #stacks_in_446 .content_out .centered_image img{float: left;} 





#stacks_in_446 .depth_aside_padding > div{max-width:300px;}

@media screen and (max-width: 770px){
	#stacks_in_446 .depth_aside_wrapper{
		position: relative;
		transform: none;
		top: auto;
		padding-right: 0; 
	}
	
	
	
}

#stacks_in_446 .depth_aside_padding{
	padding: 0px 50px 0px 50px;
}
@media screen and (max-width: 770px){
	#stacks_in_446 .depth_aside_padding{
		padding: 0px 20px 50px 20px;
	}
}

/* Layer Top */


#stacks_in_446 .depth_in{z-index: 4;}
#stacks_in_446 .depth_tint{z-index: 3;}
#stacks_in_446 .depth_gradient{z-index: 2;}
#stacks_in_446 .depth_image{z-index: 1;}








/* Force Mobile Legibility */




/* Breaks */

#stacks_in_446 hr{border: 0;margin: 0;}

#stacks_in_446 hr.hr_top_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_446 hr.hr_bottom_header{
	height: 0px;
	width: 0%;
	background: rgba(255, 255, 255, 0.40);
	display: inline-block;}

#stacks_in_446 hr.hr_bottom_content{
	display: inline-block;
	height: 0px;
	width: 20%;
	background: rgba(255, 255, 255, 0.40);
	margin-top: 15px;}