@charset "UTF-8";

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

Copyright (c) 2013 Daniel Eden

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

Copyright (c) 2014 Christian Pucci

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}.mb-cloned .stacks_left{float:left;width:49%}.mb-cloned .stacks_right{float:right;width:49%}.movingbox{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;user-select:none;-webkit-touch-callout:none;touch-action:pan-y;-webkit-tap-highlight-color:transparent;--caption-bg-color:rgba(0,0,0,0.5);--caption-color:#fff;--caption-size:1rem}.movingbox .caption{position:relative;margin:0;padding:0}.movingbox .caption .slide-caption{position:absolute;z-index:10;background-color:var(--caption-bg-color);color:var(--caption-color);font-size:var(--caption-size);padding:1rem;margin:0;transition:opacity 500ms ease 0s}.movingbox .caption.caption-static .slide-caption{position:relative}.movingbox .caption.caption-bottom .slide-caption{bottom:0;left:0;right:0}.movingbox .caption.caption-full .slide-caption{top:50%;left:0;right:0;text-align:center;translate:0 -50%;background:none}.movingbox .caption.caption-full::before{content:" ";position:absolute;top:0;left:0;right:0;bottom:0;background-color:var(--caption-bg-color)}.movingbox .caption.caption-centered .slide-caption{top:50%;left:50%;text-align:center;translate:-50% -50%}.movingbox .caption.caption-hover .slide-caption{opacity:0}.mb-slide:not(.mb-active) .slide-caption{opacity:0}.mb-slide.mb-active:hover .caption.caption-hover .slide-caption{opacity:1}.slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.slick-list.dragging{cursor:pointer;cursor:hand;cursor:grabbing}.slick-track{position:relative;left:0;top:0;display:block;zoom:1}.slick-track:before,.slick-track:after{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.mb-center{z-index:11;position:relative}.mb-slide{float:left;min-height:1px;display:none}.mb-slide .slick-loading img,.mb-slide .slick-loading video{display:none}.mb-slide .dragging img{pointer-events:none;-webkit-user-select:none;user-select:none}.mb-slide > div{overflow:hidden}.mb-slide:not(.mb-active) a{pointer-events:none}.centermode .mb-slide:not(.mb-current) a{pointer-events:none}.slick-initialized .mb-slide{display:block}.slick-loading .mb-slide{visibility:hidden}.slick-vertical .mb-slide{display:block;height:auto}.movingbox{position:relative}.movingbox.stretch-media .mb-slide img,.movingbox.stretch-media .mb-slide video{height:auto;width:100%;max-width:100%;display:block}.movingbox > .mb-slide{opacity:0}.movingbox > .mb-slide:first-child{opacity:1}.movingbox .image-slide img,.movingbox .video-slide video{display:block}.movingbox[dir=rtl]{text-align:end}.movingbox .mb-tap-target{position:absolute;display:block;line-height:0;font-size:0;cursor:pointer;background:transparent;color:transparent;padding:0;margin:0;border:none;outline:none;z-index:1001;top:0;height:100%;width:50%}.movingbox .mb-tap-target.next{right:0}.movingbox .mb-tap-target.hide{display:none}.movingbox.slide-vert .mb-tap-target{height:50%;width:100%}.movingbox.slide-vert .mb-tap-target.next{bottom:0;right:auto;top:auto}.mb-animate.hide-on-load{opacity:0}

#stacks_in_524 {
	font-weight: lighter;
}
/* Shelf Stack CSS */


#stacks_in_521 .clearer {
	clear: both;
}

#stacks_in_521 .shelf-wrapper {
	margin-left: auto !important;
	margin-right: auto !important;
	position: relative;
	padding-top: 160px;
 }

#stacks_in_521 {
	display: block;
}

#stacks_in_521 .shelf-left, #stacks_in_521 .shelf-right {
	width: 88px;
	height: 81px;
	background-repeat: none;
}

#stacks_in_521 .shelf-left, #stacks_in_521 .shelf-right, #stacks_in_521 .shelf-middle {
	float: left;
}

#stacks_in_521 .shelf-item img {
	height: 140px;
	width: 140px;
}

/* Shelf styles */



#stacks_in_521 .shelf-left {
	background-image: url(../files/shelf-stack-images/shelf_wooden_left.png);
}

#stacks_in_521 .shelf-right {
	background-image: url(../files/shelf-stack-images/shelf_wooden_right.png);
}

#stacks_in_521 .shelf-middle {
	background-image: url(../files/shelf-stack-images/shelf_wooden_middle.png);
}

#stacks_in_521 .next {
	background-image: url(../files/shelf-stack-images/button_wooden_right.png);
}

#stacks_in_521 .prev {
	background-image: url(../files/shelf-stack-images/button_wooden_left.png);
}

#stacks_in_521 .shelf-pagination a {
	background-image: url(../files/shelf-stack-images/pagination_deselected.png);	
}

#stacks_in_521 .shelf-pagination a.selected {
	background-image: url(../files/shelf-stack-images/pagination_wooden_selected.png);	
}











































#stacks_in_521 .shelf-middle {
	height: 71px;
	background-repeat: repeat-x;
}

#stacks_in_521 ul.shelf-contents {
	padding: 0;
	margin: 0;
	display: block;
	position: relative;

	top: -150px;







	/*top: -130px;*/
	list-style: none;
}

#stacks_in_521 ul.shelf-contents li.shelf-item {
	margin-left: 8px;
	margin-right: 8px;
	display: inline-block;
	float: left;
	cursor: pointer;
	padding-top: 2px;
	padding-bottom: 2px;
}


#stacks_in_521 ul.shelf-contents li.shelf-item img {
	background-color: #fff;
	padding: 12px;
	cursor: pointer;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}


#stacks_in_521 ul.shelf-contents li.shelf-item img {
	-webkit-box-shadow: 0 1px 3px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0 1px 3px 0px rgba(0,0,0,0.5);
	box-shadow: 0 1px 3px 0px rgba(0,0,0,0.5);
}


#stacks_in_521 .next, #stacks_in_521 .prev {
	display: none;
}




#stacks_in_521 .next, #stacks_in_521 .prev {
	
	display: none;
	
	cursor: pointer;
	position: absolute;
	width: 48px;
	height: 63px;
	background-repeat: none;

	margin-top: -94px;




}

#stacks_in_521 .next {
	right: 0;
}

#stacks_in_521 .prev {
	left: 0;
}



#stacks_in_521 .shelf-pagination {
	display: none !important;
}




div.shelf_pp_default .pp_top,div.shelf_pp_default .pp_top .pp_middle,div.shelf_pp_default .pp_top .pp_left,div.shelf_pp_default .pp_top .pp_right,div.shelf_pp_default .pp_bottom,div.shelf_pp_default .pp_bottom .pp_left,div.shelf_pp_default .pp_bottom .pp_middle,div.shelf_pp_default .pp_bottom .pp_right{height:13px}
div.shelf_pp_default .pp_top .pp_left{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite.png) -78px -93px no-repeat}
div.shelf_pp_default .pp_top .pp_middle{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite_x.png) top left repeat-x}
div.shelf_pp_default .pp_top .pp_right{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite.png) -112px -93px no-repeat}
div.shelf_pp_default .pp_content .ppt{color:#f8f8f8}
div.shelf_pp_default .pp_content_container .pp_left{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;padding-left:13px}
div.shelf_pp_default .pp_content_container .pp_right{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite_y.png) top right repeat-y;padding-right:13px}
div.shelf_pp_default .pp_next:hover{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite_next.png) center right no-repeat;cursor:pointer}
div.shelf_pp_default .pp_previous:hover{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite_prev.png) center left no-repeat;cursor:pointer}
div.shelf_pp_default .pp_expand{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}
div.shelf_pp_default .pp_expand:hover{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;cursor:pointer}
div.shelf_pp_default .pp_contract{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}
div.shelf_pp_default .pp_contract:hover{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;cursor:pointer}
div.shelf_pp_default .pp_close{width:30px;height:30px;background:url(../files/shelf-stack-images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;cursor:pointer}
div.shelf_pp_default .pp_gallery ul li a{background:url(../files/shelf-stack-images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;border:1px solid #aaa}
div.shelf_pp_default .pp_social{margin-top:7px}
div.shelf_pp_default .pp_gallery a.pp_arrow_previous,div.shelf_pp_default .pp_gallery a.pp_arrow_next{position:static;left:auto}
div.shelf_pp_default .pp_nav .pp_play,div.shelf_pp_default .pp_nav .pp_pause{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;height:30px;width:30px}
div.shelf_pp_default .pp_nav .pp_pause{background-position:-51px -29px}
div.shelf_pp_default a.pp_arrow_previous,div.shelf_pp_default a.pp_arrow_next{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;height:20px;width:20px;margin:4px 0 0}
div.shelf_pp_default a.pp_arrow_next{left:52px;background-position:-82px -3px}
div.shelf_pp_default .pp_content_container .pp_details{margin-top:5px}
div.shelf_pp_default .pp_nav{clear:none;height:30px;width:110px;position:relative}
div.shelf_pp_default .pp_nav .currentTextHolder{font-family:Georgia;font-style:italic;color:#999;font-size:11px;left:75px;line-height:25px;position:absolute;top:2px;margin:0;padding:0 0 0 10px}
div.shelf_pp_default .pp_close:hover,div.shelf_pp_default .pp_nav .pp_play:hover,div.shelf_pp_default .pp_nav .pp_pause:hover,div.shelf_pp_default .pp_arrow_next:hover,div.shelf_pp_default .pp_arrow_previous:hover{opacity:0.7}
div.shelf_pp_default .pp_description{font-size:11px;font-weight:700;line-height:14px;margin:5px 50px 5px 0}
div.shelf_pp_default .pp_bottom .pp_left{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite.png) -78px -127px no-repeat}
div.shelf_pp_default .pp_bottom .pp_middle{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite_x.png) bottom left repeat-x}
div.shelf_pp_default .pp_bottom .pp_right{background:url(../files/shelf-stack-images/prettyPhoto/default/sprite.png) -112px -127px no-repeat}
div.shelf_pp_default .pp_loaderIcon{background:url(../files/shelf-stack-images/prettyPhoto/default/loader.gif) center center no-repeat}
div.light_rounded .pp_top .pp_left{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat}
div.light_rounded .pp_top .pp_right{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat}
div.light_rounded .pp_next:hover{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/btnNext.png) center right no-repeat;cursor:pointer}
div.light_rounded .pp_previous:hover{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
div.light_rounded .pp_expand{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.light_rounded .pp_expand:hover{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.light_rounded .pp_contract{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.light_rounded .pp_contract:hover{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.light_rounded .pp_close{width:75px;height:22px;background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.light_rounded .pp_nav .pp_play{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.light_rounded .pp_nav .pp_pause{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.light_rounded .pp_arrow_previous{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat}
div.light_rounded .pp_arrow_next{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat}
div.light_rounded .pp_bottom .pp_left{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat}
div.light_rounded .pp_bottom .pp_right{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat}
div.dark_rounded .pp_top .pp_left{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat}
div.dark_rounded .pp_top .pp_right{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat}
div.dark_rounded .pp_content_container .pp_left{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y}
div.dark_rounded .pp_content_container .pp_right{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y}
div.dark_rounded .pp_next:hover{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat;cursor:pointer}
div.dark_rounded .pp_previous:hover{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
div.dark_rounded .pp_expand{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.dark_rounded .pp_expand:hover{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.dark_rounded .pp_contract{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.dark_rounded .pp_contract:hover{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.dark_rounded .pp_close{width:75px;height:22px;background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.dark_rounded .pp_description{margin-right:85px;color:#fff}
div.dark_rounded .pp_nav .pp_play{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.dark_rounded .pp_nav .pp_pause{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.dark_rounded .pp_arrow_previous{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat}
div.dark_rounded .pp_arrow_next{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat}
div.dark_rounded .pp_bottom .pp_left{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat}
div.dark_rounded .pp_bottom .pp_right{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat}
div.dark_rounded .pp_loaderIcon{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat}
div.dark_square .pp_left,div.dark_square .pp_middle,div.dark_square .pp_right,div.dark_square .pp_content{background:#000}
div.dark_square .pp_description{color:#fff;margin:0 85px 0 0}
div.dark_square .pp_loaderIcon{background:url(../files/shelf-stack-images/prettyPhoto/dark_square/loader.gif) center center no-repeat}
div.dark_square .pp_expand{background:url(../files/shelf-stack-images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.dark_square .pp_expand:hover{background:url(../files/shelf-stack-images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.dark_square .pp_contract{background:url(../files/shelf-stack-images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.dark_square .pp_contract:hover{background:url(../files/shelf-stack-images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.dark_square .pp_close{width:75px;height:22px;background:url(../files/shelf-stack-images/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.dark_square .pp_nav{clear:none}
div.dark_square .pp_nav .pp_play{background:url(../files/shelf-stack-images/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.dark_square .pp_nav .pp_pause{background:url(../files/shelf-stack-images/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.dark_square .pp_arrow_previous{background:url(../files/shelf-stack-images/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat}
div.dark_square .pp_arrow_next{background:url(../files/shelf-stack-images/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat}
div.dark_square .pp_next:hover{background:url(../files/shelf-stack-images/prettyPhoto/dark_square/btnNext.png) center right no-repeat;cursor:pointer}
div.dark_square .pp_previous:hover{background:url(../files/shelf-stack-images/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat;cursor:pointer}
div.light_square .pp_expand{background:url(../files/shelf-stack-images/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.light_square .pp_expand:hover{background:url(../files/shelf-stack-images/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.light_square .pp_contract{background:url(../files/shelf-stack-images/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.light_square .pp_contract:hover{background:url(../files/shelf-stack-images/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.light_square .pp_close{width:75px;height:22px;background:url(../files/shelf-stack-images/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.light_square .pp_nav .pp_play{background:url(../files/shelf-stack-images/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.light_square .pp_nav .pp_pause{background:url(../files/shelf-stack-images/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.light_square .pp_arrow_previous{background:url(../files/shelf-stack-images/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat}
div.light_square .pp_arrow_next{background:url(../files/shelf-stack-images/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat}
div.light_square .pp_next:hover{background:url(../files/shelf-stack-images/prettyPhoto/light_square/btnNext.png) center right no-repeat;cursor:pointer}
div.light_square .pp_previous:hover{background:url(../files/shelf-stack-images/prettyPhoto/light_square/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_top .pp_left{background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat}
div.facebook .pp_top .pp_middle{background:url(../files/shelf-stack-images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x}
div.facebook .pp_top .pp_right{background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat}
div.facebook .pp_content_container .pp_left{background:url(../files/shelf-stack-images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y}
div.facebook .pp_content_container .pp_right{background:url(../files/shelf-stack-images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y}
div.facebook .pp_expand{background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.facebook .pp_expand:hover{background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.facebook .pp_contract{background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.facebook .pp_contract:hover{background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.facebook .pp_close{width:22px;height:22px;background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.facebook .pp_description{margin:0 37px 0 0}
div.facebook .pp_loaderIcon{background:url(../files/shelf-stack-images/prettyPhoto/facebook/loader.gif) center center no-repeat}
div.facebook .pp_arrow_previous{background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default}
div.facebook .pp_arrow_next{background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_next.disabled{background-position:-32px -96px;cursor:default}
div.facebook .pp_nav{margin-top:0}
div.facebook .pp_nav p{font-size:15px;padding:0 3px 0 4px}
div.facebook .pp_nav .pp_play{background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_nav .pp_pause{background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_next:hover{background:url(../files/shelf-stack-images/prettyPhoto/facebook/btnNext.png) center right no-repeat;cursor:pointer}
div.facebook .pp_previous:hover{background:url(../files/shelf-stack-images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_bottom .pp_left{background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat}
div.facebook .pp_bottom .pp_middle{background:url(../files/shelf-stack-images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x}
div.facebook .pp_bottom .pp_right{background:url(../files/shelf-stack-images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat}
div.pp_pic_holder a:focus{outline:none}
div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:12500}
div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:100000}
.pp_content{height:40px;min-width:40px}
* html .pp_content{width:40px}
.pp_content_container{position:relative;text-align:left;width:100%}
.pp_content_container .pp_left{padding-left:20px}
.pp_content_container .pp_right{padding-right:20px}
.pp_content_container .pp_details{float:left;margin:10px 0 2px}
.pp_description{display:none;margin:0}
.pp_social{float:left;margin:0}
.pp_social .facebook{float:left;margin-left:5px;width:55px;overflow:hidden}
.pp_social .twitter{float:left}
.pp_nav{clear:right;float:left;margin:3px 10px 0 0}
.pp_nav p{float:left;white-space:nowrap;margin:2px 4px}
.pp_nav .pp_play,.pp_nav .pp_pause{float:left;margin-right:4px;text-indent:-10000px}
a.pp_arrow_previous,a.pp_arrow_next{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}
.pp_hoverContainer{position:absolute;top:0;width:100%;z-index:5000}
.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:13000}
.pp_gallery div{float:left;overflow:hidden;position:relative}
.pp_gallery ul{float:left;height:35px;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}
.pp_gallery ul a{border:1px rgba(0,0,0,0.5) solid;display:block;float:left;height:33px;overflow:hidden}
.pp_gallery ul a img{border:0}
.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}
.pp_gallery li.default a{background:url(../files/shelf-stack-images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;display:block;height:33px;width:50px}
.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}
a.pp_next{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float:right;height:100%;text-indent:-10000px;width:49%}
a.pp_previous{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float:left;height:100%;text-indent:-10000px;width:49%}
a.pp_expand,a.pp_contract{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:25000}
a.pp_close{position:absolute;right:0;top:0;display:block;line-height:22px;text-indent:-10000px}
.pp_loaderIcon{display:block;height:24px;left:50%;position:absolute;top:50%;width:24px;margin:-12px 0 0 -12px}
#pp_full_res{line-height:1!important}
#pp_full_res .pp_inline{text-align:left}
#pp_full_res .pp_inline p{margin:0 0 15px}
div.ppt{color:#fff;display:none;font-size:17px;z-index:12999;margin:0 0 5px 15px}
div.shelf_pp_default .pp_content,div.light_rounded .pp_content{background-color:#fff}
div.shelf_pp_default #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.facebook #pp_full_res .pp_inline{color:#000}
div.shelf_pp_default .pp_gallery ul li a:hover,div.shelf_pp_default .pp_gallery ul li.selected a,.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}
div.shelf_pp_default .pp_details,div.light_rounded .pp_details,div.dark_rounded .pp_details,div.dark_square .pp_details,div.light_square .pp_details,div.facebook .pp_details{position:relative}
div.light_rounded .pp_top .pp_middle,div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right,div.light_rounded .pp_bottom .pp_middle,div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right,div.light_square .pp_content,div.facebook .pp_content{background:#fff}
div.light_rounded .pp_description,div.light_square .pp_description{margin-right:85px}
div.light_rounded .pp_gallery a.pp_arrow_previous,div.light_rounded .pp_gallery a.pp_arrow_next,div.dark_rounded .pp_gallery a.pp_arrow_previous,div.dark_rounded .pp_gallery a.pp_arrow_next,div.dark_square .pp_gallery a.pp_arrow_previous,div.dark_square .pp_gallery a.pp_arrow_next,div.light_square .pp_gallery a.pp_arrow_previous,div.light_square .pp_gallery a.pp_arrow_next{margin-top:12px!important}
div.light_rounded .pp_arrow_previous.disabled,div.dark_rounded .pp_arrow_previous.disabled,div.dark_square .pp_arrow_previous.disabled,div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}
div.light_rounded .pp_arrow_next.disabled,div.dark_rounded .pp_arrow_next.disabled,div.dark_square .pp_arrow_next.disabled,div.light_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}
div.light_rounded .pp_loaderIcon,div.light_square .pp_loaderIcon{background:url(../files/shelf-stack-images/prettyPhoto/light_rounded/loader.gif) center center no-repeat}
div.dark_rounded .pp_top .pp_middle,div.dark_rounded .pp_content,div.dark_rounded .pp_bottom .pp_middle{background:url(../files/shelf-stack-images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat}
div.dark_rounded .currentTextHolder,div.dark_square .currentTextHolder{color:#c4c4c4}
div.dark_rounded #pp_full_res .pp_inline,div.dark_square #pp_full_res .pp_inline{color:#fff}
.pp_top,.pp_bottom{height:20px;position:relative}
* html .pp_top,* html .pp_bottom{padding:0 20px}
.pp_top .pp_left,.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}
.pp_top .pp_middle,.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}
* html .pp_top .pp_middle,* html .pp_bottom .pp_middle{left:0;position:static}
.pp_top .pp_right,.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}
.pp_fade,.pp_gallery li.default a img{display:none}






#stacks_in_521 {
	margin: 0px 0px 10px 0px;
}
/* Shelf Stack Item CSS */

.stacks_in_536-image-caption {
	text-align: center;
}



.stacks_in_536-image-caption {
	display: none;
}

/* Shelf Stack Item CSS */

.stacks_in_525-image-caption {
	text-align: center;
}



.stacks_in_525-image-caption {
	display: none;
}

/* Shelf Stack Item CSS */

.stacks_in_533-image-caption {
	text-align: center;
}



.stacks_in_533-image-caption {
	display: none;
}

@charset "UTF-8";.movingbox.stacks_in_7940{--wait-time:4000ms;--animation-speed:1.00s}  

#stacks_in_2560 {
	background-color: rgba(223, 223, 223, 1.00);
	border: solid rgba(223, 223, 223, 1.00);
	border-width:  3px;
	padding:  3px;
}

#stacks_in_2561 {
	font-weight: lighter;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



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

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

/* Label Font Choices */
	
	.stacks_in_4802_20_1_accordion_label {
		font-family: 'Open Sans', sans-serif;
	}















/* Content Font Choices */
	
	.stacks_in_4802_20_1_accordion_content {
		font-family: 'Open Sans', sans-serif;
	}









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

.stacks_in_4802_20_1_accordion_label i {
}

.stacks_in_4802_20_1_accordion_selected {
}

.stacks_in_4802_20_1_accordion_content {
		
		padding: 40px;
	

}

ul#stacks_in_4802_20_1_accordion li:last-child .stacks_in_4802_20_1_accordion_content {
}

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

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

.stacks_in_4802_20_1_accordion_selected .accordion_icon i {
	
}

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



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

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */


ul#stacks_in_4802_20_1_accordion {
}

.stacks_in_4802_20_1_accordion_label {
	color: #ffffff;
	background: #A6C8A7;
	border-bottom: 1px solid #96b597;
}

.stacks_in_4802_20_1_accordion_selected {
	color: #ffffff;
	background: #585858;
	border-bottom: 1px solid #484848;
}



.stacks_in_4802_20_1_accordion_content {
	background: #EDEDED;
	color: #414141;
	border-bottom: 1px solid #96b597;
}


ul#stacks_in_4802_20_1_accordion li:last-child .stacks_in_4802_20_1_accordion_label {
	border-bottom: none;
}


ul#stacks_in_4802_20_1_accordion li:last-child .stacks_in_4802_20_1_accordion_selected {
	border-bottom: 1px solid #484848;
}

ul#stacks_in_4802_20_1_accordion li:last-child .stacks_in_4802_20_1_accordion_content {
	border-bottom: none;
}




/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */




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

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

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


@media only screen {
	.stacks_in_4802_20_1_accordion_label {
		font-size: 20px;
	}

	.stacks_in_4802_20_1_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}

}


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

	.stacks_in_4802_20_1_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}
}

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

	.stacks_in_4802_20_1_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}

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

	.stacks_in_4802_20_1_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}


/* Pull Quote Styling */


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



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


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



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


#stacks_in_4802_20_306 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_4802_20_306 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_4802_20_306 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_4802_20_306 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_4802_20_306 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_4802_20_293 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_4802_20_293 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_4802_20_293 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_4802_20_293 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_4802_20_293 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_4802_20_4 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_4802_20_4 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_4802_20_4 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_4802_20_4 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_4802_20_4 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_4802_20_214 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_4802_20_214 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_4802_20_214 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_4802_20_214 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_4802_20_214 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_4802_20_221 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_4802_20_221 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_4802_20_221 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_4802_20_221 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_4802_20_221 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_4802_20_347 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_4802_20_347 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_4802_20_347 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_4802_20_347 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_4802_20_347 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_4802_20_340 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_4802_20_340 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_4802_20_340 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_4802_20_340 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_4802_20_340 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_4802_20_328 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_4802_20_328 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_4802_20_328 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_4802_20_328 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_4802_20_328 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_4802_20_333 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_4802_20_333 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_4802_20_333 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_4802_20_333 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_4802_20_333 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}


#stacks_in_519 {
	background-color: rgba(223, 223, 223, 1.00);
	padding:  3px;
}

#stacks_in_520 {
	font-weight: lighter;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



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

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

/* Label Font Choices */
	
	.stacks_in_9390_accordion_label {
		font-family: 'Open Sans', sans-serif;
	}















/* Content Font Choices */
	
	.stacks_in_9390_accordion_content {
		font-family: 'Open Sans', sans-serif;
	}









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

.stacks_in_9390_accordion_label i {
}

.stacks_in_9390_accordion_selected {
}

.stacks_in_9390_accordion_content {
		
		padding: 40px;
	

}

ul#stacks_in_9390_accordion li:last-child .stacks_in_9390_accordion_content {
}

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

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

.stacks_in_9390_accordion_selected .accordion_icon i {
	
}

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



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

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */


ul#stacks_in_9390_accordion {
}

.stacks_in_9390_accordion_label {
	color: #ffffff;
	background: #A6C8A7;
	border-bottom: 1px solid #96b597;
}

.stacks_in_9390_accordion_selected {
	color: #ffffff;
	background: #585858;
	border-bottom: 1px solid #484848;
}



.stacks_in_9390_accordion_content {
	background: #EDEDED;
	color: #414141;
	border-bottom: 1px solid #96b597;
}


ul#stacks_in_9390_accordion li:last-child .stacks_in_9390_accordion_label {
	border-bottom: none;
}


ul#stacks_in_9390_accordion li:last-child .stacks_in_9390_accordion_selected {
	border-bottom: 1px solid #484848;
}

ul#stacks_in_9390_accordion li:last-child .stacks_in_9390_accordion_content {
	border-bottom: none;
}




/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */




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

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

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


@media only screen {
	.stacks_in_9390_accordion_label {
		font-size: 20px;
	}

	.stacks_in_9390_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}

}


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

	.stacks_in_9390_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}
}

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

	.stacks_in_9390_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}

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

	.stacks_in_9390_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}


/* Pull Quote Styling */


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



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


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



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


#stacks_in_10060 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_10060 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_10060 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_10060 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_10060 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_10034 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_10034 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_10034 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_10034 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_10034 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_10027 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_10027 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_10027 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_10027 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_10027 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_10069 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_10069 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_10069 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_10069 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_10069 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_10018 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_10018 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_10018 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_10018 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_10018 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_9395 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_9395 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_9395 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_9395 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_9395 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_9398 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_9398 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_9398 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_9398 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_9398 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_10046 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_10046 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_10046 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_10046 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_10046 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_9415 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_9415 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_9415 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_9415 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_9415 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_9420 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_9420 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_9420 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_9420 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_9420 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_9425 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_9425 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_9425 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_9425 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_9425 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_9430 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_9430 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_9430 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_9430 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_9430 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_9437 .floated_content {
  float: right;
}





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

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

    

  
  #stacks_in_9437 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


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

    

  
  #stacks_in_9437 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

  
  #stacks_in_9437 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




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

    

  
  #stacks_in_9437 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


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

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

}

/* Pull Quote Styling */


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



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


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



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


#stacks_in_9442 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9442 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9442 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9442 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9442 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9442 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9442 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9442 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9442 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9442 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9442 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9447 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9447 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9447 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9447 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9447 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9447 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9447 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9447 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9447 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9447 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9447 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9447 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9447 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9447 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9447 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9452 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9452 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9452 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9452 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9452 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9452 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9452 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9452 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9452 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9452 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9452 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9452 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9452 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9452 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9452 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9457 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9457 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9457 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9457 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9457 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9457 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9457 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9457 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9457 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9457 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9457 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9457 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9457 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9457 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9457 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9464 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9464 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9464 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9464 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9464 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9464 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9464 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9464 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9464 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9464 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9464 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9464 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9464 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9464 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9464 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9469 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9469 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9469 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9469 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9469 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9469 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9469 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9469 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9469 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9469 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9469 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9469 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9469 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9469 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9469 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9474 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9474 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9474 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9474 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9474 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9474 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9474 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9474 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9474 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9474 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9474 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9474 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9474 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9474 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9474 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9479 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9479 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9479 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9479 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9479 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9479 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9479 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9479 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9479 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9479 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9479 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9479 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9479 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9479 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9479 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9484 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9484 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9484 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9484 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9484 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9484 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9484 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9484 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9484 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9484 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9484 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9484 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9484 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9484 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9484 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9489 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9489 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9489 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9489 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9489 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9489 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9489 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9489 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9489 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9489 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9489 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9489 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9489 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9489 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9489 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9494 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9494 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9494 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9494 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9494 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9494 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9494 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9494 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9494 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9494 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9494 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9494 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9494 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9494 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9494 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9499 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9499 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9499 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9499 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9499 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9499 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9499 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9499 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9499 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9499 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9499 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9499 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9499 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9499 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9499 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9504 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9504 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9504 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9504 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9504 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9504 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9504 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9504 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9504 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9504 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9504 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9504 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9504 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9504 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9504 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9509 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9509 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9509 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9509 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9509 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9509 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9509 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9509 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9509 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9509 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9509 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9509 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9509 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9509 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9509 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9516 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9516 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9516 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9516 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9516 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9516 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9516 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9516 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9516 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9516 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9516 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9516 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9516 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9516 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9516 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9521 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9521 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9521 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9521 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9521 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9521 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9521 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9521 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9521 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9521 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9521 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9521 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9521 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9521 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9521 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9526 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9526 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9526 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9526 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9526 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9526 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9526 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9526 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9526 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9526 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9526 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9526 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9526 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9526 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9526 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9531 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9531 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9531 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9531 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9531 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9531 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9531 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9531 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9531 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9531 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9531 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9531 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9531 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9531 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9531 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9536 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9536 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9536 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9536 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9536 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9536 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9536 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9536 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9536 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9536 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9536 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9536 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9536 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9536 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9536 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9541 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9541 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9541 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9541 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9541 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9541 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9541 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9541 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9541 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9541 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9541 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9541 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9541 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9541 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9541 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9546 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9546 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9546 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9546 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9546 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9546 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9546 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9546 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9546 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9546 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9546 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9546 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9546 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9546 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9546 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9551 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9551 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9551 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9551 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9551 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9551 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9551 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9551 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9551 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9551 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9551 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9551 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9551 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9551 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9551 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9556 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9556 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9556 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9556 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9556 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9556 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9556 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9556 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9556 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9556 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9556 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9556 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9556 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9556 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9556 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9561 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9561 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9561 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9561 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9561 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9561 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9561 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9561 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9561 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9561 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9561 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9561 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9561 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9561 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9561 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9568 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9568 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9568 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9568 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9568 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9568 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9568 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9568 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9568 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9568 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9568 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9568 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9568 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9568 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9568 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9573 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9573 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9573 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9573 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9573 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9573 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9573 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9573 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9573 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9573 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9573 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9573 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9573 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9573 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9573 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9578 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9578 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9578 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9578 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9578 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9578 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9578 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9578 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9578 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9578 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9578 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9578 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9578 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9578 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9578 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9583 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9583 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9583 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9583 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9583 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9583 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9583 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9583 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9583 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9583 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9583 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9583 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9583 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9583 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9583 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9588 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9588 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9588 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9588 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9588 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9588 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9588 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9588 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9588 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9588 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9588 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9588 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9588 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9588 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9588 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9593 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9593 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9593 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9593 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9593 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9593 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9593 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9593 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9593 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9593 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9593 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9593 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9593 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9593 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9593 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9598 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9598 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9598 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9598 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9598 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9598 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9598 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9598 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9598 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9598 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9598 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9598 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9598 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9598 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9598 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9603 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9603 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9603 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9603 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9603 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9603 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9603 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9603 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9603 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9603 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9603 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9603 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9603 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9603 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9603 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9610 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9610 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9610 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9610 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9610 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9610 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9610 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9610 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9610 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9610 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9610 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9610 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9610 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9610 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9610 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9615 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9615 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9615 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9615 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9615 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9615 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9615 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9615 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9615 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9615 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9615 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9615 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9615 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9615 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9615 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9620 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9620 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9620 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9620 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9620 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9620 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9620 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9620 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9620 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9620 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9620 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9620 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9620 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9620 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9620 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9625 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9625 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9625 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9625 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9625 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9625 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9625 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9625 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9625 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9625 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9625 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9625 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9625 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9625 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9625 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9630 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9630 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9630 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9630 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9630 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9630 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9630 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9630 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9630 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9630 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9630 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9630 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9630 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9630 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9630 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9635 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9635 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9635 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9635 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9635 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9635 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9635 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9635 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9635 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9635 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9635 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9635 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9635 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9635 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9635 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9640 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9640 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9640 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9640 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9640 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9640 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9640 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9640 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9640 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9640 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9640 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9640 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9640 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9640 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9640 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9647 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9647 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9647 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9647 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9647 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9647 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9647 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9647 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9647 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9647 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9647 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9647 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9647 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9647 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9647 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9652 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9652 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9652 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9652 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9652 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9652 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9652 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9652 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9652 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9652 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9652 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9652 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9652 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9652 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9652 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9657 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9657 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9657 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9657 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9657 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9657 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9657 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9657 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9657 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9657 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9657 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9657 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9657 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9657 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9657 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9662 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9662 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9662 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9662 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9662 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9662 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9662 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9662 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9662 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9662 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9662 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9662 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9662 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9662 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9662 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9667 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9667 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9667 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9667 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9667 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9667 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9667 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9667 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9667 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9667 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9667 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9667 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9667 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9667 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9667 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9672 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9672 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9672 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9672 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9672 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9672 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9672 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9672 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9672 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9672 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9672 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9672 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9672 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9672 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9672 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9677 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9677 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9677 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9677 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9677 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9677 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9677 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9677 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9677 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9677 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9677 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9677 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9677 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9677 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9677 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9682 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9682 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9682 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9682 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9682 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9682 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9682 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9682 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9682 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9682 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9682 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9682 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9682 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9682 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9682 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9687 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9687 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9687 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9687 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9687 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9687 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9687 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9687 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9687 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9687 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9687 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9687 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9687 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9687 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9687 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9692 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9692 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9692 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9692 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9692 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9692 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9692 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9692 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9692 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9692 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9692 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9692 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9692 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9692 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9692 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9697 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9697 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9697 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9697 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9697 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9697 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9697 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9697 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9697 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9697 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9697 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9697 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9697 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9697 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9697 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9702 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9702 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9702 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9702 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9702 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9702 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9702 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9702 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9702 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9702 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9702 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9702 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9702 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9702 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9702 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9707 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9707 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9707 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9707 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9707 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9707 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9707 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9707 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9707 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9707 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9707 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9707 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9707 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9707 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9707 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9714 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9714 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9714 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9714 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9714 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9714 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9714 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9714 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9714 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9714 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9714 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9714 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9714 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9714 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9714 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9719 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9719 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9719 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9719 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9719 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9719 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9719 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9719 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9719 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9719 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9719 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9719 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9719 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9719 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9719 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9724 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9724 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9724 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9724 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9724 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9724 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9724 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9724 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9724 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9724 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9724 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9724 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9724 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9724 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9724 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9729 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9729 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9729 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9729 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9729 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9729 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9729 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9729 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9729 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9729 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9729 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9729 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9729 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9729 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9729 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9734 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9734 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9734 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9734 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9734 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9734 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9734 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9734 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9734 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9734 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9734 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9734 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9734 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9734 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9734 .pull_quote { 
      max-width: 100%;
    }
  

}

#stacks_in_9739>.s3_row {
	margin: 0 -10px;
}

#stacks_in_9739>.s3_row>.s3_column_left {
	width: 51.51%;
}

#stacks_in_9739>.s3_row>.s3_column_right {
	width: 48.490002%;
}




#stacks_in_9739>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_9739>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_9739>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_9744 {
	display:inline-block; width:100%; line-height: 0.900000em;
}
/* Pull Quote Styling */


  #stacks_in_9748 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9748 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9748 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9748 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9748 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9748 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9748 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9748 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9748 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9748 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9748 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9748 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9748 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9748 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9748 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9753 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9753 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9753 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9753 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9753 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9753 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9753 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9753 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9753 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9753 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9753 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9753 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9753 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9753 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9753 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9758 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9758 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9758 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9758 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9758 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9758 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9758 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9758 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9758 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9758 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9758 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9758 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9758 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9758 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9758 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9765 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9765 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9765 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9765 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9765 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9765 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9765 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9765 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9765 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9765 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9765 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9765 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9765 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9765 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9765 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9770 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9770 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9770 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9770 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9770 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9770 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9770 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9770 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9770 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9770 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9770 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9770 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9770 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9770 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9770 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9775 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9775 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9775 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9775 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9775 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9775 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9775 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9775 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9775 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9775 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9775 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9775 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9775 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9775 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9775 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9780 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9780 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9780 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9780 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9780 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9780 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9780 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9780 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9780 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9780 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9780 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9780 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9780 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9780 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9780 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9785 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9785 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9785 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9785 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9785 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9785 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9785 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9785 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9785 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9785 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9785 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9785 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9785 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9785 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9785 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9790 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9790 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9790 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9790 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9790 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9790 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9790 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9790 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9790 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9790 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9790 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9790 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9790 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9790 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9790 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9795 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9795 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9795 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9795 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9795 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9795 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9795 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9795 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9795 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9795 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9795 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9795 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9795 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9795 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9795 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9800 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9800 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9800 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9800 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9800 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9800 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9800 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9800 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9800 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9800 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9800 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9800 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9800 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9800 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9800 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9807 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9807 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9807 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9807 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9807 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9807 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9807 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9807 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9807 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9807 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9807 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9807 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9807 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9807 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9807 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9812 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9812 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9812 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9812 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9812 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9812 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9812 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9812 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9812 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9812 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9812 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9812 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9812 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9812 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9812 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9817 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9817 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9817 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9817 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9817 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9817 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9817 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9817 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9817 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9817 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9817 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9817 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9817 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9817 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9817 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9822 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9822 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9822 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9822 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9822 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9822 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9822 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9822 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9822 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9822 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9822 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9822 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9822 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9822 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9822 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9827 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9827 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9827 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9827 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9827 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9827 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9827 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9827 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9827 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9827 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9827 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9827 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9827 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9827 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9827 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9832 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9832 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9832 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9832 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9832 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9832 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9832 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9832 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9832 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9832 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9832 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9832 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9832 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9832 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9832 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9837 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9837 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9837 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9837 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9837 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9837 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9837 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9837 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9837 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9837 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9837 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9837 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9837 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9837 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9837 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9842 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9842 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9842 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9842 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9842 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9842 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9842 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9842 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9842 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9842 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9842 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9842 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9842 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9842 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9842 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9847 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9847 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9847 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9847 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9847 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9847 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9847 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9847 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9847 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9847 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9847 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9847 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9847 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9847 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9847 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9854 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9854 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9854 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9854 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9854 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9854 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9854 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9854 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9854 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9854 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9854 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9854 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9854 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9854 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9854 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9859 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9859 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9859 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9859 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9859 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9859 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9859 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9859 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9859 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9859 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9859 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9859 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9859 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9859 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9859 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9864 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9864 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9864 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9864 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9864 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9864 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9864 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9864 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9864 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9864 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9864 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9864 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9864 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9864 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9864 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9869 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9869 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9869 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9869 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9869 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9869 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9869 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9869 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9869 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9869 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9869 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9869 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9869 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9869 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9869 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9874 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9874 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9874 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9874 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9874 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9874 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9874 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9874 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9874 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9874 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9874 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9874 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9874 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9874 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9874 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9879 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9879 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9879 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9879 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9879 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9879 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9879 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9879 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9879 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9879 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9879 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9879 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9879 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9879 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9879 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9884 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9884 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9884 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9884 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9884 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9884 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9884 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9884 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9884 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9884 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9884 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9884 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9884 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9884 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9884 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9889 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9889 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9889 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9889 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9889 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9889 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9889 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9889 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9889 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9889 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9889 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9889 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9889 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9889 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9889 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9894 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9894 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9894 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9894 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9894 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9894 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9894 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9894 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9894 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9894 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9894 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9894 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9894 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9894 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9894 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9903 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9903 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9903 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9903 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9903 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9903 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9903 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9903 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9903 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9903 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9903 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9903 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9903 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9903 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9903 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9908 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9908 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9908 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9908 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9908 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9908 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9908 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9908 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9908 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9908 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9908 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9908 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9908 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9908 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9908 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9913 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9913 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9913 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9913 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9913 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9913 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9913 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9913 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9913 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9913 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9913 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9913 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9913 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9913 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9913 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9918 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9918 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9918 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9918 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9918 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9918 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9918 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9918 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9918 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9918 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9918 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9918 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9918 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9918 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9918 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9923 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9923 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9923 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9923 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9923 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9923 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9923 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9923 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9923 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9923 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9923 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9923 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9923 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9923 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9923 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9928 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9928 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9928 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9928 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9928 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9928 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9928 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9928 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9928 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9928 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9928 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9928 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9928 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9928 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9928 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9933 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9933 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9933 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9933 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9933 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9933 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9933 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9933 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9933 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9933 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9933 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9933 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9933 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9933 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9933 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9938 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9938 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9938 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9938 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9938 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9938 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9938 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9938 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9938 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9938 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9938 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9938 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9938 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9938 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9938 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9945 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9945 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9945 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9945 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9945 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9945 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9945 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9945 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9945 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9945 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9945 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9945 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9945 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9945 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9945 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9950 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9950 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9950 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9950 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9950 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9950 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9950 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9950 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9950 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9950 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9950 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9950 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9950 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9950 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9950 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9955 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9955 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9955 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9955 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9955 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9955 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9955 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9955 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9955 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9955 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9955 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9955 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9955 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9955 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9955 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9960 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9960 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9960 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9960 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9960 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9960 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9960 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9960 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9960 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9960 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9960 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9960 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9960 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9960 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9960 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9965 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9965 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9965 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9965 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9965 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9965 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9965 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9965 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9965 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9965 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9965 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9965 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9965 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9965 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9965 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9970 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9970 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9970 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9970 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9970 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9970 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9970 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9970 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9970 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9970 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9970 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9970 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9970 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9970 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9970 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9975 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9975 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9975 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9975 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9975 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9975 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9975 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9975 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9975 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9975 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9975 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9975 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9975 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9975 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9975 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9980 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9980 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9980 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9980 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9980 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9980 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9980 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9980 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9980 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9980 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9980 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9980 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9980 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9980 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9980 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9985 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9985 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9985 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9985 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9985 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9985 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9985 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9985 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9985 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9985 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9985 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9985 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9985 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9985 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9985 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9990 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9990 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9990 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9990 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9990 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9990 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9990 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9990 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9990 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9990 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9990 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9990 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9990 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9990 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9990 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_9995 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_9995 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_9995 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_9995 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_9995 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_9995 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_9995 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_9995 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_9995 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_9995 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_9995 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_9995 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_9995 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_9995 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_9995 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_10000 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_10000 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_10000 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_10000 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_10000 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_10000 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_10000 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_10000 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_10000 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_10000 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_10000 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_10000 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_10000 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_10000 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_10000 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_10005 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_10005 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_10005 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_10005 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_10005 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_10005 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_10005 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_10005 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_10005 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_10005 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_10005 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_10005 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_10005 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_10005 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_10005 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_out_10012 {
	margin-left:0;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_8038_accordion {
	list-style: none;
	border-radius: 0px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_8038_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */
	
	.stacks_in_8038_accordion_label {
		font-family: 'Open Sans', sans-serif;
	}















/* Content Font Choices */
	
	.stacks_in_8038_accordion_content {
		font-family: 'Open Sans', sans-serif;
	}









.stacks_in_8038_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_8038_accordion_label i {
}

.stacks_in_8038_accordion_selected {
}

.stacks_in_8038_accordion_content {
		
		padding: 40px;
	

}

ul#stacks_in_8038_accordion li:last-child .stacks_in_8038_accordion_content {
}

.stacks_in_8038_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
		
		position: absolute;
		right: 20px;
		top: 15px;
		margin-right: 0px;
	
	
}

.stacks_in_8038_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_8038_accordion_selected .accordion_icon i {
	
}

#stacks_in_8038_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */


ul#stacks_in_8038_accordion {
}

.stacks_in_8038_accordion_label {
	color: #ffffff;
	background: #A6C8A7;
	border-bottom: 1px solid #96b597;
}

.stacks_in_8038_accordion_selected {
	color: #ffffff;
	background: #585858;
	border-bottom: 1px solid #484848;
}



.stacks_in_8038_accordion_content {
	background: #EDEDED;
	color: #414141;
	border-bottom: 1px solid #96b597;
}


ul#stacks_in_8038_accordion li:last-child .stacks_in_8038_accordion_label {
	border-bottom: none;
}


ul#stacks_in_8038_accordion li:last-child .stacks_in_8038_accordion_selected {
	border-bottom: 1px solid #484848;
}

ul#stacks_in_8038_accordion li:last-child .stacks_in_8038_accordion_content {
	border-bottom: none;
}




/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_8038_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_8038_accordion_label {
		font-size: 20px;
	}

	.stacks_in_8038_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_8038_accordion_label {
		font-size: 18px;
	}

	.stacks_in_8038_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_8038_accordion_label {
		font-size: 16px;
	}

	.stacks_in_8038_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_8038_accordion_label {
		font-size: 14px;
	}

	.stacks_in_8038_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}


/* Pull Quote Styling */


  #stacks_in_8721 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8721 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8721 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8721 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8721 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8721 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8721 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8721 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8721 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8721 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8721 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8721 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8721 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8721 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8721 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_10053 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_10053 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_10053 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_10053 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_10053 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_10053 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_10053 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_10053 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_10053 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_10053 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_10053 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_10053 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_10053 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_10053 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_10053 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8709 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8709 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8709 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8709 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8709 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8709 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8709 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8709 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8709 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8709 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8709 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8709 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8709 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8709 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8709 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8700 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8700 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8700 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8700 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8700 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8700 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8700 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8700 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8700 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8700 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8700 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8700 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8700 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8700 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8700 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8685 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8685 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8685 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8685 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8685 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8685 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8685 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8685 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8685 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8685 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8685 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8685 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8685 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8685 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8685 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8687 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8687 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8687 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8687 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8687 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8687 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8687 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8687 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8687 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8687 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8687 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8687 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8687 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8687 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8687 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8071 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8071 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8071 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8071 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8071 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8071 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8071 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8071 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8071 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8071 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8071 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8071 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8071 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8071 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8071 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8084 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8084 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8084 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8084 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8084 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8084 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8084 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8084 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8084 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8084 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8084 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8084 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8084 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8084 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8084 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8089 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8089 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8089 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8089 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8089 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8089 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8089 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8089 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8089 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8089 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8089 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8089 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8089 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8089 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8089 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8094 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8094 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8094 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8094 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8094 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8094 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8094 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8094 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8094 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8094 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8094 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8094 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8094 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8094 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8094 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8099 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8099 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8099 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8099 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8099 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8099 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8099 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8099 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8099 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8099 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8099 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8099 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8099 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8099 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8099 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8106 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8106 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8106 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8106 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8106 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8106 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8106 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8106 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8106 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8106 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8106 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8106 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8106 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8106 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8106 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8111 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8111 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8111 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8111 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8111 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8111 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8111 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8111 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8111 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8111 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8111 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8111 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8111 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8111 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8111 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8116 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8116 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8116 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8116 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8116 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8116 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8116 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8116 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8116 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8116 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8116 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8116 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8116 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8116 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8116 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8121 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8121 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8121 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8121 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8121 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8121 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8121 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8121 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8121 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8121 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8121 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8121 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8121 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8121 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8121 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8126 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8126 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8126 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8126 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8126 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8126 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8126 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8126 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8126 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8126 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8126 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8126 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8126 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8126 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8126 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8133 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8133 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8133 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8133 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8133 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8133 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8133 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8133 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8133 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8133 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8133 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8133 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8133 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8133 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8133 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8138 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8138 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8138 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8138 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8138 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8138 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8138 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8138 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8138 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8138 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8138 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8138 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8138 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8138 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8138 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8143 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8143 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8143 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8143 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8143 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8143 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8143 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8143 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8143 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8143 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8143 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8143 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8143 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8143 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8143 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8148 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8148 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8148 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8148 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8148 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8148 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8148 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8148 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8148 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8148 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8148 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8148 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8148 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8148 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8148 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8153 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8153 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8153 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8153 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8153 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8153 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8153 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8153 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8153 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8153 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8153 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8153 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8153 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8153 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8153 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8158 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8158 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8158 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8158 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8158 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8158 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8158 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8158 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8158 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8158 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8158 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8158 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8158 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8158 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8158 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8163 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8163 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8163 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8163 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8163 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8163 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8163 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8163 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8163 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8163 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8163 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8163 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8163 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8163 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8163 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8168 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8168 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8168 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8168 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8168 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8168 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8168 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8168 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8168 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8168 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8168 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8168 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8168 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8168 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8168 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8173 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8173 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8173 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8173 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8173 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8173 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8173 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8173 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8173 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8173 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8173 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8173 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8173 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8173 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8173 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8178 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8178 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8178 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8178 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8178 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8178 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8178 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8178 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8178 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8178 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8178 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8178 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8178 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8178 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8178 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8185 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8185 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8185 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8185 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8185 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8185 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8185 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8185 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8185 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8185 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8185 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8185 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8185 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8185 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8185 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8190 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8190 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8190 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8190 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8190 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8190 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8190 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8190 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8190 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8190 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8190 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8190 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8190 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8190 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8190 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8195 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8195 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8195 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8195 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8195 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8195 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8195 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8195 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8195 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8195 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8195 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8195 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8195 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8195 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8195 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8200 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8200 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8200 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8200 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8200 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8200 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8200 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8200 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8200 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8200 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8200 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8200 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8200 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8200 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8200 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8205 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8205 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8205 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8205 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8205 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8205 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8205 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8205 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8205 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8205 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8205 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8205 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8205 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8205 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8205 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8210 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8210 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8210 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8210 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8210 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8210 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8210 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8210 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8210 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8210 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8210 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8210 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8210 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8210 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8210 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8215 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8215 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8215 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8215 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8215 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8215 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8215 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8215 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8215 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8215 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8215 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8215 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8215 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8215 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8215 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8220 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8220 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8220 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8220 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8220 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8220 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8220 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8220 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8220 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8220 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8220 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8220 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8220 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8220 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8220 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8225 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8225 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8225 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8225 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8225 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8225 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8225 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8225 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8225 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8225 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8225 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8225 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8225 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8225 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8225 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8230 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8230 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8230 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8230 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8230 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8230 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8230 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8230 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8230 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8230 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8230 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8230 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8230 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8230 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8230 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8237 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8237 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8237 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8237 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8237 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8237 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8237 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8237 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8237 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8237 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8237 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8237 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8237 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8237 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8237 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8242 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8242 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8242 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8242 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8242 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8242 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8242 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8242 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8242 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8242 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8242 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8242 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8242 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8242 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8242 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8247 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8247 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8247 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8247 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8247 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8247 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8247 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8247 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8247 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8247 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8247 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8247 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8247 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8247 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8247 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8252 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8252 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8252 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8252 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8252 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8252 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8252 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8252 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8252 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8252 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8252 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8252 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8252 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8252 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8252 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8257 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8257 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8257 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8257 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8257 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8257 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8257 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8257 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8257 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8257 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8257 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8257 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8257 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8257 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8257 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8262 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8262 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8262 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8262 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8262 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8262 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8262 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8262 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8262 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8262 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8262 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8262 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8262 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8262 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8262 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8267 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8267 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8267 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8267 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8267 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8267 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8267 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8267 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8267 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8267 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8267 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8267 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8267 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8267 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8267 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8272 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8272 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8272 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8272 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8272 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8272 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8272 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8272 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8272 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8272 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8272 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8272 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8272 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8272 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8272 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8279 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8279 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8279 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8279 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8279 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8279 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8279 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8279 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8279 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8279 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8279 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8279 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8279 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8279 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8279 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8284 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8284 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8284 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8284 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8284 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8284 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8284 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8284 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8284 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8284 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8284 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8284 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8284 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8284 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8284 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8289 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8289 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8289 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8289 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8289 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8289 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8289 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8289 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8289 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8289 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8289 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8289 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8289 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8289 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8289 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8294 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8294 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8294 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8294 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8294 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8294 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8294 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8294 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8294 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8294 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8294 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8294 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8294 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8294 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8294 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8299 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8299 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8299 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8299 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8299 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8299 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8299 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8299 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8299 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8299 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8299 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8299 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8299 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8299 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8299 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8304 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8304 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8304 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8304 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8304 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8304 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8304 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8304 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8304 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8304 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8304 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8304 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8304 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8304 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8304 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8309 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8309 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8309 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8309 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8309 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8309 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8309 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8309 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8309 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8309 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8309 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8309 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8309 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8309 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8309 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8316 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8316 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8316 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8316 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8316 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8316 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8316 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8316 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8316 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8316 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8316 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8316 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8316 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8316 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8316 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8321 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8321 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8321 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8321 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8321 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8321 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8321 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8321 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8321 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8321 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8321 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8321 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8321 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8321 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8321 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8326 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8326 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8326 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8326 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8326 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8326 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8326 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8326 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8326 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8326 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8326 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8326 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8326 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8326 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8326 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8331 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8331 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8331 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8331 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8331 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8331 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8331 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8331 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8331 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8331 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8331 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8331 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8331 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8331 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8331 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8336 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8336 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8336 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8336 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8336 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8336 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8336 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8336 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8336 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8336 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8336 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8336 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8336 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8336 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8336 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8341 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8341 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8341 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8341 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8341 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8341 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8341 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8341 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8341 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8341 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8341 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8341 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8341 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8341 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8341 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8346 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8346 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8346 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8346 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8346 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8346 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8346 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8346 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8346 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8346 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8346 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8346 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8346 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8346 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8346 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8351 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8351 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8351 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8351 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8351 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8351 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8351 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8351 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8351 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8351 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8351 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8351 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8351 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8351 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8351 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8356 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8356 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8356 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8356 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8356 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8356 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8356 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8356 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8356 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8356 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8356 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8356 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8356 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8356 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8356 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8361 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8361 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8361 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8361 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8361 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8361 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8361 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8361 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8361 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8361 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8361 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8361 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8361 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8361 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8361 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8366 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8366 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8366 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8366 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8366 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8366 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8366 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8366 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8366 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8366 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8366 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8366 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8366 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8366 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8366 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8371 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8371 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8371 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8371 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8371 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8371 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8371 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8371 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8371 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8371 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8371 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8371 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8371 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8371 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8371 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8376 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8376 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8376 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8376 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8376 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8376 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8376 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8376 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8376 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8376 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8376 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8376 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8376 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8376 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8376 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8383 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8383 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8383 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8383 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8383 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8383 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8383 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8383 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8383 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8383 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8383 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8383 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8383 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8383 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8383 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8388 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8388 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8388 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8388 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8388 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8388 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8388 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8388 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8388 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8388 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8388 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8388 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8388 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8388 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8388 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8393 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8393 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8393 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8393 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8393 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8393 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8393 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8393 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8393 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8393 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8393 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8393 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8393 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8393 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8393 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8398 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8398 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8398 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8398 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8398 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8398 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8398 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8398 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8398 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8398 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8398 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8398 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8398 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8398 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8398 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8403 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8403 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8403 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8403 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8403 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8403 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8403 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8403 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8403 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8403 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8403 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8403 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8403 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8403 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8403 .pull_quote { 
      max-width: 100%;
    }
  

}

#stacks_in_8408>.s3_row {
	margin: 0 -10px;
}

#stacks_in_8408>.s3_row>.s3_column_left {
	width: 51.51%;
}

#stacks_in_8408>.s3_row>.s3_column_right {
	width: 48.490002%;
}




#stacks_in_8408>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_8408>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_8408>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_8413 {
	display:inline-block; width:100%; line-height: 0.900000em;
}
/* Pull Quote Styling */


  #stacks_in_8417 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8417 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8417 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8417 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8417 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8417 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8417 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8417 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8417 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8417 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8417 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8417 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8417 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8417 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8417 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8422 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8422 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8422 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8422 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8422 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8422 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8422 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8422 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8422 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8422 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8422 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8422 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8422 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8422 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8422 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8427 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8427 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8427 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8427 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8427 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8427 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8427 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8427 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8427 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8427 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8427 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8427 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8427 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8427 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8427 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8434 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8434 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8434 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8434 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8434 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8434 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8434 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8434 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8434 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8434 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8434 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8434 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8434 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8434 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8434 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8439 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8439 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8439 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8439 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8439 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8439 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8439 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8439 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8439 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8439 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8439 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8439 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8439 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8439 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8439 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8444 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8444 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8444 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8444 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8444 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8444 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8444 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8444 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8444 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8444 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8444 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8444 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8444 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8444 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8444 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8449 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8449 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8449 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8449 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8449 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8449 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8449 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8449 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8449 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8449 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8449 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8449 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8449 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8449 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8449 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8454 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8454 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8454 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8454 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8454 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8454 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8454 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8454 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8454 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8454 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8454 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8454 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8454 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8454 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8454 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8459 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8459 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8459 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8459 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8459 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8459 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8459 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8459 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8459 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8459 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8459 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8459 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8459 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8459 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8459 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8464 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8464 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8464 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8464 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8464 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8464 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8464 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8464 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8464 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8464 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8464 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8464 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8464 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8464 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8464 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8469 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8469 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8469 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8469 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8469 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8469 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8469 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8469 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8469 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8469 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8469 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8469 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8469 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8469 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8469 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8476 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8476 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8476 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8476 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8476 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8476 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8476 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8476 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8476 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8476 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8476 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8476 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8476 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8476 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8476 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8481 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8481 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8481 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8481 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8481 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8481 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8481 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8481 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8481 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8481 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8481 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8481 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8481 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8481 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8481 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8486 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8486 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8486 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8486 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8486 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8486 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8486 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8486 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8486 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8486 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8486 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8486 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8486 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8486 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8486 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8491 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8491 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8491 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8491 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8491 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8491 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8491 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8491 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8491 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8491 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8491 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8491 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8491 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8491 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8491 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8496 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8496 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8496 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8496 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8496 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8496 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8496 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8496 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8496 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8496 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8496 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8496 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8496 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8496 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8496 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8501 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8501 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8501 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8501 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8501 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8501 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8501 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8501 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8501 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8501 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8501 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8501 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8501 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8501 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8501 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8506 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8506 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8506 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8506 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8506 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8506 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8506 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8506 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8506 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8506 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8506 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8506 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8506 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8506 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8506 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8511 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8511 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8511 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8511 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8511 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8511 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8511 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8511 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8511 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8511 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8511 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8511 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8511 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8511 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8511 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8516 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8516 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8516 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8516 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8516 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8516 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8516 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8516 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8516 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8516 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8516 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8516 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8516 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8516 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8516 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8523 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8523 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8523 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8523 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8523 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8523 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8523 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8523 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8523 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8523 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8523 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8523 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8523 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8523 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8523 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8528 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8528 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8528 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8528 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8528 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8528 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8528 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8528 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8528 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8528 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8528 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8528 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8528 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8528 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8528 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8533 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8533 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8533 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8533 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8533 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8533 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8533 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8533 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8533 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8533 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8533 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8533 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8533 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8533 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8533 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8538 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8538 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8538 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8538 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8538 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8538 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8538 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8538 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8538 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8538 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8538 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8538 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8538 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8538 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8538 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8543 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8543 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8543 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8543 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8543 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8543 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8543 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8543 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8543 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8543 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8543 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8543 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8543 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8543 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8543 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8548 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8548 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8548 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8548 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8548 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8548 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8548 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8548 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8548 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8548 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8548 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8548 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8548 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8548 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8548 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8553 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8553 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8553 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8553 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8553 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8553 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8553 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8553 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8553 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8553 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8553 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8553 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8553 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8553 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8553 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8558 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8558 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8558 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8558 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8558 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8558 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8558 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8558 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8558 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8558 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8558 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8558 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8558 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8558 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8558 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8563 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8563 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8563 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8563 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8563 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8563 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8563 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8563 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8563 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8563 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8563 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8563 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8563 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8563 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8563 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8572 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8572 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8572 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8572 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8572 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8572 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8572 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8572 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8572 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8572 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8572 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8572 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8572 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8572 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8572 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8577 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8577 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8577 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8577 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8577 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8577 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8577 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8577 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8577 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8577 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8577 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8577 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8577 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8577 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8577 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8582 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8582 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8582 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8582 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8582 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8582 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8582 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8582 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8582 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8582 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8582 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8582 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8582 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8582 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8582 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8587 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8587 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8587 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8587 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8587 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8587 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8587 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8587 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8587 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8587 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8587 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8587 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8587 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8587 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8587 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8592 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8592 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8592 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8592 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8592 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8592 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8592 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8592 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8592 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8592 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8592 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8592 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8592 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8592 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8592 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8597 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8597 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8597 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8597 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8597 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8597 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8597 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8597 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8597 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8597 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8597 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8597 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8597 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8597 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8597 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8602 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8602 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8602 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8602 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8602 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8602 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8602 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8602 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8602 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8602 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8602 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8602 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8602 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8602 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8602 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8607 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8607 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8607 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8607 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8607 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8607 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8607 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8607 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8607 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8607 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8607 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8607 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8607 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8607 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8607 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8614 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8614 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8614 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8614 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8614 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8614 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8614 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8614 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8614 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8614 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8614 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8614 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8614 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8614 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8614 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8619 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8619 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8619 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8619 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8619 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8619 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8619 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8619 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8619 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8619 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8619 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8619 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8619 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8619 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8619 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8624 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8624 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8624 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8624 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8624 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8624 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8624 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8624 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8624 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8624 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8624 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8624 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8624 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8624 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8624 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8629 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8629 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8629 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8629 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8629 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8629 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8629 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8629 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8629 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8629 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8629 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8629 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8629 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8629 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8629 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8634 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8634 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8634 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8634 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8634 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8634 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8634 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8634 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8634 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8634 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8634 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8634 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8634 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8634 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8634 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8639 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8639 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8639 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8639 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8639 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8639 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8639 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8639 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8639 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8639 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8639 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8639 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8639 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8639 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8639 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8644 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8644 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8644 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8644 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8644 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8644 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8644 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8644 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8644 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8644 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8644 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8644 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8644 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8644 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8644 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8649 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8649 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8649 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8649 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8649 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8649 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8649 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8649 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8649 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8649 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8649 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8649 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8649 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8649 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8649 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8654 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8654 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8654 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8654 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8654 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8654 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8654 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8654 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8654 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8654 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8654 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8654 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8654 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8654 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8654 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8659 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8659 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8659 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8659 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8659 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8659 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8659 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8659 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8659 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8659 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8659 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8659 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8659 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8659 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8659 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8664 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8664 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8664 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8664 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8664 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8664 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8664 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8664 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8664 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8664 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8664 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8664 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8664 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8664 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8664 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8669 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8669 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8669 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8669 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8669 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8669 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8669 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8669 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8669 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8669 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8669 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8669 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8669 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8669 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8669 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_8674 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_8674 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_8674 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_8674 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_8674 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_8674 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_8674 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_8674 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_8674 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_8674 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_8674 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_8674 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_8674 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_8674 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_8674 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_out_8681 {
	margin-left:0;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_7256_accordion {
	list-style: none;
	border-radius: 0px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_7256_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */
	
	.stacks_in_7256_accordion_label {
		font-family: 'Open Sans', sans-serif;
	}















/* Content Font Choices */
	
	.stacks_in_7256_accordion_content {
		font-family: 'Open Sans', sans-serif;
	}









.stacks_in_7256_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_7256_accordion_label i {
}

.stacks_in_7256_accordion_selected {
}

.stacks_in_7256_accordion_content {
		
		padding: 40px;
	

}

ul#stacks_in_7256_accordion li:last-child .stacks_in_7256_accordion_content {
}

.stacks_in_7256_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
		
		position: absolute;
		right: 20px;
		top: 15px;
		margin-right: 0px;
	
	
}

.stacks_in_7256_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_7256_accordion_selected .accordion_icon i {
	
}

#stacks_in_7256_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */


ul#stacks_in_7256_accordion {
}

.stacks_in_7256_accordion_label {
	color: #ffffff;
	background: #A6C8A7;
	border-bottom: 1px solid #96b597;
}

.stacks_in_7256_accordion_selected {
	color: #ffffff;
	background: #585858;
	border-bottom: 1px solid #484848;
}



.stacks_in_7256_accordion_content {
	background: #EDEDED;
	color: #414141;
	border-bottom: 1px solid #96b597;
}


ul#stacks_in_7256_accordion li:last-child .stacks_in_7256_accordion_label {
	border-bottom: none;
}


ul#stacks_in_7256_accordion li:last-child .stacks_in_7256_accordion_selected {
	border-bottom: 1px solid #484848;
}

ul#stacks_in_7256_accordion li:last-child .stacks_in_7256_accordion_content {
	border-bottom: none;
}




/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_7256_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_7256_accordion_label {
		font-size: 20px;
	}

	.stacks_in_7256_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_7256_accordion_label {
		font-size: 18px;
	}

	.stacks_in_7256_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_7256_accordion_label {
		font-size: 16px;
	}

	.stacks_in_7256_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_7256_accordion_label {
		font-size: 14px;
	}

	.stacks_in_7256_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}


/* Pull Quote Styling */


  #stacks_in_7913 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7913 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7913 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7913 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7913 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7913 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7913 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7913 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7913 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7913 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7913 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7913 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7913 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7913 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7913 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7906 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7906 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7906 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7906 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7906 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7906 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7906 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7906 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7906 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7906 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7906 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7906 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7906 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7906 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7906 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7901 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7901 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7901 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7901 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7901 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7901 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7901 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7901 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7901 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7901 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7901 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7901 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7901 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7901 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7901 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7894 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7894 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7894 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7894 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7894 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7894 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7894 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7894 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7894 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7894 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7894 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7894 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7894 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7894 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7894 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7258 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7258 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7258 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7258 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7258 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7258 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7258 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7258 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7258 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7258 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7258 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7258 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7258 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7258 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7258 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7274 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7274 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7274 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7274 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7274 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7274 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7274 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7274 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7274 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7274 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7274 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7274 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7274 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7274 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7274 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7277 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7277 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7277 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7277 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7277 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7277 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7277 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7277 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7277 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7277 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7277 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7277 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7277 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7277 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7277 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7279 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7279 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7279 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7279 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7279 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7279 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7279 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7279 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7279 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7279 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7279 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7279 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7279 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7279 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7279 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7280 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7280 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7280 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7280 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7280 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7280 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7280 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7280 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7280 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7280 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7280 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7280 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7280 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7280 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7280 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7281 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7281 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7281 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7281 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7281 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7281 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7281 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7281 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7281 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7281 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7281 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7281 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7281 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7281 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7281 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7282 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7282 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7282 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7282 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7282 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7282 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7282 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7282 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7282 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7282 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7282 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7282 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7282 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7282 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7282 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7284 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7284 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7284 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7284 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7284 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7284 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7284 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7284 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7284 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7284 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7284 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7284 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7284 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7284 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7284 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7285 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7285 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7285 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7285 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7285 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7285 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7285 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7285 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7285 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7285 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7285 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7285 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7285 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7285 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7285 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7286 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7286 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7286 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7286 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7286 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7286 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7286 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7286 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7286 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7286 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7286 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7286 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7286 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7286 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7286 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7287 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7287 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7287 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7287 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7287 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7287 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7287 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7287 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7287 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7287 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7287 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7287 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7287 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7287 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7287 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7288 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7288 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7288 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7288 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7288 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7288 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7288 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7288 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7288 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7288 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7288 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7288 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7288 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7288 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7288 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7290 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7290 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7290 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7290 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7290 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7290 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7290 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7290 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7290 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7290 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7290 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7290 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7290 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7290 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7290 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7291 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7291 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7291 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7291 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7291 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7291 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7291 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7291 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7291 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7291 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7291 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7291 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7291 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7291 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7291 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7292 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7292 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7292 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7292 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7292 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7292 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7292 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7292 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7292 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7292 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7292 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7292 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7292 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7292 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7292 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7293 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7293 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7293 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7293 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7293 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7293 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7293 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7293 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7293 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7293 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7293 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7293 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7293 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7293 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7293 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7294 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7294 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7294 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7294 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7294 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7294 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7294 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7294 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7294 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7294 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7294 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7294 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7294 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7294 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7294 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7295 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7295 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7295 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7295 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7295 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7295 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7295 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7295 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7295 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7295 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7295 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7295 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7295 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7295 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7295 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7296 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7296 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7296 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7296 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7296 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7296 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7296 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7296 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7296 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7296 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7296 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7296 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7296 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7296 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7296 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7297 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7297 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7297 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7297 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7297 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7297 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7297 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7297 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7297 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7297 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7297 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7297 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7297 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7297 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7297 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7298 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7298 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7298 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7298 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7298 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7298 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7298 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7298 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7298 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7298 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7298 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7298 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7298 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7298 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7298 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7299 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7299 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7299 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7299 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7299 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7299 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7299 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7299 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7299 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7299 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7299 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7299 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7299 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7299 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7299 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7301 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7301 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7301 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7301 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7301 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7301 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7301 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7301 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7301 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7301 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7301 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7301 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7301 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7301 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7301 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7302 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7302 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7302 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7302 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7302 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7302 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7302 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7302 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7302 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7302 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7302 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7302 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7302 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7302 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7302 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7303 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7303 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7303 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7303 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7303 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7303 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7303 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7303 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7303 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7303 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7303 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7303 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7303 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7303 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7303 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7304 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7304 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7304 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7304 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7304 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7304 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7304 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7304 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7304 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7304 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7304 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7304 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7304 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7304 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7304 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7305 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7305 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7305 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7305 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7305 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7305 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7305 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7305 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7305 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7305 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7305 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7305 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7305 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7305 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7305 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7306 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7306 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7306 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7306 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7306 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7306 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7306 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7306 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7306 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7306 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7306 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7306 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7306 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7306 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7306 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7307 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7307 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7307 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7307 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7307 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7307 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7307 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7307 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7307 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7307 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7307 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7307 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7307 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7307 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7307 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7308 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7308 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7308 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7308 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7308 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7308 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7308 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7308 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7308 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7308 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7308 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7308 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7308 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7308 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7308 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7309 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7309 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7309 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7309 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7309 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7309 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7309 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7309 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7309 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7309 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7309 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7309 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7309 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7309 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7309 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7310 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7310 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7310 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7310 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7310 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7310 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7310 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7310 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7310 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7310 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7310 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7310 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7310 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7310 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7310 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7312 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7312 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7312 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7312 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7312 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7312 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7312 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7312 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7312 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7312 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7312 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7312 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7312 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7312 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7312 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7313 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7313 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7313 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7313 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7313 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7313 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7313 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7313 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7313 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7313 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7313 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7313 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7313 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7313 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7313 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7314 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7314 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7314 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7314 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7314 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7314 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7314 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7314 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7314 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7314 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7314 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7314 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7314 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7314 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7314 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7315 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7315 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7315 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7315 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7315 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7315 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7315 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7315 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7315 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7315 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7315 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7315 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7315 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7315 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7315 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7316 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7316 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7316 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7316 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7316 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7316 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7316 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7316 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7316 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7316 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7316 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7316 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7316 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7316 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7316 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7317 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7317 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7317 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7317 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7317 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7317 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7317 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7317 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7317 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7317 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7317 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7317 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7317 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7317 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7317 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7318 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7318 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7318 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7318 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7318 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7318 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7318 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7318 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7318 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7318 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7318 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7318 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7318 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7318 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7318 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7319 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7319 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7319 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7319 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7319 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7319 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7319 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7319 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7319 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7319 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7319 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7319 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7319 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7319 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7319 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7321 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7321 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7321 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7321 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7321 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7321 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7321 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7321 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7321 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7321 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7321 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7321 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7321 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7321 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7321 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7322 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7322 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7322 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7322 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7322 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7322 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7322 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7322 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7322 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7322 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7322 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7322 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7322 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7322 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7322 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7323 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7323 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7323 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7323 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7323 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7323 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7323 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7323 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7323 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7323 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7323 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7323 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7323 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7323 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7323 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7324 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7324 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7324 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7324 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7324 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7324 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7324 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7324 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7324 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7324 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7324 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7324 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7324 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7324 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7324 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7325 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7325 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7325 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7325 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7325 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7325 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7325 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7325 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7325 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7325 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7325 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7325 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7325 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7325 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7325 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7326 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7326 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7326 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7326 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7326 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7326 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7326 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7326 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7326 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7326 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7326 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7326 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7326 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7326 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7326 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7327 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7327 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7327 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7327 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7327 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7327 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7327 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7327 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7327 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7327 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7327 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7327 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7327 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7327 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7327 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7329 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7329 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7329 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7329 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7329 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7329 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7329 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7329 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7329 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7329 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7329 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7329 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7329 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7329 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7329 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7330 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7330 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7330 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7330 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7330 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7330 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7330 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7330 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7330 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7330 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7330 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7330 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7330 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7330 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7330 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7331 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7331 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7331 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7331 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7331 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7331 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7331 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7331 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7331 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7331 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7331 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7331 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7331 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7331 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7331 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7332 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7332 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7332 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7332 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7332 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7332 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7332 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7332 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7332 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7332 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7332 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7332 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7332 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7332 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7332 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7333 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7333 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7333 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7333 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7333 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7333 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7333 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7333 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7333 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7333 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7333 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7333 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7333 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7333 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7333 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7334 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7334 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7334 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7334 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7334 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7334 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7334 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7334 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7334 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7334 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7334 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7334 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7334 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7334 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7334 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7335 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7335 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7335 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7335 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7335 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7335 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7335 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7335 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7335 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7335 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7335 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7335 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7335 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7335 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7335 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7336 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7336 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7336 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7336 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7336 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7336 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7336 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7336 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7336 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7336 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7336 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7336 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7336 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7336 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7336 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7337 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7337 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7337 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7337 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7337 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7337 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7337 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7337 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7337 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7337 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7337 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7337 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7337 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7337 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7337 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7338 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7338 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7338 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7338 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7338 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7338 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7338 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7338 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7338 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7338 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7338 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7338 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7338 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7338 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7338 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7339 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7339 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7339 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7339 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7339 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7339 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7339 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7339 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7339 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7339 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7339 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7339 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7339 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7339 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7339 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7340 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7340 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7340 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7340 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7340 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7340 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7340 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7340 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7340 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7340 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7340 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7340 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7340 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7340 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7340 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7341 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7341 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7341 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7341 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7341 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7341 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7341 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7341 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7341 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7341 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7341 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7341 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7341 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7341 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7341 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7343 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7343 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7343 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7343 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7343 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7343 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7343 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7343 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7343 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7343 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7343 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7343 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7343 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7343 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7343 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7344 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7344 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7344 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7344 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7344 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7344 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7344 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7344 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7344 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7344 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7344 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7344 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7344 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7344 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7344 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7345 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7345 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7345 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7345 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7345 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7345 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7345 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7345 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7345 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7345 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7345 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7345 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7345 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7345 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7345 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7346 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7346 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7346 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7346 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7346 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7346 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7346 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7346 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7346 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7346 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7346 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7346 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7346 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7346 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7346 .pull_quote { 
      max-width: 100%;
    }
  

}

#stacks_in_7347>.s3_row {
	margin: 0 -10px;
}

#stacks_in_7347>.s3_row>.s3_column_left {
	width: 51.51%;
}

#stacks_in_7347>.s3_row>.s3_column_right {
	width: 48.490002%;
}




#stacks_in_7347>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_7347>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_7347>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_7348 {
	display:inline-block; width:100%; line-height: 0.900000em;
}
/* Pull Quote Styling */


  #stacks_in_7349 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7349 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7349 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7349 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7349 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7349 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7349 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7349 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7349 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7349 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7349 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7349 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7349 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7349 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7349 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7350 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7350 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7350 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7350 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7350 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7350 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7350 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7350 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7350 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7350 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7350 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7350 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7350 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7350 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7350 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7351 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7351 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7351 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7351 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7351 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7351 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7351 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7351 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7351 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7351 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7351 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7351 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7351 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7351 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7351 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7352 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7352 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7352 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7352 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7352 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7352 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7352 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7352 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7352 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7352 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7352 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7352 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7352 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7352 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7352 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7354 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7354 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7354 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7354 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7354 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7354 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7354 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7354 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7354 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7354 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7354 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7354 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7354 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7354 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7354 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7355 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7355 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7355 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7355 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7355 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7355 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7355 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7355 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7355 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7355 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7355 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7355 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7355 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7355 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7355 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7356 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7356 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7356 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7356 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7356 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7356 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7356 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7356 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7356 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7356 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7356 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7356 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7356 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7356 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7356 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7357 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7357 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7357 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7357 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7357 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7357 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7357 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7357 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7357 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7357 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7357 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7357 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7357 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7357 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7357 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7358 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7358 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7358 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7358 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7358 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7358 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7358 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7358 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7358 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7358 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7358 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7358 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7358 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7358 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7358 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7359 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7359 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7359 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7359 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7359 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7359 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7359 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7359 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7359 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7359 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7359 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7359 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7359 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7359 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7359 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7360 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7360 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7360 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7360 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7360 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7360 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7360 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7360 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7360 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7360 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7360 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7360 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7360 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7360 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7360 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7361 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7361 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7361 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7361 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7361 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7361 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7361 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7361 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7361 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7361 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7361 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7361 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7361 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7361 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7361 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7363 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7363 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7363 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7363 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7363 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7363 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7363 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7363 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7363 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7363 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7363 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7363 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7363 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7363 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7363 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7364 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7364 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7364 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7364 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7364 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7364 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7364 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7364 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7364 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7364 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7364 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7364 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7364 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7364 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7364 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7365 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7365 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7365 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7365 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7365 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7365 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7365 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7365 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7365 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7365 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7365 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7365 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7365 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7365 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7365 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7366 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7366 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7366 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7366 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7366 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7366 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7366 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7366 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7366 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7366 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7366 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7366 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7366 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7366 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7366 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7367 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7367 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7367 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7367 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7367 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7367 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7367 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7367 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7367 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7367 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7367 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7367 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7367 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7367 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7367 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7368 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7368 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7368 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7368 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7368 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7368 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7368 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7368 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7368 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7368 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7368 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7368 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7368 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7368 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7368 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7369 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7369 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7369 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7369 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7369 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7369 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7369 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7369 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7369 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7369 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7369 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7369 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7369 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7369 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7369 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7370 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7370 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7370 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7370 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7370 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7370 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7370 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7370 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7370 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7370 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7370 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7370 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7370 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7370 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7370 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7371 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7371 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7371 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7371 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7371 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7371 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7371 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7371 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7371 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7371 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7371 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7371 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7371 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7371 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7371 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7373 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7373 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7373 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7373 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7373 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7373 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7373 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7373 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7373 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7373 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7373 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7373 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7373 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7373 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7373 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7374 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7374 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7374 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7374 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7374 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7374 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7374 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7374 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7374 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7374 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7374 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7374 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7374 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7374 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7374 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7375 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7375 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7375 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7375 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7375 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7375 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7375 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7375 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7375 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7375 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7375 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7375 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7375 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7375 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7375 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7376 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7376 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7376 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7376 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7376 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7376 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7376 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7376 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7376 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7376 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7376 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7376 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7376 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7376 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7376 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7377 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7377 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7377 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7377 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7377 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7377 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7377 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7377 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7377 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7377 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7377 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7377 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7377 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7377 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7377 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7378 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7378 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7378 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7378 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7378 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7378 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7378 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7378 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7378 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7378 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7378 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7378 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7378 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7378 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7378 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7379 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7379 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7379 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7379 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7379 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7379 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7379 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7379 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7379 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7379 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7379 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7379 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7379 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7379 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7379 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7380 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7380 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7380 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7380 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7380 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7380 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7380 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7380 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7380 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7380 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7380 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7380 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7380 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7380 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7380 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7381 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7381 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7381 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7381 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7381 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7381 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7381 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7381 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7381 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7381 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7381 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7381 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7381 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7381 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7381 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7383 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7383 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7383 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7383 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7383 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7383 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7383 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7383 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7383 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7383 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7383 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7383 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7383 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7383 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7383 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7384 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7384 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7384 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7384 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7384 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7384 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7384 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7384 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7384 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7384 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7384 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7384 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7384 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7384 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7384 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7385 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7385 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7385 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7385 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7385 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7385 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7385 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7385 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7385 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7385 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7385 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7385 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7385 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7385 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7385 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7386 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7386 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7386 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7386 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7386 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7386 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7386 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7386 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7386 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7386 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7386 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7386 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7386 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7386 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7386 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7387 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7387 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7387 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7387 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7387 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7387 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7387 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7387 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7387 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7387 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7387 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7387 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7387 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7387 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7387 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7388 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7388 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7388 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7388 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7388 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7388 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7388 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7388 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7388 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7388 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7388 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7388 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7388 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7388 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7388 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7389 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7389 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7389 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7389 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7389 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7389 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7389 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7389 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7389 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7389 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7389 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7389 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7389 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7389 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7389 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7390 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7390 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7390 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7390 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7390 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7390 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7390 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7390 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7390 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7390 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7390 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7390 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7390 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7390 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7390 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7391 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7391 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7391 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7391 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7391 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7391 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7391 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7391 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7391 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7391 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7391 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7391 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7391 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7391 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7391 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7392 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7392 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7392 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7392 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7392 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7392 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7392 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7392 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7392 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7392 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7392 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7392 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7392 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7392 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7392 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7393 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7393 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7393 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7393 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7393 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7393 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7393 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7393 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7393 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7393 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7393 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7393 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7393 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7393 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7393 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7394 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7394 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7394 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7394 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7394 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7394 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7394 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7394 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7394 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7394 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7394 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7394 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7394 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7394 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7394 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7395 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7395 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7395 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7395 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7395 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7395 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7395 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7395 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7395 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7395 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7395 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7395 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7395 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7395 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7395 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7396 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7396 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7396 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7396 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7396 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7396 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7396 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7396 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7396 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7396 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7396 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7396 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7396 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7396 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7396 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7397 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7397 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7397 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7397 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7397 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7397 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7397 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7397 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7397 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7397 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7397 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7397 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7397 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7397 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7397 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7398 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7398 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7398 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7398 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7398 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7398 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7398 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7398 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7398 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7398 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7398 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7398 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7398 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7398 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7398 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7399 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7399 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7399 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7399 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7399 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7399 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7399 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7399 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7399 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7399 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7399 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7399 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7399 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7399 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7399 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7400 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7400 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7400 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7400 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7400 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7400 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7400 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7400 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7400 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7400 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7400 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7400 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7400 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7400 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7400 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7401 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7401 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7401 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7401 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7401 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7401 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7401 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7401 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7401 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7401 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7401 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7401 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7401 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7401 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7401 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7402 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7402 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7402 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7402 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7402 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7402 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7402 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7402 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7402 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7402 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7402 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7402 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7402 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7402 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7402 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_out_7403 {
	margin-left:0;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_6393_accordion {
	list-style: none;
	border-radius: 0px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_6393_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */
	
	.stacks_in_6393_accordion_label {
		font-family: 'Open Sans', sans-serif;
	}















/* Content Font Choices */
	
	.stacks_in_6393_accordion_content {
		font-family: 'Open Sans', sans-serif;
	}









.stacks_in_6393_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_6393_accordion_label i {
}

.stacks_in_6393_accordion_selected {
}

.stacks_in_6393_accordion_content {
		
		padding: 40px;
	

}

ul#stacks_in_6393_accordion li:last-child .stacks_in_6393_accordion_content {
}

.stacks_in_6393_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
		
		position: absolute;
		right: 20px;
		top: 15px;
		margin-right: 0px;
	
	
}

.stacks_in_6393_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_6393_accordion_selected .accordion_icon i {
	
}

#stacks_in_6393_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */


ul#stacks_in_6393_accordion {
}

.stacks_in_6393_accordion_label {
	color: #ffffff;
	background: #A6C8A7;
	border-bottom: 1px solid #96b597;
}

.stacks_in_6393_accordion_selected {
	color: #ffffff;
	background: #585858;
	border-bottom: 1px solid #484848;
}



.stacks_in_6393_accordion_content {
	background: #EDEDED;
	color: #414141;
	border-bottom: 1px solid #96b597;
}


ul#stacks_in_6393_accordion li:last-child .stacks_in_6393_accordion_label {
	border-bottom: none;
}


ul#stacks_in_6393_accordion li:last-child .stacks_in_6393_accordion_selected {
	border-bottom: 1px solid #484848;
}

ul#stacks_in_6393_accordion li:last-child .stacks_in_6393_accordion_content {
	border-bottom: none;
}




/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_6393_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_6393_accordion_label {
		font-size: 20px;
	}

	.stacks_in_6393_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_6393_accordion_label {
		font-size: 18px;
	}

	.stacks_in_6393_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_6393_accordion_label {
		font-size: 16px;
	}

	.stacks_in_6393_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_6393_accordion_label {
		font-size: 14px;
	}

	.stacks_in_6393_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}


/* Pull Quote Styling */


  #stacks_in_7251 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7251 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7251 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7251 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7251 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7251 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7251 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7251 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7251 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7251 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7251 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7251 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7251 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7251 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7251 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7241 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7241 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7241 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7241 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7241 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7241 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7241 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7241 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7241 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7241 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7241 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7241 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7241 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7241 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7241 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7229 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7229 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7229 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7229 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7229 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7229 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7229 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7229 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7229 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7229 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7229 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7229 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7229 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7229 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7229 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7121 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7121 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7121 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7121 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7121 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7121 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7121 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7121 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7121 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7121 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7121 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7121 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7121 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7121 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7121 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7234 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7234 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7234 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7234 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7234 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7234 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7234 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7234 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7234 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7234 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7234 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7234 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7234 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7234 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7234 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7074 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7074 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7074 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7074 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7074 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7074 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7074 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7074 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7074 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7074 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7074 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7074 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7074 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7074 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7074 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7935 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7935 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7935 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7935 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7935 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7935 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7935 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7935 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7935 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7935 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7935 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7935 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7935 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7935 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7935 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7928 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7928 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7928 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7928 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7928 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7928 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7928 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7928 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7928 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7928 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7928 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7928 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7928 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7928 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7928 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7084 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7084 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7084 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7084 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7084 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7084 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7084 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7084 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7084 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7084 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7084 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7084 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7084 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7084 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7084 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6451 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6451 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6451 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6451 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6451 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6451 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6451 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6451 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6451 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6451 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6451 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6451 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6451 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6451 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6451 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6453 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6453 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6453 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6453 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6453 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6453 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6453 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6453 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6453 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6453 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6453 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6453 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6453 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6453 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6453 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6454 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6454 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6454 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6454 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6454 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6454 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6454 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6454 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6454 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6454 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6454 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6454 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6454 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6454 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6454 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6455 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6455 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6455 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6455 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6455 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6455 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6455 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6455 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6455 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6455 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6455 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6455 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6455 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6455 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6455 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6456 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6456 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6456 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6456 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6456 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6456 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6456 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6456 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6456 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6456 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6456 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6456 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6456 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6456 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6456 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6458 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6458 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6458 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6458 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6458 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6458 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6458 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6458 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6458 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6458 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6458 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6458 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6458 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6458 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6458 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6459 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6459 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6459 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6459 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6459 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6459 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6459 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6459 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6459 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6459 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6459 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6459 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6459 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6459 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6459 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6460 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6460 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6460 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6460 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6460 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6460 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6460 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6460 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6460 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6460 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6460 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6460 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6460 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6460 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6460 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6461 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6461 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6461 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6461 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6461 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6461 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6461 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6461 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6461 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6461 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6461 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6461 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6461 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6461 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6461 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6462 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6462 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6462 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6462 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6462 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6462 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6462 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6462 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6462 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6462 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6462 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6462 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6462 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6462 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6462 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6464 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6464 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6464 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6464 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6464 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6464 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6464 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6464 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6464 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6464 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6464 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6464 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6464 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6464 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6464 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6465 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6465 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6465 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6465 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6465 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6465 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6465 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6465 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6465 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6465 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6465 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6465 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6465 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6465 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6465 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6466 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6466 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6466 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6466 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6466 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6466 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6466 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6466 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6466 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6466 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6466 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6466 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6466 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6466 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6466 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6467 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6467 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6467 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6467 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6467 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6467 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6467 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6467 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6467 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6467 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6467 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6467 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6467 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6467 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6467 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6468 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6468 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6468 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6468 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6468 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6468 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6468 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6468 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6468 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6468 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6468 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6468 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6468 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6468 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6468 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6469 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6469 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6469 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6469 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6469 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6469 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6469 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6469 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6469 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6469 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6469 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6469 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6469 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6469 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6469 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6470 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6470 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6470 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6470 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6470 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6470 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6470 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6470 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6470 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6470 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6470 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6470 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6470 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6470 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6470 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6471 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6471 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6471 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6471 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6471 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6471 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6471 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6471 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6471 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6471 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6471 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6471 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6471 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6471 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6471 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6472 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6472 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6472 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6472 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6472 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6472 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6472 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6472 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6472 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6472 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6472 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6472 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6472 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6472 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6472 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6473 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6473 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6473 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6473 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6473 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6473 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6473 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6473 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6473 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6473 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6473 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6473 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6473 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6473 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6473 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6475 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6475 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6475 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6475 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6475 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6475 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6475 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6475 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6475 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6475 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6475 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6475 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6475 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6475 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6475 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6476 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6476 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6476 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6476 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6476 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6476 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6476 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6476 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6476 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6476 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6476 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6476 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6476 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6476 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6476 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6477 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6477 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6477 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6477 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6477 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6477 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6477 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6477 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6477 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6477 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6477 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6477 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6477 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6477 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6477 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6478 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6478 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6478 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6478 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6478 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6478 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6478 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6478 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6478 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6478 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6478 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6478 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6478 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6478 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6478 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6479 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6479 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6479 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6479 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6479 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6479 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6479 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6479 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6479 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6479 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6479 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6479 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6479 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6479 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6479 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6480 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6480 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6480 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6480 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6480 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6480 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6480 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6480 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6480 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6480 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6480 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6480 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6480 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6480 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6480 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6481 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6481 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6481 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6481 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6481 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6481 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6481 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6481 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6481 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6481 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6481 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6481 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6481 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6481 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6481 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6482 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6482 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6482 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6482 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6482 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6482 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6482 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6482 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6482 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6482 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6482 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6482 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6482 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6482 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6482 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6483 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6483 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6483 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6483 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6483 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6483 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6483 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6483 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6483 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6483 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6483 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6483 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6483 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6483 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6483 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6484 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6484 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6484 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6484 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6484 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6484 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6484 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6484 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6484 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6484 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6484 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6484 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6484 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6484 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6484 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6486 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6486 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6486 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6486 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6486 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6486 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6486 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6486 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6486 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6486 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6486 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6486 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6486 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6486 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6486 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6487 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6487 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6487 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6487 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6487 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6487 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6487 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6487 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6487 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6487 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6487 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6487 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6487 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6487 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6487 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6488 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6488 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6488 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6488 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6488 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6488 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6488 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6488 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6488 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6488 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6488 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6488 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6488 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6488 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6488 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6489 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6489 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6489 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6489 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6489 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6489 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6489 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6489 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6489 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6489 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6489 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6489 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6489 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6489 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6489 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6490 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6490 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6490 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6490 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6490 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6490 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6490 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6490 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6490 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6490 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6490 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6490 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6490 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6490 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6490 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6491 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6491 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6491 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6491 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6491 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6491 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6491 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6491 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6491 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6491 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6491 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6491 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6491 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6491 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6491 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6492 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6492 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6492 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6492 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6492 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6492 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6492 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6492 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6492 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6492 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6492 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6492 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6492 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6492 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6492 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6493 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6493 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6493 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6493 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6493 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6493 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6493 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6493 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6493 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6493 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6493 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6493 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6493 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6493 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6493 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6495 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6495 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6495 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6495 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6495 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6495 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6495 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6495 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6495 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6495 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6495 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6495 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6495 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6495 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6495 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6496 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6496 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6496 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6496 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6496 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6496 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6496 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6496 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6496 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6496 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6496 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6496 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6496 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6496 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6496 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6497 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6497 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6497 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6497 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6497 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6497 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6497 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6497 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6497 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6497 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6497 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6497 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6497 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6497 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6497 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6498 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6498 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6498 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6498 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6498 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6498 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6498 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6498 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6498 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6498 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6498 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6498 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6498 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6498 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6498 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6499 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6499 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6499 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6499 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6499 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6499 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6499 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6499 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6499 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6499 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6499 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6499 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6499 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6499 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6499 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6500 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6500 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6500 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6500 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6500 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6500 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6500 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6500 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6500 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6500 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6500 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6500 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6500 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6500 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6500 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6501 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6501 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6501 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6501 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6501 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6501 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6501 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6501 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6501 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6501 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6501 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6501 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6501 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6501 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6501 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6503 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6503 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6503 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6503 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6503 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6503 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6503 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6503 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6503 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6503 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6503 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6503 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6503 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6503 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6503 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6504 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6504 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6504 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6504 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6504 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6504 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6504 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6504 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6504 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6504 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6504 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6504 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6504 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6504 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6504 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6505 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6505 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6505 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6505 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6505 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6505 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6505 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6505 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6505 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6505 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6505 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6505 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6505 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6505 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6505 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6506 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6506 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6506 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6506 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6506 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6506 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6506 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6506 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6506 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6506 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6506 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6506 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6506 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6506 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6506 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6507 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6507 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6507 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6507 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6507 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6507 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6507 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6507 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6507 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6507 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6507 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6507 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6507 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6507 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6507 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6508 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6508 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6508 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6508 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6508 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6508 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6508 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6508 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6508 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6508 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6508 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6508 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6508 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6508 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6508 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6509 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6509 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6509 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6509 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6509 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6509 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6509 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6509 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6509 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6509 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6509 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6509 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6509 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6509 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6509 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6510 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6510 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6510 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6510 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6510 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6510 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6510 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6510 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6510 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6510 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6510 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6510 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6510 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6510 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6510 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6511 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6511 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6511 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6511 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6511 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6511 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6511 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6511 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6511 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6511 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6511 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6511 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6511 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6511 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6511 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6512 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6512 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6512 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6512 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6512 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6512 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6512 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6512 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6512 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6512 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6512 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6512 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6512 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6512 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6512 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6513 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6513 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6513 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6513 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6513 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6513 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6513 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6513 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6513 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6513 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6513 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6513 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6513 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6513 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6513 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6514 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6514 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6514 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6514 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6514 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6514 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6514 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6514 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6514 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6514 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6514 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6514 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6514 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6514 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6514 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6515 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6515 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6515 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6515 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6515 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6515 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6515 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6515 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6515 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6515 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6515 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6515 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6515 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6515 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6515 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6517 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6517 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6517 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6517 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6517 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6517 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6517 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6517 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6517 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6517 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6517 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6517 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6517 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6517 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6517 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6518 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6518 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6518 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6518 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6518 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6518 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6518 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6518 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6518 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6518 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6518 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6518 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6518 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6518 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6518 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6519 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6519 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6519 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6519 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6519 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6519 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6519 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6519 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6519 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6519 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6519 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6519 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6519 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6519 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6519 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6520 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6520 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6520 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6520 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6520 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6520 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6520 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6520 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6520 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6520 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6520 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6520 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6520 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6520 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6520 .pull_quote { 
      max-width: 100%;
    }
  

}

#stacks_in_6521>.s3_row {
	margin: 0 -10px;
}

#stacks_in_6521>.s3_row>.s3_column_left {
	width: 51.51%;
}

#stacks_in_6521>.s3_row>.s3_column_right {
	width: 48.490002%;
}




#stacks_in_6521>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_6521>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_6521>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_6522 {
	display:inline-block; width:100%; line-height: 0.900000em;
}
/* Pull Quote Styling */


  #stacks_in_6523 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6523 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6523 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6523 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6523 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6523 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6523 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6523 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6523 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6523 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6523 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6523 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6523 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6523 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6523 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6524 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6524 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6524 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6524 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6524 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6524 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6524 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6524 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6524 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6524 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6524 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6524 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6524 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6524 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6524 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6525 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6525 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6525 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6525 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6525 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6525 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6525 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6525 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6525 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6525 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6525 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6525 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6525 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6525 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6525 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6526 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6526 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6526 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6526 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6526 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6526 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6526 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6526 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6526 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6526 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6526 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6526 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6526 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6526 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6526 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6528 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6528 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6528 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6528 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6528 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6528 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6528 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6528 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6528 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6528 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6528 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6528 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6528 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6528 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6528 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6529 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6529 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6529 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6529 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6529 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6529 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6529 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6529 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6529 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6529 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6529 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6529 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6529 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6529 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6529 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6530 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6530 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6530 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6530 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6530 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6530 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6530 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6530 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6530 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6530 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6530 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6530 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6530 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6530 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6530 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6531 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6531 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6531 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6531 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6531 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6531 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6531 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6531 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6531 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6531 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6531 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6531 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6531 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6531 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6531 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6532 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6532 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6532 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6532 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6532 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6532 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6532 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6532 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6532 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6532 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6532 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6532 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6532 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6532 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6532 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6533 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6533 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6533 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6533 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6533 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6533 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6533 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6533 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6533 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6533 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6533 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6533 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6533 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6533 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6533 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6534 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6534 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6534 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6534 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6534 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6534 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6534 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6534 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6534 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6534 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6534 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6534 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6534 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6534 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6534 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6535 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6535 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6535 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6535 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6535 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6535 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6535 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6535 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6535 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6535 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6535 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6535 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6535 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6535 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6535 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6537 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6537 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6537 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6537 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6537 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6537 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6537 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6537 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6537 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6537 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6537 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6537 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6537 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6537 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6537 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6538 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6538 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6538 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6538 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6538 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6538 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6538 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6538 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6538 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6538 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6538 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6538 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6538 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6538 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6538 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6539 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6539 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6539 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6539 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6539 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6539 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6539 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6539 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6539 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6539 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6539 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6539 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6539 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6539 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6539 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6540 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6540 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6540 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6540 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6540 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6540 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6540 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6540 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6540 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6540 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6540 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6540 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6540 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6540 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6540 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6541 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6541 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6541 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6541 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6541 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6541 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6541 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6541 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6541 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6541 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6541 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6541 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6541 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6541 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6541 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6542 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6542 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6542 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6542 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6542 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6542 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6542 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6542 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6542 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6542 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6542 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6542 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6542 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6542 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6542 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6543 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6543 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6543 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6543 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6543 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6543 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6543 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6543 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6543 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6543 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6543 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6543 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6543 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6543 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6543 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6544 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6544 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6544 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6544 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6544 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6544 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6544 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6544 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6544 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6544 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6544 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6544 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6544 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6544 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6544 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6545 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6545 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6545 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6545 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6545 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6545 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6545 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6545 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6545 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6545 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6545 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6545 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6545 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6545 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6545 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6547 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6547 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6547 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6547 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6547 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6547 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6547 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6547 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6547 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6547 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6547 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6547 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6547 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6547 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6547 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6548 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6548 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6548 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6548 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6548 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6548 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6548 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6548 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6548 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6548 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6548 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6548 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6548 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6548 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6548 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6549 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6549 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6549 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6549 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6549 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6549 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6549 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6549 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6549 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6549 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6549 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6549 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6549 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6549 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6549 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6550 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6550 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6550 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6550 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6550 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6550 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6550 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6550 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6550 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6550 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6550 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6550 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6550 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6550 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6550 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6551 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6551 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6551 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6551 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6551 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6551 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6551 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6551 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6551 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6551 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6551 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6551 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6551 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6551 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6551 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6552 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6552 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6552 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6552 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6552 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6552 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6552 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6552 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6552 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6552 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6552 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6552 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6552 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6552 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6552 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6553 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6553 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6553 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6553 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6553 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6553 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6553 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6553 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6553 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6553 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6553 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6553 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6553 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6553 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6553 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6554 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6554 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6554 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6554 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6554 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6554 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6554 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6554 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6554 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6554 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6554 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6554 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6554 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6554 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6554 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6555 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6555 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6555 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6555 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6555 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6555 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6555 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6555 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6555 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6555 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6555 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6555 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6555 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6555 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6555 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6557 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6557 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6557 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6557 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6557 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6557 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6557 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6557 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6557 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6557 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6557 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6557 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6557 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6557 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6557 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6558 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6558 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6558 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6558 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6558 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6558 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6558 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6558 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6558 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6558 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6558 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6558 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6558 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6558 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6558 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6559 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6559 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6559 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6559 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6559 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6559 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6559 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6559 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6559 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6559 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6559 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6559 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6559 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6559 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6559 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6560 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6560 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6560 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6560 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6560 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6560 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6560 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6560 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6560 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6560 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6560 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6560 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6560 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6560 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6560 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6561 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6561 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6561 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6561 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6561 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6561 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6561 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6561 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6561 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6561 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6561 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6561 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6561 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6561 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6561 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6562 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6562 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6562 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6562 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6562 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6562 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6562 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6562 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6562 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6562 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6562 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6562 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6562 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6562 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6562 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6563 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6563 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6563 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6563 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6563 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6563 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6563 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6563 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6563 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6563 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6563 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6563 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6563 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6563 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6563 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6564 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6564 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6564 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6564 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6564 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6564 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6564 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6564 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6564 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6564 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6564 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6564 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6564 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6564 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6564 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6565 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6565 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6565 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6565 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6565 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6565 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6565 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6565 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6565 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6565 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6565 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6565 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6565 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6565 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6565 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6566 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6566 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6566 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6566 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6566 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6566 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6566 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6566 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6566 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6566 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6566 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6566 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6566 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6566 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6566 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6567 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6567 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6567 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6567 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6567 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6567 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6567 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6567 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6567 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6567 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6567 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6567 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6567 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6567 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6567 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6568 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6568 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6568 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6568 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6568 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6568 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6568 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6568 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6568 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6568 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6568 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6568 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6568 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6568 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6568 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6569 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6569 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6569 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6569 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6569 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6569 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6569 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6569 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6569 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6569 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6569 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6569 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6569 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6569 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6569 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6570 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6570 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6570 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6570 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6570 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6570 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6570 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6570 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6570 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6570 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6570 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6570 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6570 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6570 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6570 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6571 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6571 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6571 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6571 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6571 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6571 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6571 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6571 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6571 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6571 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6571 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6571 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6571 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6571 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6571 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6572 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6572 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6572 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6572 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6572 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6572 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6572 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6572 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6572 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6572 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6572 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6572 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6572 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6572 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6572 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6573 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6573 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6573 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6573 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6573 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6573 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6573 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6573 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6573 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6573 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6573 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6573 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6573 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6573 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6573 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6574 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6574 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6574 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6574 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6574 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6574 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6574 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6574 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6574 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6574 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6574 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6574 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6574 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6574 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6574 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6575 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6575 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6575 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6575 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6575 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6575 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6575 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6575 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6575 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6575 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6575 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6575 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6575 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6575 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6575 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6576 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6576 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6576 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6576 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6576 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6576 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6576 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6576 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6576 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6576 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6576 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6576 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6576 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6576 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6576 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_out_6577 {
	margin-left:0;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_5431_accordion {
	list-style: none;
	border-radius: 0px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_5431_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */
	
	.stacks_in_5431_accordion_label {
		font-family: 'Open Sans', sans-serif;
	}















/* Content Font Choices */
	
	.stacks_in_5431_accordion_content {
		font-family: 'Open Sans', sans-serif;
	}









.stacks_in_5431_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_5431_accordion_label i {
}

.stacks_in_5431_accordion_selected {
}

.stacks_in_5431_accordion_content {
		
		padding: 40px;
	

}

ul#stacks_in_5431_accordion li:last-child .stacks_in_5431_accordion_content {
}

.stacks_in_5431_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
		
		position: absolute;
		right: 20px;
		top: 15px;
		margin-right: 0px;
	
	
}

.stacks_in_5431_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_5431_accordion_selected .accordion_icon i {
	
}

#stacks_in_5431_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */


ul#stacks_in_5431_accordion {
}

.stacks_in_5431_accordion_label {
	color: #ffffff;
	background: #A6C8A7;
	border-bottom: 1px solid #96b597;
}

.stacks_in_5431_accordion_selected {
	color: #ffffff;
	background: #585858;
	border-bottom: 1px solid #484848;
}



.stacks_in_5431_accordion_content {
	background: #EDEDED;
	color: #414141;
	border-bottom: 1px solid #96b597;
}


ul#stacks_in_5431_accordion li:last-child .stacks_in_5431_accordion_label {
	border-bottom: none;
}


ul#stacks_in_5431_accordion li:last-child .stacks_in_5431_accordion_selected {
	border-bottom: 1px solid #484848;
}

ul#stacks_in_5431_accordion li:last-child .stacks_in_5431_accordion_content {
	border-bottom: none;
}




/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_5431_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_5431_accordion_label {
		font-size: 20px;
	}

	.stacks_in_5431_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_5431_accordion_label {
		font-size: 18px;
	}

	.stacks_in_5431_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_5431_accordion_label {
		font-size: 16px;
	}

	.stacks_in_5431_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_5431_accordion_label {
		font-size: 14px;
	}

	.stacks_in_5431_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}


/* Pull Quote Styling */


  #stacks_in_7222 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7222 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7222 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7222 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7222 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7222 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7222 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7222 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7222 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7222 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7222 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7222 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7222 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7222 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7222 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7138 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7138 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7138 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7138 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7138 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7138 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7138 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7138 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7138 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7138 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7138 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7138 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7138 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7138 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7138 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7133 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7133 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7133 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7133 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7133 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7133 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7133 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7133 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7133 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7133 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7133 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7133 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7133 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7133 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7133 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7113 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7113 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7113 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7113 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7113 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7113 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7113 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7113 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7113 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7113 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7113 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7113 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7113 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7113 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7113 .pull_quote { 
      max-width: 100%;
    }
  

}

/* ********* */
/* Normalize */
/* ********* */

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

#stacks_in_7103 article,
#stacks_in_7103 aside,
#stacks_in_7103 details,
#stacks_in_7103 figcaption,
#stacks_in_7103 figure,
#stacks_in_7103 footer,
#stacks_in_7103 header,
#stacks_in_7103 hgroup,
#stacks_in_7103 main,
#stacks_in_7103 nav,
#stacks_in_7103 section,
#stacks_in_7103 summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

#stacks_in_7103 audio,
#stacks_in_7103 canvas,
#stacks_in_7103 progress,
#stacks_in_7103 video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

#stacks_in_7103 audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

#stacks_in_7103 [hidden],
#stacks_in_7103 template {
  display: none;
}


/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

#stacks_in_7103 img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

#stacks_in_7103 svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

#stacks_in_7103 hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

#stacks_in_7103 pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

#stacks_in_7103 code,
#stacks_in_7103 kbd,
#stacks_in_7103 pre,
#stacks_in_7103 samp {
  font-family: monospace, monospace;
  font-size: 1em;
}



/* **************** */
/* Stack Specific   */
/* **************** */

#stacks_in_7103 *,
#stacks_in_7103 *:before,
#stacks_in_7103 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#stacks_in_7103 .wow {
  visibility: hidden;
}


#stacks_in_7103>ul li {
  padding-bottom: 0 !important;
}

/* iPhone aka SMALL */
@media only screen {
  #stacks_in_7103>ul>li {
    margin-bottom: 12px;
  }
}








/* Handles making images responsive inside the stack */
#stacks_in_7103 img {
  max-width: 100%;
  height: auto;
}




/* **************** */
/* Foundation START */
/* **************** */


/*

Copyright (c) 2013-2014 ZURB, inc.

MIT License

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.   

*/


#stacks_in_7103 meta.foundation-version {
  font-family: "/5.3.1/"; }

#stacks_in_7103 meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em; }

#stacks_in_7103 meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em; }

#stacks_in_7103 meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em; }

#stacks_in_7103 meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em; }

#stacks_in_7103 meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em; }

#stacks_in_7103 meta.foundation-data-attribute-namespace {
  font-family: false; }

#stacks_in_7103 *,
#stacks_in_7103 *:before,
#stacks_in_7103 *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#stacks_in_7103 .left {
  float: left !important; }

#stacks_in_7103 .right {
  float: right !important; }

#stacks_in_7103 .clearfix:before, 
#stacks_in_7103 .clearfix:after {
  content: " ";
  display: table; }

#stacks_in_7103 .clearfix:after {
  clear: both; }

#stacks_in_7103 .hide {
  display: none; }

#stacks_in_7103 .antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


#stacks_in_7103 img {
  display: inline-block;
  vertical-align: middle; }


#stacks_in_7103 textarea {
  height: auto;
  min-height: 50px; }

#stacks_in_7103 select {
  width: 100%; }

#stacks_in_7103 .row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
}


#stacks_in_7103 .row {
  max-width: 62.5em; 
}


#stacks_in_7103 .row:before, 
#stacks_in_7103 .row:after {
  content: " ";
  display: table; }

#stacks_in_7103 .row:after {
  clear: both; }

#stacks_in_7103 .row.collapse > .column,
#stacks_in_7103 .row.collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

#stacks_in_7103 .row.collapse .row {
  margin-left: 0;
  margin-right: 0; }

#stacks_in_7103 .row .row {
  width: auto;
  margin-left: -0.9375em;
  margin-right: -0.9375em;
  margin-top: 0;
  margin-bottom: 0;
  max-width: none; }

#stacks_in_7103 .row .row:before, 
#stacks_in_7103 .row .row:after {
  content: " ";
  display: table; }

#stacks_in_7103 .row .row:after {
  clear: both; }

#stacks_in_7103 .row .row.collapse {
  width: auto;
  margin: 0;
  max-width: none; }

#stacks_in_7103 .row .row.collapse:before, 
#stacks_in_7103 .row .row.collapse:after {
  content: " ";
  display: table; }

#stacks_in_7103 .row .row.collapse:after {
  clear: both; }

#stacks_in_7103 .column,
#stacks_in_7103 .columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  width: 100%;
  float: left; }

#stacks_in_7103 [class*="column"] + [class*="column"]:last-child {
  float: right; }

#stacks_in_7103 [class*="column"] + [class*="column"].end {
  float: left; }

@media only screen {
  #stacks_in_7103 .small-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_7103 .small-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_7103 .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_7103 .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_7103 .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_7103 .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_7103 .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_7103 .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_7103 .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_7103 .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_7103 .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_7103 .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_7103 .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_7103 .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_7103 .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_7103 .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_7103 .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_7103 .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_7103 .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_7103 .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_7103 .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_7103 .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_7103 .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_7103 .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_7103 .column,
  #stacks_in_7103 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_7103 .small-1 {
    width: 8.33333%; }

  #stacks_in_7103 .small-2 {
    width: 16.66667%; }

  #stacks_in_7103 .small-3 {
    width: 25%; }

  #stacks_in_7103 .small-4 {
    width: 33.33333%; }

  #stacks_in_7103 .small-5 {
    width: 41.66667%; }

  #stacks_in_7103 .small-6 {
    width: 50%; }

  #stacks_in_7103 .small-7 {
    width: 58.33333%; }

  #stacks_in_7103 .small-8 {
    width: 66.66667%; }

  #stacks_in_7103 .small-9 {
    width: 75%; }

  #stacks_in_7103 .small-10 {
    width: 83.33333%; }

  #stacks_in_7103 .small-11 {
    width: 91.66667%; }

  #stacks_in_7103 .small-12 {
    width: 100%; }

  #stacks_in_7103 .small-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_7103 .small-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_7103 .small-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_7103 .small-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_7103 .small-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_7103 .small-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_7103 .small-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_7103 .small-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_7103 .small-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_7103 .small-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_7103 .small-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_7103 .small-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_7103 .small-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_7103 .column.small-centered,
  #stacks_in_7103 .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_7103 .column.small-uncentered,
  #stacks_in_7103 .columns.small-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_7103 .column.small-centered:last-child,
  #stacks_in_7103 .columns.small-centered:last-child {
    float: none; }

  #stacks_in_7103 .column.small-uncentered:last-child,
  #stacks_in_7103 .columns.small-uncentered:last-child {
    float: left; }

  #stacks_in_7103 .column.small-uncentered.opposite,
  #stacks_in_7103 .columns.small-uncentered.opposite {
    float: right; } 
}

@media only screen and (min-width: 40.063em) {
  #stacks_in_7103 .medium-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_7103 .medium-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_7103 .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_7103 .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_7103 .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_7103 .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_7103 .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_7103 .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_7103 .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_7103 .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_7103 .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_7103 .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_7103 .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_7103 .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_7103 .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_7103 .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_7103 .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_7103 .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_7103 .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_7103 .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_7103 .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_7103 .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_7103 .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_7103 .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_7103 .column,
  #stacks_in_7103 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_7103 .medium-1 {
    width: 8.33333%; }

  #stacks_in_7103 .medium-2 {
    width: 16.66667%; }

  #stacks_in_7103 .medium-3 {
    width: 25%; }

  #stacks_in_7103 .medium-4 {
    width: 33.33333%; }

  #stacks_in_7103 .medium-5 {
    width: 41.66667%; }

  #stacks_in_7103 .medium-6 {
    width: 50%; }

  #stacks_in_7103 .medium-7 {
    width: 58.33333%; }

  #stacks_in_7103 .medium-8 {
    width: 66.66667%; }

  #stacks_in_7103 .medium-9 {
    width: 75%; }

  #stacks_in_7103 .medium-10 {
    width: 83.33333%; }

  #stacks_in_7103 .medium-11 {
    width: 91.66667%; }

  #stacks_in_7103 .medium-12 {
    width: 100%; }

  #stacks_in_7103 .medium-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_7103 .medium-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_7103 .medium-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_7103 .medium-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_7103 .medium-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_7103 .medium-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_7103 .medium-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_7103 .medium-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_7103 .medium-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_7103 .medium-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_7103 .medium-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_7103 .medium-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_7103 .medium-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_7103 .column.medium-centered,
  #stacks_in_7103 .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_7103 .column.medium-uncentered,
  #stacks_in_7103 .columns.medium-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_7103 .column.medium-centered:last-child,
  #stacks_in_7103 .columns.medium-centered:last-child {
    float: none; }

  #stacks_in_7103 .column.medium-uncentered:last-child,
  #stacks_in_7103 .columns.medium-uncentered:last-child {
    float: left; }

  #stacks_in_7103 .column.medium-uncentered.opposite,
  #stacks_in_7103 .columns.medium-uncentered.opposite {
    float: right; }

  #stacks_in_7103 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_7103 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_7103 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_7103 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_7103 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_7103 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_7103 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_7103 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_7103 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_7103 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_7103 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_7103 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_7103 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_7103 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_7103 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_7103 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_7103 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_7103 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_7103 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_7103 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_7103 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_7103 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_7103 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_7103 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; } 
}

@media only screen and (min-width: 64.063em) {
  #stacks_in_7103 .large-push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_7103 .large-pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_7103 .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_7103 .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_7103 .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_7103 .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_7103 .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_7103 .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_7103 .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_7103 .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_7103 .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_7103 .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_7103 .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_7103 .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_7103 .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_7103 .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_7103 .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_7103 .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_7103 .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_7103 .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_7103 .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_7103 .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_7103 .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_7103 .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  #stacks_in_7103 .column,
  #stacks_in_7103 .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  #stacks_in_7103 .large-1 {
    width: 8.33333%; }

  #stacks_in_7103 .large-2 {
    width: 16.66667%; }

  #stacks_in_7103 .large-3 {
    width: 25%; }

  #stacks_in_7103 .large-4 {
    width: 33.33333%; }

  #stacks_in_7103 .large-5 {
    width: 41.66667%; }

  #stacks_in_7103 .large-6 {
    width: 50%; }

  #stacks_in_7103 .large-7 {
    width: 58.33333%; }

  #stacks_in_7103 .large-8 {
    width: 66.66667%; }

  #stacks_in_7103 .large-9 {
    width: 75%; }

  #stacks_in_7103 .large-10 {
    width: 83.33333%; }

  #stacks_in_7103 .large-11 {
    width: 91.66667%; }

  #stacks_in_7103 .large-12 {
    width: 100%; }

  #stacks_in_7103 .large-offset-0 {
    margin-left: 0% !important; }

  #stacks_in_7103 .large-offset-1 {
    margin-left: 8.33333% !important; }

  #stacks_in_7103 .large-offset-2 {
    margin-left: 16.66667% !important; }

  #stacks_in_7103 .large-offset-3 {
    margin-left: 25% !important; }

  #stacks_in_7103 .large-offset-4 {
    margin-left: 33.33333% !important; }

  #stacks_in_7103 .large-offset-5 {
    margin-left: 41.66667% !important; }

  #stacks_in_7103 .large-offset-6 {
    margin-left: 50% !important; }

  #stacks_in_7103 .large-offset-7 {
    margin-left: 58.33333% !important; }

  #stacks_in_7103 .large-offset-8 {
    margin-left: 66.66667% !important; }

  #stacks_in_7103 .large-offset-9 {
    margin-left: 75% !important; }

  #stacks_in_7103 .large-offset-10 {
    margin-left: 83.33333% !important; }

  #stacks_in_7103 .large-offset-11 {
    margin-left: 91.66667% !important; }

  #stacks_in_7103 .large-reset-order {
    margin-left: 0;
    margin-right: 0;
    left: auto;
    right: auto;
    float: left; }

  #stacks_in_7103 .column.large-centered,
  #stacks_in_7103 .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  #stacks_in_7103 .column.large-uncentered,
  #stacks_in_7103 .columns.large-uncentered {
    margin-left: 0;
    margin-right: 0;
    float: left; }

  #stacks_in_7103 .column.large-centered:last-child,
  #stacks_in_7103 .columns.large-centered:last-child {
    float: none; }

  #stacks_in_7103 .column.large-uncentered:last-child,
  #stacks_in_7103 .columns.large-uncentered:last-child {
    float: left; }

  #stacks_in_7103 .column.large-uncentered.opposite,
  #stacks_in_7103 .columns.large-uncentered.opposite {
    float: right; }

  #stacks_in_7103 .push-0 {
    position: relative;
    left: 0%;
    right: auto; }

  #stacks_in_7103 .pull-0 {
    position: relative;
    right: 0%;
    left: auto; }

  #stacks_in_7103 .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  #stacks_in_7103 .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  #stacks_in_7103 .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  #stacks_in_7103 .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  #stacks_in_7103 .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  #stacks_in_7103 .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  #stacks_in_7103 .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  #stacks_in_7103 .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  #stacks_in_7103 .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  #stacks_in_7103 .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  #stacks_in_7103 .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  #stacks_in_7103 .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  #stacks_in_7103 .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  #stacks_in_7103 .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  #stacks_in_7103 .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  #stacks_in_7103 .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  #stacks_in_7103 .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  #stacks_in_7103 .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  #stacks_in_7103 .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  #stacks_in_7103 .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  #stacks_in_7103 .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  #stacks_in_7103 .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; } 
}

#stacks_in_7103 [class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }

#stacks_in_7103 [class*="block-grid-"]:before, [class*="block-grid-"]:after {
  content: " ";
  display: table; }

#stacks_in_7103 [class*="block-grid-"]:after {
  clear: both; }

#stacks_in_7103 [class*="block-grid-"] > li {
  display: block;
  height: auto;
  float: left;
  padding: 0 0.625rem 1.25rem; }

@media only screen {

#stacks_in_7103 .small-block-grid-1 > li {
width: 100%;
list-style: none; }
  #stacks_in_7103 .small-block-grid-1 > li:nth-of-type(1n) {
  clear: none; }
  #stacks_in_7103 .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }

#stacks_in_7103 .small-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_7103 .small-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .small-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_7103 .small-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_7103 .small-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .small-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_7103 .small-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_7103 .small-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .small-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_7103 .small-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_7103 .small-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .small-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_7103 .small-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_7103 .small-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .small-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_7103 .small-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_7103 .small-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .small-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_7103 .small-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_7103 .small-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .small-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_7103 .small-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_7103 .small-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .small-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_7103 .small-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_7103 .small-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .small-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_7103 .small-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_7103 .small-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .small-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_7103 .small-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_7103 .small-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .small-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } 
}

@media only screen and (min-width: 40.063em) {
#stacks_in_7103 .medium-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_7103 .medium-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .medium-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_7103 .medium-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_7103 .medium-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .medium-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_7103 .medium-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_7103 .medium-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .medium-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_7103 .medium-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_7103 .medium-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .medium-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_7103 .medium-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_7103 .medium-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .medium-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_7103 .medium-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_7103 .medium-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .medium-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_7103 .medium-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_7103 .medium-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .medium-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_7103 .medium-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_7103 .medium-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .medium-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_7103 .medium-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_7103 .medium-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .medium-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_7103 .medium-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_7103 .medium-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .medium-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_7103 .medium-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_7103 .medium-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .medium-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_7103 .medium-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_7103 .medium-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .medium-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } 
}

@media only screen and (min-width: 64.063em) {
#stacks_in_7103 .large-block-grid-1 > li {
  width: 100%;
  list-style: none; }
  #stacks_in_7103 .large-block-grid-1 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .large-block-grid-1 > li:nth-of-type(1n+1) {
    clear: both; }

#stacks_in_7103 .large-block-grid-2 > li {
  width: 50%;
  list-style: none; }
  #stacks_in_7103 .large-block-grid-2 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .large-block-grid-2 > li:nth-of-type(2n+1) {
    clear: both; }

#stacks_in_7103 .large-block-grid-3 > li {
  width: 33.33333%;
  list-style: none; }
  #stacks_in_7103 .large-block-grid-3 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .large-block-grid-3 > li:nth-of-type(3n+1) {
    clear: both; }

#stacks_in_7103 .large-block-grid-4 > li {
  width: 25%;
  list-style: none; }
  #stacks_in_7103 .large-block-grid-4 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .large-block-grid-4 > li:nth-of-type(4n+1) {
    clear: both; }

#stacks_in_7103 .large-block-grid-5 > li {
  width: 20%;
  list-style: none; }
  #stacks_in_7103 .large-block-grid-5 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .large-block-grid-5 > li:nth-of-type(5n+1) {
    clear: both; }

#stacks_in_7103 .large-block-grid-6 > li {
  width: 16.66667%;
  list-style: none; }
  #stacks_in_7103 .large-block-grid-6 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .large-block-grid-6 > li:nth-of-type(6n+1) {
    clear: both; }

#stacks_in_7103 .large-block-grid-7 > li {
  width: 14.28571%;
  list-style: none; }
  #stacks_in_7103 .large-block-grid-7 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .large-block-grid-7 > li:nth-of-type(7n+1) {
    clear: both; }

#stacks_in_7103 .large-block-grid-8 > li {
  width: 12.5%;
  list-style: none; }
  #stacks_in_7103 .large-block-grid-8 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .large-block-grid-8 > li:nth-of-type(8n+1) {
    clear: both; }

#stacks_in_7103 .large-block-grid-9 > li {
  width: 11.11111%;
  list-style: none; }
  #stacks_in_7103 .large-block-grid-9 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .large-block-grid-9 > li:nth-of-type(9n+1) {
    clear: both; }

#stacks_in_7103 .large-block-grid-10 > li {
  width: 10%;
  list-style: none; }
  #stacks_in_7103 .large-block-grid-10 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .large-block-grid-10 > li:nth-of-type(10n+1) {
    clear: both; }

#stacks_in_7103 .large-block-grid-11 > li {
  width: 9.09091%;
  list-style: none; }
  #stacks_in_7103 .large-block-grid-11 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .large-block-grid-11 > li:nth-of-type(11n+1) {
    clear: both; }

#stacks_in_7103 .large-block-grid-12 > li {
  width: 8.33333%;
  list-style: none; }
  #stacks_in_7103 .large-block-grid-12 > li:nth-of-type(1n) {
    clear: none; }
  #stacks_in_7103 .large-block-grid-12 > li:nth-of-type(12n+1) {
    clear: both; } }

#stacks_in_7103 {
	border: solid rgba(226, 118, 47, 1.00);
	border-width:  3px;
}
/* Pull Quote Styling */


  #stacks_in_7094 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7094 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7094 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7094 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7094 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7094 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7094 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7094 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7094 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7094 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7094 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7094 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7094 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7094 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7094 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7108 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7108 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7108 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7108 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7108 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7108 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7108 .floated_content {
    margin-left: 40px;
    margin-bottom: 40px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7108 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7108 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7108 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7108 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7108 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7108 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7108 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7108 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7089 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7089 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7089 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7089 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7089 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7089 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7089 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7089 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7089 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7089 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7089 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7089 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7089 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7089 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7089 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7079 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7079 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7079 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7079 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7079 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7079 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7079 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7079 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7079 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7079 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7079 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7079 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7079 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7079 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7079 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7069 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7069 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7069 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7069 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7069 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7069 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7069 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7069 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7069 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7069 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7069 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7069 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7069 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7069 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7069 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6425 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6425 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6425 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6425 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6425 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6425 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6425 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6425 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6425 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6425 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6425 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6425 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6425 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6425 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6425 .pull_quote { 
      max-width: 100%;
    }
  

}



  /* Standard Responsive Image */
  #stacks_in_7220 .structure_responsive_image img {
    max-width: 100%;
    height: auto;
  }
  




  

/* Align Image */



  

  








/* Image Styling */
  
  #stacks_in_7220 .structure_responsive_image img {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
  }



/* Pull Quote Styling */


  #stacks_in_6400 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6400 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6400 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6400 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6400 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6400 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6400 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6400 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6400 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6400 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6400 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6400 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6400 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6400 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6400 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6388 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6388 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6388 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6388 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6388 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6388 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6388 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6388 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6388 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6388 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6388 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6388 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6388 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6388 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6388 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_in_6388 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  5px;
}
/* Pull Quote Styling */


  #stacks_in_6361 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6361 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6361 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6361 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6361 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6361 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6361 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6361 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6361 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6361 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6361 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6361 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6361 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6361 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6361 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_7128 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_7128 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_7128 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_7128 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_7128 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_7128 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_7128 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_7128 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_7128 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_7128 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_7128 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_7128 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_7128 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_7128 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_7128 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6381 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6381 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6381 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6381 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6381 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6381 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6381 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6381 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6381 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6381 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6381 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6381 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6381 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6381 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6381 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6376 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6376 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6376 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6376 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6376 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6376 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6376 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6376 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6376 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6376 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6376 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6376 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6376 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6376 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6376 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6371 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6371 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6371 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6371 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6371 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6371 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6371 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6371 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6371 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6371 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6371 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6371 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6371 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6371 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6371 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6366 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6366 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6366 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6366 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6366 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6366 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6366 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6366 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6366 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6366 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6366 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6366 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6366 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6366 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6366 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6356 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6356 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6356 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6356 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6356 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6356 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6356 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6356 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6356 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6356 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6356 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6356 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6356 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6356 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6356 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6321 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6321 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6321 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6321 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6321 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6321 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6321 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6321 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6321 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6321 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6321 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6321 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6321 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6321 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6321 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6341 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6341 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6341 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6341 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6341 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6341 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6341 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6341 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6341 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6341 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6341 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6341 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6341 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6341 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6341 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6346 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6346 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6346 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6346 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6346 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6346 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6346 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6346 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6346 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6346 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6346 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6346 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6346 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6346 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6346 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6328 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6328 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6328 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6328 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6328 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6328 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6328 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6328 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6328 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6328 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6328 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6328 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6328 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6328 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6328 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6313 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6313 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6313 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6313 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6313 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6313 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6313 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6313 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6313 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6313 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6313 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6313 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6313 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6313 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6313 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6303 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6303 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6303 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6303 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6303 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6303 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6303 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6303 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6303 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6303 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6303 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6303 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6303 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6303 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6303 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6308 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6308 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6308 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6308 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6308 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6308 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6308 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6308 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6308 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6308 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6308 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6308 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6308 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6308 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6308 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6278 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6278 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6278 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6278 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6278 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6278 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6278 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6278 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6278 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6278 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6278 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6278 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6278 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6278 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6278 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6283 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6283 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6283 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6283 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6283 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6283 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6283 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6283 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6283 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6283 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6283 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6283 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6283 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6283 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6283 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6273 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6273 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6273 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6273 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6273 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6273 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6273 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6273 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6273 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6273 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6273 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6273 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6273 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6273 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6273 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5589 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5589 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5589 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5589 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5589 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5589 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5589 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5589 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5589 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5589 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5589 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5589 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5589 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5589 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5589 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5592 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5592 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5592 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5592 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5592 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5592 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5592 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5592 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5592 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5592 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5592 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5592 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5592 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5592 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5592 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5595 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5595 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5595 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5595 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5595 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5595 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5595 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5595 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5595 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5595 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5595 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5595 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5595 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5595 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5595 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5598 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5598 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5598 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5598 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5598 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5598 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5598 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5598 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5598 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5598 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5598 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5598 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5598 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5598 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5598 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5603 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5603 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5603 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5603 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5603 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5603 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5603 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5603 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5603 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5603 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5603 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5603 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5603 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5603 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5603 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5606 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5606 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5606 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5606 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5606 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5606 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5606 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5606 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5606 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5606 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5606 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5606 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5606 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5606 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5606 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5609 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5609 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5609 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5609 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5609 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5609 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5609 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5609 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5609 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5609 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5609 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5609 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5609 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5609 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5609 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5612 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5612 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5612 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5612 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5612 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5612 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5612 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5612 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5612 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5612 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5612 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5612 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5612 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5612 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5612 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5615 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5615 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5615 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5615 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5615 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5615 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5615 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5615 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5615 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5615 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5615 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5615 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5615 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5615 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5615 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5620 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5620 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5620 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5620 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5620 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5620 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5620 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5620 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5620 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5620 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5620 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5620 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5620 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5620 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5620 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5623 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5623 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5623 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5623 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5623 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5623 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5623 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5623 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5623 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5623 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5623 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5623 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5623 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5623 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5623 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5626 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5626 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5626 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5626 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5626 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5626 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5626 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5626 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5626 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5626 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5626 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5626 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5626 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5626 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5626 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5629 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5629 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5629 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5629 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5629 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5629 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5629 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5629 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5629 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5629 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5629 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5629 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5629 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5629 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5629 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5632 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5632 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5632 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5632 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5632 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5632 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5632 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5632 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5632 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5632 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5632 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5632 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5632 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5632 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5632 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5635 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5635 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5635 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5635 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5635 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5635 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5635 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5635 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5635 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5635 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5635 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5635 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5635 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5635 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5635 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5638 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5638 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5638 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5638 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5638 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5638 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5638 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5638 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5638 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5638 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5638 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5638 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5638 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5638 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5638 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5641 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5641 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5641 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5641 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5641 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5641 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5641 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5641 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5641 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5641 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5641 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5641 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5641 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5641 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5641 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5644 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5644 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5644 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5644 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5644 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5644 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5644 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5644 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5644 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5644 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5644 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5644 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5644 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5644 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5644 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5647 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5647 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5647 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5647 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5647 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5647 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5647 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5647 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5647 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5647 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5647 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5647 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5647 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5647 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5647 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5652 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5652 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5652 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5652 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5652 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5652 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5652 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5652 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5652 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5652 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5652 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5652 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5652 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5652 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5652 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5655 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5655 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5655 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5655 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5655 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5655 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5655 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5655 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5655 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5655 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5655 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5655 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5655 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5655 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5655 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5658 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5658 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5658 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5658 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5658 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5658 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5658 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5658 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5658 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5658 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5658 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5658 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5658 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5658 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5658 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5661 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5661 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5661 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5661 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5661 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5661 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5661 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5661 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5661 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5661 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5661 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5661 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5661 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5661 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5661 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5664 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5664 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5664 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5664 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5664 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5664 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5664 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5664 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5664 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5664 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5664 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5664 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5664 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5664 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5664 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5667 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5667 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5667 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5667 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5667 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5667 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5667 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5667 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5667 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5667 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5667 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5667 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5667 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5667 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5667 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5670 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5670 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5670 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5670 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5670 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5670 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5670 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5670 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5670 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5670 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5670 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5670 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5670 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5670 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5670 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5673 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5673 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5673 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5673 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5673 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5673 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5673 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5673 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5673 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5673 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5673 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5673 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5673 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5673 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5673 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5676 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5676 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5676 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5676 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5676 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5676 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5676 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5676 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5676 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5676 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5676 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5676 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5676 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5676 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5676 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5679 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5679 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5679 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5679 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5679 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5679 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5679 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5679 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5679 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5679 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5679 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5679 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5679 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5679 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5679 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5684 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5684 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5684 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5684 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5684 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5684 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5684 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5684 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5684 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5684 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5684 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5684 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5684 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5684 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5684 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5687 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5687 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5687 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5687 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5687 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5687 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5687 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5687 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5687 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5687 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5687 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5687 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5687 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5687 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5687 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5690 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5690 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5690 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5690 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5690 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5690 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5690 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5690 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5690 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5690 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5690 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5690 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5690 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5690 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5690 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5693 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5693 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5693 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5693 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5693 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5693 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5693 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5693 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5693 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5693 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5693 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5693 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5693 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5693 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5693 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5696 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5696 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5696 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5696 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5696 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5696 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5696 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5696 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5696 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5696 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5696 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5696 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5696 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5696 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5696 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5699 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5699 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5699 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5699 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5699 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5699 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5699 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5699 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5699 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5699 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5699 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5699 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5699 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5699 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5699 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5702 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5702 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5702 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5702 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5702 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5702 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5702 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5702 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5702 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5702 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5702 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5702 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5702 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5702 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5702 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5705 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5705 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5705 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5705 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5705 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5705 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5705 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5705 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5705 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5705 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5705 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5705 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5705 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5705 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5705 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5710 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5710 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5710 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5710 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5710 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5710 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5710 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5710 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5710 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5710 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5710 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5710 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5710 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5710 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5710 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5713 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5713 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5713 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5713 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5713 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5713 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5713 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5713 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5713 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5713 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5713 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5713 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5713 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5713 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5713 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5716 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5716 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5716 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5716 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5716 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5716 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5716 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5716 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5716 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5716 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5716 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5716 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5716 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5716 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5716 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5719 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5719 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5719 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5719 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5719 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5719 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5719 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5719 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5719 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5719 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5719 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5719 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5719 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5719 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5719 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5722 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5722 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5722 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5722 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5722 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5722 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5722 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5722 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5722 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5722 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5722 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5722 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5722 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5722 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5722 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5725 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5725 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5725 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5725 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5725 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5725 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5725 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5725 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5725 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5725 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5725 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5725 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5725 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5725 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5725 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5728 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5728 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5728 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5728 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5728 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5728 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5728 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5728 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5728 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5728 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5728 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5728 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5728 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5728 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5728 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5733 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5733 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5733 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5733 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5733 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5733 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5733 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5733 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5733 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5733 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5733 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5733 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5733 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5733 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5733 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5736 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5736 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5736 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5736 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5736 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5736 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5736 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5736 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5736 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5736 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5736 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5736 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5736 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5736 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5736 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5739 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5739 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5739 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5739 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5739 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5739 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5739 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5739 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5739 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5739 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5739 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5739 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5739 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5739 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5739 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5742 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5742 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5742 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5742 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5742 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5742 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5742 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5742 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5742 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5742 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5742 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5742 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5742 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5742 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5742 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5745 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5745 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5745 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5745 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5745 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5745 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5745 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5745 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5745 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5745 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5745 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5745 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5745 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5745 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5745 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5748 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5748 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5748 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5748 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5748 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5748 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5748 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5748 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5748 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5748 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5748 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5748 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5748 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5748 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5748 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5751 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5751 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5751 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5751 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5751 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5751 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5751 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5751 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5751 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5751 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5751 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5751 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5751 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5751 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5751 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5754 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5754 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5754 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5754 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5754 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5754 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5754 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5754 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5754 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5754 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5754 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5754 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5754 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5754 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5754 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5757 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5757 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5757 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5757 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5757 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5757 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5757 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5757 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5757 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5757 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5757 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5757 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5757 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5757 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5757 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5760 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5760 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5760 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5760 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5760 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5760 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5760 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5760 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5760 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5760 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5760 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5760 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5760 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5760 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5760 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5763 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5763 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5763 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5763 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5763 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5763 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5763 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5763 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5763 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5763 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5763 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5763 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5763 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5763 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5763 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5766 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5766 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5766 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5766 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5766 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5766 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5766 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5766 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5766 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5766 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5766 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5766 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5766 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5766 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5766 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5769 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5769 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5769 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5769 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5769 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5769 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5769 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5769 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5769 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5769 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5769 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5769 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5769 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5769 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5769 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5774 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5774 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5774 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5774 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5774 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5774 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5774 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5774 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5774 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5774 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5774 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5774 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5774 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5774 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5774 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5777 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5777 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5777 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5777 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5777 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5777 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5777 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5777 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5777 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5777 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5777 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5777 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5777 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5777 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5777 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5780 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5780 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5780 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5780 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5780 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5780 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5780 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5780 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5780 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5780 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5780 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5780 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5780 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5780 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5780 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5783 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5783 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5783 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5783 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5783 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5783 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5783 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5783 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5783 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5783 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5783 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5783 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5783 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5783 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5783 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5786 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5786 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5786 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5786 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5786 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5786 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5786 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5786 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5786 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5786 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5786 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5786 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5786 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5786 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5786 .pull_quote { 
      max-width: 100%;
    }
  

}

#stacks_in_5789>.s3_row {
	margin: 0 -10px;
}

#stacks_in_5789>.s3_row>.s3_column_left {
	width: 51.51%;
}

#stacks_in_5789>.s3_row>.s3_column_right {
	width: 48.490002%;
}




#stacks_in_5789>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_5789>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_5789>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_5793 {
	display:inline-block; width:100%; line-height: 0.900000em;
}
/* Pull Quote Styling */


  #stacks_in_5798 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5798 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5798 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5798 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5798 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5798 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5798 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5798 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5798 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5798 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5798 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5798 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5798 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5798 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5798 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5801 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5801 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5801 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5801 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5801 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5801 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5801 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5801 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5801 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5801 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5801 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5801 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5801 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5801 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5801 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5804 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5804 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5804 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5804 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5804 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5804 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5804 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5804 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5804 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5804 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5804 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5804 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5804 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5804 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5804 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5809 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5809 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5809 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5809 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5809 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5809 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5809 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5809 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5809 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5809 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5809 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5809 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5809 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5809 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5809 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5812 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5812 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5812 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5812 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5812 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5812 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5812 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5812 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5812 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5812 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5812 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5812 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5812 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5812 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5812 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5815 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5815 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5815 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5815 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5815 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5815 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5815 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5815 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5815 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5815 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5815 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5815 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5815 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5815 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5815 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5818 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5818 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5818 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5818 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5818 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5818 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5818 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5818 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5818 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5818 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5818 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5818 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5818 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5818 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5818 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5821 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5821 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5821 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5821 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5821 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5821 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5821 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5821 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5821 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5821 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5821 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5821 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5821 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5821 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5821 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5824 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5824 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5824 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5824 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5824 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5824 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5824 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5824 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5824 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5824 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5824 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5824 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5824 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5824 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5824 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5827 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5827 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5827 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5827 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5827 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5827 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5827 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5827 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5827 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5827 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5827 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5827 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5827 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5827 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5827 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5830 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5830 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5830 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5830 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5830 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5830 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5830 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5830 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5830 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5830 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5830 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5830 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5830 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5830 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5830 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5835 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5835 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5835 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5835 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5835 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5835 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5835 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5835 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5835 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5835 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5835 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5835 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5835 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5835 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5835 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5838 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5838 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5838 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5838 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5838 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5838 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5838 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5838 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5838 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5838 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5838 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5838 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5838 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5838 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5838 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5841 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5841 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5841 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5841 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5841 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5841 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5841 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5841 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5841 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5841 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5841 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5841 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5841 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5841 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5841 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5844 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5844 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5844 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5844 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5844 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5844 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5844 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5844 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5844 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5844 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5844 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5844 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5844 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5844 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5844 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5847 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5847 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5847 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5847 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5847 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5847 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5847 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5847 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5847 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5847 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5847 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5847 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5847 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5847 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5847 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5850 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5850 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5850 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5850 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5850 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5850 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5850 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5850 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5850 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5850 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5850 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5850 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5850 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5850 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5850 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5853 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5853 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5853 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5853 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5853 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5853 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5853 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5853 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5853 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5853 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5853 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5853 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5853 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5853 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5853 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5856 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5856 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5856 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5856 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5856 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5856 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5856 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5856 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5856 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5856 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5856 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5856 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5856 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5856 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5856 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5859 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5859 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5859 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5859 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5859 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5859 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5859 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5859 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5859 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5859 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5859 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5859 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5859 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5859 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5859 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5864 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5864 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5864 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5864 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5864 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5864 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5864 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5864 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5864 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5864 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5864 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5864 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5864 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5864 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5864 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5867 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5867 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5867 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5867 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5867 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5867 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5867 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5867 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5867 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5867 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5867 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5867 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5867 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5867 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5867 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5870 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5870 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5870 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5870 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5870 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5870 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5870 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5870 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5870 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5870 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5870 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5870 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5870 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5870 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5870 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5873 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5873 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5873 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5873 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5873 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5873 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5873 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5873 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5873 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5873 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5873 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5873 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5873 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5873 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5873 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5876 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5876 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5876 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5876 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5876 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5876 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5876 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5876 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5876 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5876 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5876 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5876 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5876 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5876 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5876 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5879 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5879 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5879 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5879 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5879 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5879 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5879 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5879 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5879 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5879 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5879 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5879 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5879 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5879 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5879 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5882 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5882 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5882 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5882 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5882 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5882 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5882 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5882 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5882 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5882 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5882 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5882 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5882 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5882 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5882 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5885 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5885 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5885 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5885 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5885 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5885 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5885 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5885 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5885 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5885 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5885 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5885 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5885 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5885 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5885 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5888 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5888 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5888 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5888 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5888 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5888 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5888 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5888 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5888 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5888 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5888 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5888 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5888 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5888 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5888 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5895 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5895 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5895 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5895 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5895 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5895 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5895 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5895 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5895 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5895 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5895 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5895 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5895 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5895 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5895 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5898 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5898 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5898 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5898 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5898 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5898 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5898 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5898 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5898 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5898 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5898 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5898 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5898 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5898 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5898 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5901 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5901 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5901 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5901 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5901 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5901 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5901 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5901 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5901 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5901 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5901 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5901 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5901 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5901 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5901 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5904 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5904 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5904 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5904 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5904 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5904 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5904 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5904 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5904 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5904 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5904 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5904 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5904 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5904 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5904 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5907 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5907 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5907 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5907 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5907 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5907 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5907 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5907 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5907 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5907 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5907 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5907 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5907 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5907 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5907 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5910 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5910 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5910 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5910 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5910 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5910 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5910 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5910 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5910 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5910 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5910 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5910 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5910 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5910 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5910 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5913 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5913 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5913 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5913 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5913 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5913 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5913 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5913 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5913 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5913 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5913 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5913 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5913 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5913 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5913 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5916 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5916 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5916 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5916 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5916 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5916 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5916 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5916 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5916 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5916 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5916 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5916 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5916 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5916 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5916 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5921 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5921 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5921 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5921 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5921 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5921 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5921 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5921 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5921 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5921 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5921 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5921 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5921 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5921 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5921 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5924 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5924 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5924 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5924 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5924 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5924 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5924 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5924 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5924 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5924 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5924 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5924 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5924 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5924 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5924 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5927 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5927 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5927 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5927 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5927 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5927 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5927 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5927 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5927 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5927 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5927 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5927 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5927 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5927 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5927 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5930 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5930 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5930 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5930 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5930 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5930 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5930 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5930 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5930 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5930 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5930 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5930 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5930 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5930 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5930 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5933 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5933 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5933 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5933 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5933 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5933 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5933 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5933 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5933 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5933 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5933 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5933 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5933 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5933 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5933 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5936 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5936 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5936 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5936 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5936 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5936 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5936 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5936 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5936 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5936 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5936 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5936 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5936 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5936 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5936 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5939 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5939 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5939 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5939 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5939 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5939 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5939 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5939 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5939 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5939 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5939 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5939 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5939 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5939 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5939 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5942 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5942 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5942 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5942 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5942 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5942 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5942 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5942 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5942 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5942 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5942 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5942 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5942 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5942 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5942 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5945 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5945 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5945 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5945 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5945 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5945 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5945 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5945 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5945 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5945 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5945 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5945 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5945 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5945 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5945 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5948 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5948 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5948 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5948 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5948 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5948 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5948 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5948 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5948 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5948 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5948 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5948 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5948 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5948 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5948 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5951 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5951 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5951 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5951 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5951 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5951 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5951 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5951 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5951 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5951 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5951 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5951 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5951 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5951 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5951 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5954 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5954 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5954 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5954 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5954 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5954 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5954 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5954 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5954 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5954 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5954 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5954 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5954 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5954 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5954 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5957 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5957 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5957 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5957 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5957 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5957 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5957 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5957 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5957 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5957 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5957 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5957 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5957 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5957 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5957 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_out_5962 {
	margin-left:0;
}
/* ------------------------------------*/
/* Accordion                           */
/* ------------------------------------*/



ul#stacks_in_759_accordion {
	list-style: none;
	border-radius: 4px;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	text-shadow: none;
}

ul#stacks_in_759_accordion > li {
	list-style: none;
	background: none !important;
	margin: 0;
	padding: 0 !important;
}

/* Label Font Choices */
	
	.stacks_in_759_accordion_label {
		font-family: 'Open Sans', sans-serif;
	}















/* Content Font Choices */
	
	.stacks_in_759_accordion_content {
		font-family: 'Open Sans', sans-serif;
	}









.stacks_in_759_accordion_label {
	cursor: pointer;
	padding: 15px 20px;
	position: relative;
}

.stacks_in_759_accordion_label i {
}

.stacks_in_759_accordion_selected {
}

.stacks_in_759_accordion_content {
		
		padding: 40px;
	

}

ul#stacks_in_759_accordion li:last-child .stacks_in_759_accordion_content {
}

.stacks_in_759_accordion_label .accordion_icon {
	display: inline-block;
	text-align: center;
	width: 25px;
		
		position: absolute;
		right: 20px;
		top: 15px;
		margin-right: 0px;
	
	
}

.stacks_in_759_accordion_label .accordion_icon i {
	width: 25px;
	height: 25px;
	line-height: 24px;
	
}

.stacks_in_759_accordion_selected .accordion_icon i {
	
}

#stacks_in_759_open_all {
	cursor: pointer;
	font-size: 20px;
	margin-top: 12px;
}



/* ------------------------------------*/
/* Accordion Styles                    */
/* ------------------------------------*/

/* Ghost */



/* Dark Grey */



/* Light Blue */



/* Flat Teal */



/* Blue Grey */



/* Flat Orange */



/* Forest Green */



/* Earthy */



/* Purple Power */



/* Bold Blue */



/* Baby Blue */



/* Shamrock */



/* Crimson */



/* Gun Metal */



/* Bright Blue */



/* Pinky */



/* Tesla */



/* Rustic */


ul#stacks_in_759_accordion {
}

.stacks_in_759_accordion_label {
	color: #ffffff;
	background: #A6C8A7;
	border-bottom: 1px solid #96b597;
}

.stacks_in_759_accordion_selected {
	color: #ffffff;
	background: #585858;
	border-bottom: 1px solid #484848;
}



.stacks_in_759_accordion_content {
	background: #EDEDED;
	color: #414141;
	border-bottom: 1px solid #96b597;
}


ul#stacks_in_759_accordion li:last-child .stacks_in_759_accordion_label {
	border-bottom: none;
}


ul#stacks_in_759_accordion li:last-child .stacks_in_759_accordion_selected {
	border-bottom: 1px solid #484848;
}

ul#stacks_in_759_accordion li:last-child .stacks_in_759_accordion_content {
	border-bottom: none;
}




/* Ruby */



/* Feather */



/* Abstract */




/* CUSTOM */




/* ------------------------------------*/
/* Edit Mode                           */
/* ------------------------------------*/

#stacks_in_759_accordion_edit_header {
	height: 60px;
	line-height: 60px;
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%); /* W3C */
	text-align: center;
	border: 1px solid #d2d2d2;
	border-radius: 6px;
	width: 90%;
	margin: 20px auto;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.5);
	font-family: 'Roboto Slab', serif;
	font-size: 24px;
	letter-spacing: -1px;
	color: #AAAAAA;
	text-shadow: 0 1px 0 #fff;
}

/* ------------------------------------*/
/* Media Queries                       */
/* ------------------------------------*/


@media only screen {
	.stacks_in_759_accordion_label {
		font-size: 20px;
	}

	.stacks_in_759_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}

}


@media only screen and (max-width: 1024px) {
	.stacks_in_759_accordion_label {
		font-size: 18px;
	}

	.stacks_in_759_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 60px;
		
		
	}
}

@media only screen and (max-width: 768px) {
	.stacks_in_759_accordion_label {
		font-size: 16px;
	}

	.stacks_in_759_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_759_accordion_label {
		font-size: 14px;
	}

	.stacks_in_759_accordion_label {
		cursor: pointer;
		padding: 15px 20px;
		position: relative;
			
			padding-right: 50px;
		
		
	}
}


/* Pull Quote Styling */


  #stacks_in_6289 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6289 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6289 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6289 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6289 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6289 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6289 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6289 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6289 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6289 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6289 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6289 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6289 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6289 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6289 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_6288 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_6288 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_6288 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_6288 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_6288 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_6288 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_6288 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_6288 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_6288 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_6288 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_6288 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_6288 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_6288 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_6288 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_6288 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5409 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5409 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5409 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5409 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5409 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5409 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5409 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5409 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5409 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5409 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5409 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5409 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5409 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5409 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5409 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5414 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5414 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5414 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5414 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5414 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5414 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5414 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5414 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5414 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5414 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5414 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5414 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5414 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5414 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5414 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5404 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5404 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5404 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5404 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5404 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5404 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5404 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5404 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5404 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5404 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5404 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5404 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5404 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5404 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5404 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5399 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5399 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5399 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5399 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5399 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5399 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5399 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5399 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5399 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5399 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5399 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5399 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5399 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5399 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5399 .pull_quote { 
      max-width: 100%;
    }
  

}

#stacks_in_5389>.s3_row {
	margin: 0 -10px;
}

#stacks_in_5389>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_5389>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_5389>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_5389>.s3_row>.s3_column {
	padding: 0 10px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_5389>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_5389>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}



/* Pull Quote Styling */


  #stacks_in_5374 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5374 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5374 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5374 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5374 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5374 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5374 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5374 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5374 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5374 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5374 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5374 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5374 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5374 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5374 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5371 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5371 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5371 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5371 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5371 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5371 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5371 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5371 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5371 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5371 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5371 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5371 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5371 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5371 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5371 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5357 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5357 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5357 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5357 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5357 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5357 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5357 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5357 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5357 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5357 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5357 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5357 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5357 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5357 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5357 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5381 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5381 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5381 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5381 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5381 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5381 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5381 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5381 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5381 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5381 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5381 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5381 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5381 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5381 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5381 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5345 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5345 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5345 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5345 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5345 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5345 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5345 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5345 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5345 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5345 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5345 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5345 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5345 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5345 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5345 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5337 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5337 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5337 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5337 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5337 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5337 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5337 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5337 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5337 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5337 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5337 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5337 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5337 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5337 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5337 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_in_5350 {
	margin: 0px 0px 26px 0px;
}
/* Pull Quote Styling */


  #stacks_in_5329 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5329 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5329 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5329 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5329 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5329 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5329 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5329 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5329 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5329 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5329 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5329 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5329 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5329 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5329 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5322 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5322 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5322 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5322 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5322 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5322 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5322 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5322 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5322 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5322 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5322 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5322 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5322 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5322 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5322 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5319 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5319 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5319 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5319 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5319 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5319 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5319 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5319 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5319 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5319 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5319 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5319 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5319 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5319 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5319 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5311 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5311 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5311 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5311 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5311 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5311 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5311 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5311 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5311 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5311 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5311 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5311 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5311 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5311 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5311 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5301 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5301 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5301 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5301 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5301 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5301 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5301 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5301 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5301 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5301 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5301 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5301 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5301 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5301 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5301 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5295 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5295 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5295 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5295 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5295 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5295 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5295 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5295 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5295 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5295 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5295 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5295 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5295 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5295 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5295 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5290 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5290 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5290 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5290 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5290 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5290 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5290 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5290 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5290 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5290 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5290 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5290 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5290 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5290 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5290 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5280 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5280 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5280 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5280 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5280 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5280 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5280 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5280 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5280 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5280 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5280 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5280 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5280 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5280 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5280 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4856 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4856 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4856 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4856 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4856 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4856 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4856 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4856 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4856 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4856 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4856 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4856 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4856 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4856 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4856 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4851 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4851 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4851 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4851 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4851 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4851 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4851 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4851 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4851 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4851 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4851 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4851 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4851 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4851 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4851 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4839 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4839 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4839 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4839 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4839 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4839 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4839 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4839 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4839 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4839 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4839 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4839 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4839 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4839 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4839 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4834 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4834 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4834 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4834 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4834 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4834 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4834 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4834 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4834 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4834 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4834 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4834 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4834 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4834 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4834 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4823 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4823 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4823 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4823 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4823 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4823 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4823 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4823 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4823 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4823 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4823 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4823 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4823 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4823 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4823 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4828 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4828 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4828 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4828 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4828 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4828 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4828 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4828 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4828 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4828 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4828 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4828 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4828 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4828 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4828 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4831 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4831 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4831 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4831 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4831 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4831 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4831 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4831 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4831 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4831 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4831 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4831 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4831 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4831 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4831 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4816 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4816 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4816 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4816 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4816 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4816 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4816 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4816 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4816 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4816 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4816 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4816 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4816 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4816 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4816 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4811 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4811 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4811 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4811 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4811 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4811 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4811 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4811 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4811 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4811 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4811 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4811 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4811 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4811 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4811 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4806 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4806 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4806 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4806 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4806 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4806 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4806 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4806 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4806 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4806 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4806 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4806 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4806 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4806 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4806 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1240 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1240 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1240 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1240 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1240 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1240 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1240 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1240 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1240 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1240 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1240 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1240 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1240 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1240 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1240 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1315 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1315 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1315 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1315 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1315 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1315 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1315 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1315 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1315 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1315 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1315 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1315 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1315 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1315 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1315 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1283 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1283 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1283 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1283 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1283 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1283 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1283 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1283 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1283 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1283 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1283 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1283 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1283 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1283 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1283 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1329 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1329 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1329 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1329 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1329 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1329 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1329 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1329 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1329 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1329 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1329 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1329 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1329 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1329 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1329 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1934 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1934 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1934 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1934 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1934 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1934 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1934 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1934 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1934 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1934 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1934 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1934 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1934 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1934 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1934 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5285 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5285 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5285 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5285 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5285 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5285 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5285 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5285 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5285 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5285 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5285 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5285 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5285 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5285 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5285 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1958 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1958 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1958 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1958 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1958 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1958 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1958 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1958 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1958 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1958 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1958 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1958 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1958 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1958 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1958 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1981 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1981 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1981 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1981 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1981 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1981 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1981 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1981 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1981 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1981 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1981 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1981 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1981 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1981 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1981 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_2004 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_2004 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_2004 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_2004 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_2004 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_2004 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_2004 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_2004 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_2004 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_2004 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_2004 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_2004 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_2004 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_2004 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_2004 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_2043 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_2043 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_2043 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_2043 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_2043 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_2043 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_2043 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_2043 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_2043 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_2043 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_2043 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_2043 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_2043 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_2043 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_2043 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_2066 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_2066 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_2066 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_2066 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_2066 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_2066 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_2066 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_2066 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_2066 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_2066 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_2066 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_2066 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_2066 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_2066 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_2066 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1343 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1343 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1343 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1343 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1343 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1343 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1343 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1343 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1343 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1343 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1343 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1343 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1343 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1343 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1343 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_2089 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_2089 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_2089 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_2089 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_2089 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_2089 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_2089 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_2089 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_2089 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_2089 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_2089 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_2089 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_2089 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_2089 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_2089 .pull_quote { 
      max-width: 100%;
    }
  

}

#stacks_in_4981>.s3_row {
	margin: 0 -10px;
}

#stacks_in_4981>.s3_row>.s3_column_left {
	width: 70.00%;
}

#stacks_in_4981>.s3_row>.s3_column_right {
	width: 30.000000%;
}




#stacks_in_4981>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_4981>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_4981>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_4985 {
	display:inline-block; width:100%; line-height: 0.900000em;
}
/* Pull Quote Styling */


  #stacks_in_2181 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_2181 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_2181 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_2181 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_2181 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_2181 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_2181 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_2181 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_2181 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_2181 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_2181 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_2181 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_2181 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_2181 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_2181 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_2158 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_2158 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_2158 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_2158 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_2158 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_2158 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_2158 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_2158 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_2158 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_2158 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_2158 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_2158 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_2158 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_2158 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_2158 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_2204 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_2204 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_2204 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_2204 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_2204 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_2204 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_2204 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_2204 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_2204 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_2204 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_2204 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_2204 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_2204 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_2204 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_2204 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_2227 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_2227 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_2227 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_2227 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_2227 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_2227 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_2227 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_2227 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_2227 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_2227 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_2227 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_2227 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_2227 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_2227 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_2227 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1371 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1371 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1371 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1371 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1371 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1371 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1371 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1371 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1371 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1371 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1371 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1371 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1371 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1371 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1371 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1142 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1142 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1142 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1142 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1142 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1142 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1142 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1142 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1142 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1142 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1142 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1142 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1142 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1142 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1142 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1237 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1237 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1237 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1237 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1237 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1237 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1237 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1237 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1237 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1237 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1237 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1237 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1237 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1237 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1237 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1210 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1210 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1210 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1210 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1210 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1210 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1210 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1210 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1210 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1210 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1210 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1210 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1210 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1210 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1210 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1169 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1169 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1169 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1169 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1169 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1169 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1169 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1169 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1169 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1169 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1169 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1169 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1169 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1169 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1169 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1386 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1386 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1386 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1386 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1386 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1386 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1386 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1386 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1386 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1386 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1386 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1386 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1386 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1386 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1386 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4590 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4590 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4590 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4590 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4590 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4590 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4590 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4590 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4590 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4590 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4590 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4590 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4590 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4590 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4590 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4415 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4415 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4415 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4415 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4415 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4415 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4415 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4415 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4415 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4415 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4415 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4415 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4415 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4415 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4415 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4576 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4576 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4576 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4576 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4576 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4576 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4576 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4576 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4576 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4576 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4576 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4576 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4576 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4576 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4576 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4553 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4553 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4553 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4553 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4553 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4553 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4553 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4553 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4553 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4553 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4553 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4553 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4553 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4553 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4553 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4530 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4530 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4530 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4530 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4530 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4530 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4530 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4530 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4530 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4530 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4530 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4530 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4530 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4530 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4530 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4507 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4507 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4507 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4507 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4507 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4507 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4507 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4507 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4507 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4507 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4507 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4507 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4507 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4507 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4507 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4484 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4484 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4484 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4484 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4484 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4484 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4484 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4484 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4484 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4484 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4484 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4484 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4484 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4484 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4484 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4461 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4461 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4461 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4461 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4461 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4461 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4461 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4461 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4461 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4461 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4461 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4461 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4461 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4461 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4461 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4438 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4438 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4438 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4438 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4438 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4438 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4438 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4438 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4438 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4438 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4438 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4438 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4438 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4438 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4438 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1400 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1400 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1400 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1400 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1400 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1400 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1400 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1400 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1400 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1400 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1400 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1400 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1400 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1400 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1400 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4774 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4774 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4774 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4774 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4774 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4774 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4774 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4774 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4774 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4774 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4774 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4774 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4774 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4774 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4774 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4751 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4751 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4751 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4751 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4751 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4751 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4751 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4751 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4751 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4751 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4751 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4751 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4751 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4751 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4751 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4728 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4728 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4728 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4728 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4728 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4728 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4728 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4728 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4728 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4728 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4728 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4728 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4728 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4728 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4728 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4705 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4705 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4705 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4705 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4705 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4705 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4705 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4705 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4705 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4705 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4705 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4705 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4705 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4705 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4705 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4682 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4682 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4682 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4682 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4682 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4682 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4682 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4682 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4682 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4682 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4682 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4682 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4682 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4682 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4682 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4659 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4659 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4659 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4659 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4659 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4659 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4659 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4659 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4659 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4659 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4659 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4659 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4659 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4659 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4659 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4636 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4636 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4636 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4636 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4636 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4636 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4636 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4636 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4636 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4636 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4636 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4636 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4636 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4636 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4636 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4613 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4613 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4613 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4613 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4613 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4613 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4613 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4613 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4613 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4613 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4613 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4613 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4613 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4613 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4613 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4797 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4797 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4797 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4797 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4797 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4797 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4797 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4797 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4797 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4797 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4797 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4797 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4797 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4797 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4797 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_1414 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_1414 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_1414 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_1414 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_1414 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_1414 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_1414 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_1414 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_1414 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_1414 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_1414 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_1414 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_1414 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_1414 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_1414 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_3195 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_3195 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_3195 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_3195 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_3195 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_3195 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_3195 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_3195 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_3195 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_3195 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_3195 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_3195 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_3195 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_3195 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_3195 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_3167 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_3167 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_3167 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_3167 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_3167 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_3167 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_3167 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_3167 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_3167 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_3167 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_3167 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_3167 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_3167 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_3167 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_3167 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_3134 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_3134 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_3134 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_3134 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_3134 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_3134 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_3134 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_3134 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_3134 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_3134 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_3134 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_3134 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_3134 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_3134 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_3134 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_3106 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_3106 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_3106 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_3106 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_3106 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_3106 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_3106 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_3106 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_3106 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_3106 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_3106 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_3106 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_3106 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_3106 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_3106 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_3078 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_3078 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_3078 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_3078 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_3078 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_3078 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_3078 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_3078 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_3078 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_3078 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_3078 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_3078 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_3078 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_3078 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_3078 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_3045 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_3045 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_3045 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_3045 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_3045 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_3045 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_3045 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_3045 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_3045 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_3045 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_3045 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_3045 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_3045 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_3045 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_3045 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_3017 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_3017 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_3017 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_3017 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_3017 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_3017 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_3017 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_3017 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_3017 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_3017 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_3017 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_3017 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_3017 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_3017 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_3017 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4906 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4906 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4906 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4906 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4906 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4906 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4906 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4906 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4906 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4906 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4906 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4906 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4906 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4906 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4906 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4885 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4885 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4885 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4885 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4885 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4885 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4885 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4885 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4885 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4885 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4885 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4885 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4885 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4885 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4885 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4874 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4874 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4874 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4874 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4874 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4874 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4874 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4874 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4874 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4874 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4874 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4874 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4874 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4874 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4874 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4866 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4866 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4866 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4866 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4866 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4866 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4866 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4866 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4866 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4866 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4866 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4866 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4866 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4866 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4866 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4893 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4893 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4893 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4893 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4893 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4893 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4893 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4893 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4893 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4893 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4893 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4893 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4893 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4893 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4893 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4888 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4888 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4888 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4888 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4888 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4888 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4888 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4888 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4888 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4888 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4888 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4888 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4888 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4888 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4888 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4861 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4861 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4861 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4861 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4861 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4861 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4861 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4861 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4861 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4861 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4861 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4861 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4861 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4861 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4861 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4976 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4976 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4976 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4976 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4976 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4976 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4976 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4976 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4976 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4976 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4976 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4976 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4976 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4976 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4976 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4971 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4971 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4971 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4971 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4971 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4971 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4971 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4971 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4971 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4971 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4971 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4971 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4971 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4971 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4971 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4966 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4966 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4966 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4966 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4966 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4966 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4966 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4966 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4966 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4966 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4966 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4966 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4966 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4966 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4966 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4961 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4961 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4961 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4961 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4961 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4961 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4961 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4961 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4961 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4961 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4961 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4961 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4961 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4961 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4961 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4956 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4956 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4956 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4956 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4956 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4956 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4956 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4956 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4956 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4956 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4956 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4956 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4956 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4956 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4956 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4951 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4951 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4951 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4951 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4951 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4951 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4951 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4951 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4951 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4951 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4951 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4951 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4951 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4951 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4951 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4946 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4946 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4946 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4946 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4946 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4946 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4946 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4946 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4946 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4946 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4946 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4946 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4946 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4946 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4946 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4941 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4941 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4941 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4941 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4941 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4941 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4941 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4941 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4941 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4941 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4941 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4941 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4941 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4941 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4941 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4936 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4936 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4936 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4936 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4936 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4936 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4936 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4936 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4936 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4936 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4936 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4936 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4936 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4936 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4936 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4931 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4931 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4931 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4931 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4931 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4931 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4931 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4931 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4931 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4931 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4931 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4931 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4931 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4931 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4931 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4926 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4926 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4926 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4926 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4926 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4926 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4926 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4926 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4926 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4926 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4926 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4926 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4926 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4926 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4926 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4921 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4921 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4921 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4921 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4921 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4921 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4921 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4921 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4921 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4921 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4921 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4921 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4921 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4921 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4921 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4916 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4916 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4916 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4916 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4916 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4916 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4916 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4916 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4916 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4916 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4916 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4916 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4916 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4916 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4916 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5021 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5021 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5021 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5021 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5021 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5021 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5021 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5021 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5021 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5021 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5021 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5021 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5021 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5021 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5021 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5016 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5016 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5016 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5016 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5016 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5016 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5016 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5016 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5016 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5016 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5016 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5016 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5016 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5016 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5016 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5011 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5011 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5011 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5011 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5011 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5011 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5011 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5011 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5011 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5011 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5011 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5011 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5011 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5011 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5011 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5006 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5006 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5006 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5006 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5006 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5006 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5006 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5006 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5006 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5006 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5006 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5006 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5006 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5006 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5006 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4995 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4995 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4995 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4995 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4995 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4995 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4995 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4995 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4995 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4995 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4995 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4995 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4995 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4995 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4995 .pull_quote { 
      max-width: 100%;
    }
  

}

#stacks_in_5032>.s3_row {
	margin: 0 -10px;
}

#stacks_in_5032>.s3_row>.s3_column_left {
	width: 51.51%;
}

#stacks_in_5032>.s3_row>.s3_column_right {
	width: 48.490002%;
}




#stacks_in_5032>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_5032>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_5032>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_5036 {
	display:inline-block; width:100%; line-height: 0.900000em;
}
/* Pull Quote Styling */


  #stacks_in_4990 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4990 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4990 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4990 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4990 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4990 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4990 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4990 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4990 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4990 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4990 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4990 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4990 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4990 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4990 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_4911 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_4911 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_4911 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_4911 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_4911 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_4911 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_4911 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_4911 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_4911 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_4911 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_4911 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_4911 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_4911 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_4911 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_4911 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5041 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5041 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5041 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5041 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5041 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5041 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5041 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5041 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5041 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5041 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5041 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5041 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5041 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5041 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5041 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5003 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5003 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5003 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5003 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5003 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5003 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5003 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5003 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5003 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5003 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5003 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5003 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5003 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5003 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5003 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5064 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5064 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5064 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5064 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5064 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5064 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5064 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5064 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5064 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5064 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5064 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5064 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5064 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5064 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5064 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5061 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5061 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5061 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5061 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5061 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5061 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5061 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5061 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5061 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5061 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5061 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5061 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5061 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5061 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5061 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5058 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5058 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5058 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5058 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5058 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5058 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5058 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5058 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5058 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5058 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5058 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5058 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5058 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5058 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5058 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5055 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5055 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5055 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5055 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5055 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5055 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5055 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5055 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5055 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5055 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5055 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5055 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5055 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5055 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5055 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5052 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5052 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5052 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5052 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5052 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5052 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5052 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5052 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5052 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5052 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5052 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5052 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5052 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5052 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5052 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5049 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5049 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5049 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5049 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5049 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5049 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5049 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5049 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5049 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5049 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5049 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5049 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5049 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5049 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5049 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5046 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5046 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5046 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5046 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5046 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5046 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5046 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5046 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5046 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5046 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5046 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5046 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5046 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5046 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5046 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5116 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5116 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5116 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5116 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5116 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5116 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5116 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5116 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5116 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5116 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5116 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5116 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5116 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5116 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5116 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5111 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5111 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5111 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5111 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5111 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5111 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5111 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5111 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5111 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5111 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5111 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5111 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5111 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5111 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5111 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5106 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5106 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5106 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5106 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5106 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5106 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5106 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5106 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5106 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5106 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5106 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5106 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5106 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5106 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5106 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5101 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5101 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5101 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5101 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5101 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5101 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5101 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5101 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5101 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5101 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5101 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5101 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5101 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5101 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5101 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5096 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5096 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5096 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5096 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5096 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5096 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5096 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5096 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5096 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5096 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5096 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5096 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5096 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5096 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5096 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5091 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5091 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5091 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5091 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5091 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5091 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5091 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5091 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5091 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5091 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5091 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5091 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5091 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5091 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5091 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5086 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5086 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5086 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5086 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5086 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5086 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5086 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5086 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5086 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5086 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5086 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5086 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5086 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5086 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5086 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5081 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5081 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5081 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5081 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5081 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5081 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5081 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5081 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5081 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5081 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5081 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5081 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5081 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5081 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5081 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5119 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5119 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5119 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5119 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5119 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5119 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5119 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5119 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5119 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5119 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5119 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5119 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5119 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5119 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5119 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5164 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5164 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5164 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5164 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5164 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5164 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5164 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5164 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5164 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5164 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5164 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5164 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5164 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5164 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5164 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5156 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5156 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5156 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5156 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5156 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5156 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5156 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5156 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5156 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5156 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5156 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5156 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5156 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5156 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5156 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5151 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5151 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5151 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5151 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5151 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5151 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5151 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5151 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5151 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5151 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5151 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5151 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5151 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5151 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5151 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5146 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5146 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5146 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5146 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5146 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5146 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5146 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5146 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5146 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5146 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5146 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5146 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5146 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5146 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5146 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5141 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5141 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5141 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5141 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5141 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5141 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5141 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5141 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5141 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5141 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5141 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5141 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5141 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5141 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5141 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5136 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5136 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5136 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5136 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5136 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5136 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5136 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5136 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5136 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5136 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5136 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5136 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5136 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5136 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5136 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5131 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5131 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5131 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5131 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5131 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5131 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5131 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5131 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5131 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5131 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5131 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5131 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5131 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5131 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5131 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5126 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5126 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5126 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5126 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5126 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5126 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5126 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5126 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5126 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5126 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5126 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5126 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5126 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5126 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5126 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5167 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5167 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5167 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5167 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5167 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5167 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5167 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5167 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5167 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5167 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5167 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5167 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5167 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5167 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5167 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5206 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5206 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5206 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5206 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5206 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5206 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5206 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5206 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5206 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5206 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5206 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5206 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5206 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5206 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5206 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5201 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5201 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5201 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5201 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5201 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5201 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5201 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5201 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5201 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5201 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5201 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5201 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5201 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5201 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5201 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5196 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5196 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5196 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5196 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5196 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5196 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5196 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5196 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5196 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5196 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5196 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5196 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5196 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5196 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5196 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5191 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5191 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5191 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5191 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5191 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5191 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5191 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5191 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5191 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5191 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5191 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5191 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5191 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5191 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5191 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5186 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5186 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5186 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5186 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5186 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5186 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5186 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5186 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5186 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5186 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5186 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5186 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5186 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5186 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5186 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5181 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5181 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5181 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5181 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5181 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5181 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5181 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5181 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5181 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5181 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5181 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5181 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5181 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5181 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5181 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5176 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5176 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5176 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5176 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5176 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5176 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5176 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5176 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5176 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5176 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5176 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5176 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5176 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5176 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5176 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5161 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5161 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5161 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5161 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5161 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5161 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5161 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5161 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5161 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5161 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5161 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5161 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5161 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5161 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5161 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5215 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5215 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5215 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5215 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5215 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5215 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5215 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5215 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5215 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5215 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5215 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5215 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5215 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5215 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5215 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5273 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5273 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5273 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5273 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5273 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5273 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5273 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5273 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5273 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5273 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5273 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5273 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5273 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5273 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5273 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5268 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5268 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5268 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5268 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5268 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5268 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5268 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5268 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5268 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5268 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5268 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5268 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5268 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5268 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5268 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5263 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5263 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5263 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5263 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5263 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5263 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5263 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5263 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5263 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5263 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5263 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5263 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5263 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5263 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5263 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5258 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5258 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5258 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5258 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5258 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5258 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5258 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5258 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5258 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5258 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5258 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5258 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5258 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5258 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5258 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5253 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5253 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5253 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5253 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5253 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5253 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5253 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5253 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5253 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5253 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5253 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5253 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5253 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5253 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5253 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5248 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5248 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5248 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5248 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5248 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5248 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5248 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5248 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5248 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5248 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5248 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5248 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5248 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5248 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5248 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5243 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5243 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5243 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5243 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5243 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5243 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5243 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5243 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5243 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5243 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5243 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5243 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5243 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5243 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5243 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5238 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5238 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5238 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5238 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5238 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5238 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5238 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5238 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5238 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5238 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5238 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5238 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5238 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5238 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5238 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5233 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5233 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5233 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5233 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5233 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5233 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5233 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5233 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5233 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5233 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5233 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5233 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5233 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5233 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5233 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5228 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5228 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5228 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5228 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5228 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5228 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5228 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5228 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5228 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5228 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5228 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5228 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5228 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5228 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5228 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5223 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5223 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5223 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5223 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5223 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5223 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5223 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5223 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5223 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5223 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5223 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5223 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5223 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5223 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5223 .pull_quote { 
      max-width: 100%;
    }
  

}

/* Pull Quote Styling */


  #stacks_in_5218 .pull_quote { 
    padding: 20px;
    border-top: 2px solid #E5E5E5;
    border-bottom: 2px solid #E5E5E5;
  }



#stacks_in_5218 .quote_text {
  line-height: 1.3;
  text-align: left;
  color: #ACACAC;
  
    font-family: Georgia, Times, serif;
  
}


#stacks_in_5218 .quote_author {
  margin-top: 20px;
  font-style: italic;
  text-align: right;
  color: #ACACAC;
}



/* Handles making images responsive inside the stack */
#stacks_in_5218 img {
  max-width: 100%;
  height: auto;
}


#stacks_in_5218 .floated_content {
  float: right;
}





/* We use this media query to add styles to any device that supports media queries */

@media only screen {
  #stacks_in_5218 .quote_text {
    font-size: 32px;
  }

    

  
  #stacks_in_5218 .floated_content {
    margin-left: 34px;
    margin-bottom: 34px;
  }
  

  
}


@media only screen and (max-width: 1024px) {
  #stacks_in_5218 .quote_text {
    font-size: 24px;
  }

    

  
  #stacks_in_5218 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 768px) {
  #stacks_in_5218 .quote_text {
    font-size: 24px;
  }

  
  #stacks_in_5218 .floated_content {
    margin-left: 20px;
    margin-bottom: 20px;
  }
  

  


  

}




@media only screen and (max-width: 480px) {
  #stacks_in_5218 .quote_text {
    font-size: 18px;
  }

    

  
  #stacks_in_5218 .floated_content {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  

  


  
    #stacks_in_5218 .floated_content {
      float: none;
      margin-left: 0px;
      margin-right: 0px;
    }

    #stacks_in_5218 .pull_quote { 
      max-width: 100%;
    }
  

}


#stacks_out_1291 {
	margin-left:0;
}

#stacks_in_1292 {
	font-size: 97%;
}
