@charset "UTF-8";

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

Copyright (c) 2013 Daniel Eden

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

Copyright (c) 2014 Christian Pucci

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes animatedJackBackgroundtoTop{from{background-position:0 0}to{background-position:0% -500%}}@keyframes animatedJackBackgroundtoTop{from{background-position:0 0}to{background-position:0% -500%}}@-webkit-keyframes animatedJackBackgroundtoBottom{from{background-position:0 0}to{background-position:0% 500%}}@keyframes animatedJackBackgroundtoBottom{from{background-position:0 0}to{background-position:0% 500%}}@-webkit-keyframes animatedJackBackgroundtoRight{from{background-position:0 0}to{background-position:500% 0%}}@keyframes animatedJackBackgroundtoRight{from{background-position:0 0}to{background-position:500% 0%}}@-webkit-keyframes animatedJackBackgroundtoLeft{from{background-position:0 0}to{background-position:-500% 0%}}@keyframes animatedJackBackgroundtoLeft{from{background-position:0 0}to{background-position:-500% 0%}}@-webkit-keyframes animatedJackBackgroundtoBottomRight{from{background-position:0 0}to{background-position:500% 500%}}@keyframes animatedJackBackgroundtoBottomRight{from{background-position:0 0}to{background-position:500% 500%}}@-webkit-keyframes animatedJackBackgroundtoTopRight{from{background-position:0 0}to{background-position:500% -500%}}@keyframes animatedJackBackgroundtoTopRight{from{background-position:0 0}to{background-position:500% -500%}}@-webkit-keyframes animatedJackBackgroundtoTopLeft{from{background-position:0 0}to{background-position:-500% -500%}}@keyframes animatedJackBackgroundtoTopLeft{from{background-position:0 0}to{background-position:-500% -500%}}@-webkit-keyframes animatedJackBackgroundtoBottomLeft{from{background-position:0 0}to{background-position:-500% 500%}}@keyframes animatedJackBackgroundtoBottomLeft{from{background-position:0 0}to{background-position:-500% 500%}}.com_joeworkman_stacks_jack4_stack > .jack{margin:0;padding:0;border:0;background:none;background-color:transparent;position:relative;display:block;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.com_joeworkman_stacks_jack4_stack > .jack.align-center{margin-left:auto !important;margin-right:auto !important}.com_joeworkman_stacks_jack4_stack > .jack.align-right{margin-left:auto !important}.com_joeworkman_stacks_jack4_stack > .jack.align-left{margin-right:auto !important}.com_joeworkman_stacks_jack4_stack > .jack.touch-device{background-attachment:scroll !important}.com_joeworkman_stacks_jack4_stack > .jack.bg-image{background-size:auto}.com_joeworkman_stacks_jack4_stack > .jack.bg-image.glass{z-index:1}.com_joeworkman_stacks_jack4_stack > .jack.bg-image.glass::after{background-size:auto;content:"";top:0;left:0;bottom:0;right:0;height:100%;position:absolute;z-index:-1}.com_joeworkman_stacks_jack4_stack > .jack.bg-image.bg-size-cover,.com_joeworkman_stacks_jack4_stack > .jack.bg-image.bg-size-cover.glass::after{background-size:cover}.com_joeworkman_stacks_jack4_stack > .jack.bg-image.bg-size-contain,.com_joeworkman_stacks_jack4_stack > .jack.bg-image.bg-size-contain.glass::after{background-size:contain}.com_joeworkman_stacks_jack4_stack > .jack.bg-image.bg-size-fill,.com_joeworkman_stacks_jack4_stack > .jack.bg-image.bg-size-fill.glass::after{background-size:100% 100%}.com_joeworkman_stacks_jack4_stack > .jack.corner-shadow::before,.com_joeworkman_stacks_jack4_stack > .jack.corner-shadow::after,.com_joeworkman_stacks_jack4_stack > .jack.peek-shadow::before,.com_joeworkman_stacks_jack4_stack > .jack.peek-shadow::after{z-index:-1;position:absolute;content:"";height:auto;background-color:transparent}.com_joeworkman_stacks_jack4_stack > .jack.corner-shadow::before,.com_joeworkman_stacks_jack4_stack > .jack.corner-shadow::after{width:50%;top:50%}.com_joeworkman_stacks_jack4_stack > .jack.scroll-x{overflow-x:auto !important;white-space:nowrap;-webkit-overflow-scrolling:touch}.com_joeworkman_stacks_jack4_stack > .jack.scroll-x > .stacks_out{display:inline-block;white-space:nowrap}.com_joeworkman_stacks_jack4_stack > .jack.scroll-y{overflow-y:auto !important;-webkit-overflow-scrolling:touch}
#stacks_in_30460{padding-left:0px;padding-right:0px;}#stacks_in_30460 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_30460 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30460 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30460 > .jack.width-static{width:500px}#stacks_in_30460 > .jack.width-flexible{width:100%}#stacks_in_30460 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30460 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30460 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30460 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30460 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30460 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30460 > .jack::after{border-radius:0px}#stacks_in_30460 > .jack.border-detailed-radius,#stacks_in_30460 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30460 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30460 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30460 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30460 > .jack.bg-image:not(.glass){background-image:url(../ueberblick_buecher_files/bgImage-30460.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30460 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30460 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30460 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_30460 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30460 > .jack.bg-image:not(.glass){}#stacks_in_30460 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30460 > .jack.bg-image.glass.after,#stacks_in_30460 > .glass.jack.bg-image::after{opacity:0.80;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../ueberblick_buecher_files/bgImage-30460.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30460 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30460 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30460 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30460 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30460 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30460 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30460 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30460 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_30460 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30460 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30460 > .jack.bg-image.glass.after,#stacks_in_30460 > .glass.jack.bg-image::after{}#stacks_in_30460 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30460 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30460 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_30460 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_30460 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_30460 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_30460 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_30460 > .jack.peek-shadow::before,#stacks_in_30460 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_30460 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30460 > .jack{overflow:hidden;}#stacks_in_30460 > .jack.height-static{height:60px}#stacks_in_30460 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_30460 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_31792{}#stacks_in_31792 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31792 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31792 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31792 > .jack.width-static{width:500px}#stacks_in_31792 > .jack.width-flexible{width:100%}#stacks_in_31792 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31792 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31792 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31792 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31792 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31792 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31792 > .jack::after{border-radius:15px}#stacks_in_31792 > .jack.border-detailed-radius,#stacks_in_31792 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31792 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31792 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31792 > .jack.bg-gradient{background-color:#A1EBA6}#stacks_in_31792 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31792 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31792 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31792 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31792 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31792 > .jack.bg-image:not(.glass){}#stacks_in_31792 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31792 > .jack.bg-image.glass.after,#stacks_in_31792 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31792 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31792 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31792 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31792 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31792 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31792 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31792 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31792 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31792 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31792 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31792 > .jack.bg-image.glass.after,#stacks_in_31792 > .glass.jack.bg-image::after{}#stacks_in_31792 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31792 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31792 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31792 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31792 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31792 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31792 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31792 > .jack.peek-shadow::before,#stacks_in_31792 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31792 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31792 > .jack{overflow:hidden;}#stacks_in_31792 > .jack.height-static{height:100px}#stacks_in_31792 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_31792 {
	margin: 20px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31794Calligrapher{			font-size: 120% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31794Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31794Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31794Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31794Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31794Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31794Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31794Calligrapher h6, .stacks_in_31794Calligrapher h5, .stacks_in_31794Calligrapher h4, .stacks_in_31794Calligrapher h3, .stacks_in_31794Calligrapher h2, .stacks_in_31794Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31794Calligrapher, .stacks_in_31794Calligrapher h1, .stacks_in_31794Calligrapher h2, .stacks_in_31794Calligrapher h3, .stacks_in_31794Calligrapher h4, .stacks_in_31794Calligrapher h5, .stacks_in_31794Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31794Calligrapher, .stacks_in_31794Calligrapher h1, .stacks_in_31794Calligrapher h2, .stacks_in_31794Calligrapher h3, .stacks_in_31794Calligrapher h4, .stacks_in_31794Calligrapher h5, .stacks_in_31794Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31794targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31794Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31794Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31794Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31794Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_31796x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31796x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31796x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31796 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_31798 {
	font-weight: lighter;
}
#stacks_in_31793{}#stacks_in_31793 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31793 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31793 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31793 > .jack.width-static{width:500px}#stacks_in_31793 > .jack.width-flexible{width:100%}#stacks_in_31793 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31793 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31793 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31793 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31793 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31793 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31793 > .jack::after{border-radius:15px}#stacks_in_31793 > .jack.border-detailed-radius,#stacks_in_31793 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31793 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31793 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31793 > .jack.bg-gradient{background-color:#A1EBA6}#stacks_in_31793 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31793 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31793 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31793 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31793 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31793 > .jack.bg-image:not(.glass){}#stacks_in_31793 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31793 > .jack.bg-image.glass.after,#stacks_in_31793 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31793 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31793 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31793 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31793 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31793 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31793 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31793 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31793 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31793 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31793 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31793 > .jack.bg-image.glass.after,#stacks_in_31793 > .glass.jack.bg-image::after{}#stacks_in_31793 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31793 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31793 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31793 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31793 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31793 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31793 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31793 > .jack.peek-shadow::before,#stacks_in_31793 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31793 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31793 > .jack{overflow:hidden;}#stacks_in_31793 > .jack.height-static{height:100px}#stacks_in_31793 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_31793 {
	margin: 0px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31799Calligrapher{			font-size: 75% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31799Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31799Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31799Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31799Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31799Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31799Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31799Calligrapher h6, .stacks_in_31799Calligrapher h5, .stacks_in_31799Calligrapher h4, .stacks_in_31799Calligrapher h3, .stacks_in_31799Calligrapher h2, .stacks_in_31799Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31799Calligrapher, .stacks_in_31799Calligrapher h1, .stacks_in_31799Calligrapher h2, .stacks_in_31799Calligrapher h3, .stacks_in_31799Calligrapher h4, .stacks_in_31799Calligrapher h5, .stacks_in_31799Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31799Calligrapher, .stacks_in_31799Calligrapher h1, .stacks_in_31799Calligrapher h2, .stacks_in_31799Calligrapher h3, .stacks_in_31799Calligrapher h4, .stacks_in_31799Calligrapher h5, .stacks_in_31799Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31799targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31799Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31799Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31799Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31799Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_31803x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31803x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31803x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31803 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_31804 {
	font-weight: lighter;
}
#stacks_in_30464{padding-left:0px;padding-right:0px;}#stacks_in_30464 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_30464 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30464 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30464 > .jack.width-static{width:500px}#stacks_in_30464 > .jack.width-flexible{width:100%}#stacks_in_30464 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30464 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30464 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30464 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30464 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30464 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30464 > .jack::after{border-radius:0px}#stacks_in_30464 > .jack.border-detailed-radius,#stacks_in_30464 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30464 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30464 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30464 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30464 > .jack.bg-image:not(.glass){background-image:url(../ueberblick_buecher_files/bgImage-30464.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30464 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30464 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30464 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_30464 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30464 > .jack.bg-image:not(.glass){}#stacks_in_30464 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30464 > .jack.bg-image.glass.after,#stacks_in_30464 > .glass.jack.bg-image::after{opacity:0.80;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../ueberblick_buecher_files/bgImage-30464.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30464 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30464 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30464 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30464 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30464 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30464 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30464 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30464 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_30464 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30464 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30464 > .jack.bg-image.glass.after,#stacks_in_30464 > .glass.jack.bg-image::after{}#stacks_in_30464 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30464 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30464 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_30464 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_30464 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_30464 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_30464 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_30464 > .jack.peek-shadow::before,#stacks_in_30464 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_30464 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30464 > .jack{overflow:hidden;}#stacks_in_30464 > .jack.height-static{height:15px}#stacks_in_30464 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32458{padding-left:0px;padding-right:0px;}#stacks_in_32458 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32458 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32458 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32458 > .jack.width-static{width:500px}#stacks_in_32458 > .jack.width-flexible{width:100%}#stacks_in_32458 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32458 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32458 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32458 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32458 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32458 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32458 > .jack::after{border-radius:0px}#stacks_in_32458 > .jack.border-detailed-radius,#stacks_in_32458 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_32458 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32458 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32458 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_32458 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32458 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32458 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32458 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32458 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32458 > .jack.bg-image:not(.glass){}#stacks_in_32458 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32458 > .jack.bg-image.glass.after,#stacks_in_32458 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32458 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32458 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32458 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32458 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32458 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32458 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32458 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32458 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32458 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32458 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32458 > .jack.bg-image.glass.after,#stacks_in_32458 > .glass.jack.bg-image::after{}#stacks_in_32458 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32458 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32458 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32458 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32458 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32458 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32458 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32458 > .jack.peek-shadow::before,#stacks_in_32458 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32458 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32458 > .jack{overflow:visible;}#stacks_in_32458 > .jack.height-static{height:100px}#stacks_in_32458 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32052{}#stacks_in_32052 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32052 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32052 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32052 > .jack.width-static{width:500px}#stacks_in_32052 > .jack.width-flexible{width:100%}#stacks_in_32052 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32052 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32052 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32052 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32052 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32052 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32052 > .jack::after{border-radius:15px}#stacks_in_32052 > .jack.border-detailed-radius,#stacks_in_32052 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_32052 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32052 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32052 > .jack.bg-gradient{background-color:#5CA8C4}#stacks_in_32052 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32052 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32052 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32052 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32052 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32052 > .jack.bg-image:not(.glass){}#stacks_in_32052 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32052 > .jack.bg-image.glass.after,#stacks_in_32052 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32052 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32052 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32052 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32052 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32052 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32052 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32052 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32052 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32052 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32052 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32052 > .jack.bg-image.glass.after,#stacks_in_32052 > .glass.jack.bg-image::after{}#stacks_in_32052 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32052 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32052 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_32052 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32052 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32052 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32052 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32052 > .jack.peek-shadow::before,#stacks_in_32052 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32052 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32052 > .jack{overflow:hidden;}#stacks_in_32052 > .jack.height-static{height:100px}#stacks_in_32052 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_32052 {
	margin: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32054Calligrapher{			font-size: 110% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32054Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32054Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32054Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32054Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32054Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32054Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32054Calligrapher h6, .stacks_in_32054Calligrapher h5, .stacks_in_32054Calligrapher h4, .stacks_in_32054Calligrapher h3, .stacks_in_32054Calligrapher h2, .stacks_in_32054Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32054Calligrapher, .stacks_in_32054Calligrapher h1, .stacks_in_32054Calligrapher h2, .stacks_in_32054Calligrapher h3, .stacks_in_32054Calligrapher h4, .stacks_in_32054Calligrapher h5, .stacks_in_32054Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32054Calligrapher, .stacks_in_32054Calligrapher h1, .stacks_in_32054Calligrapher h2, .stacks_in_32054Calligrapher h3, .stacks_in_32054Calligrapher h4, .stacks_in_32054Calligrapher h5, .stacks_in_32054Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32054targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32054Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32054Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32054Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32054Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_32055x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32055x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_32055x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32055 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_32056 {
	font-weight: lighter;
}
#stacks_in_32249{padding-left:0px;padding-right:0px;}#stacks_in_32249 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32249 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32249 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32249 > .jack.width-static{width:500px}#stacks_in_32249 > .jack.width-flexible{width:100%}#stacks_in_32249 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32249 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32249 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32249 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32249 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32249 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32249 > .jack::after{border-radius:0px}#stacks_in_32249 > .jack.border-detailed-radius,#stacks_in_32249 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_32249 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32249 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32249 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_32249 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32249 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32249 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32249 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32249 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32249 > .jack.bg-image:not(.glass){}#stacks_in_32249 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32249 > .jack.bg-image.glass.after,#stacks_in_32249 > .glass.jack.bg-image::after{opacity:0.20;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32249 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32249 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32249 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32249 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32249 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32249 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32249 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32249 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32249 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32249 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32249 > .jack.bg-image.glass.after,#stacks_in_32249 > .glass.jack.bg-image::after{}#stacks_in_32249 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32249 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32249 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32249 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32249 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32249 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32249 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32249 > .jack.peek-shadow::before,#stacks_in_32249 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32249 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32249 > .jack{overflow:visible;}#stacks_in_32249 > .jack.height-static{height:100px}#stacks_in_32249 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32241Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32241Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32241Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32241Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32241Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32241Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32241Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32241Calligrapher h6, .stacks_in_32241Calligrapher h5, .stacks_in_32241Calligrapher h4, .stacks_in_32241Calligrapher h3, .stacks_in_32241Calligrapher h2, .stacks_in_32241Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32241Calligrapher, .stacks_in_32241Calligrapher h1, .stacks_in_32241Calligrapher h2, .stacks_in_32241Calligrapher h3, .stacks_in_32241Calligrapher h4, .stacks_in_32241Calligrapher h5, .stacks_in_32241Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32241Calligrapher, .stacks_in_32241Calligrapher h1, .stacks_in_32241Calligrapher h2, .stacks_in_32241Calligrapher h3, .stacks_in_32241Calligrapher h4, .stacks_in_32241Calligrapher h5, .stacks_in_32241Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32241targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32241Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32241Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32241Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32241Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32241 {
	margin: 0px 15px 10px 15px;
}

#stacks_in_32243 {
	margin: 0px 40px 0px 40px;
	padding: 0px 5px 0px 5px;
}

#stacks_in_32245 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32261Calligrapher{			font-size: 100% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32261Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32261Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32261Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32261Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32261Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32261Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32261Calligrapher h6, .stacks_in_32261Calligrapher h5, .stacks_in_32261Calligrapher h4, .stacks_in_32261Calligrapher h3, .stacks_in_32261Calligrapher h2, .stacks_in_32261Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32261Calligrapher, .stacks_in_32261Calligrapher h1, .stacks_in_32261Calligrapher h2, .stacks_in_32261Calligrapher h3, .stacks_in_32261Calligrapher h4, .stacks_in_32261Calligrapher h5, .stacks_in_32261Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32261Calligrapher, .stacks_in_32261Calligrapher h1, .stacks_in_32261Calligrapher h2, .stacks_in_32261Calligrapher h3, .stacks_in_32261Calligrapher h4, .stacks_in_32261Calligrapher h5, .stacks_in_32261Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32261targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32261Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32261Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32261Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32261Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32261 {
	margin: 0px 15px 10px 15px;
}

/* @group My Group */
#stacks_in_32154 .wrapper{position: relative;padding: 10px;}
#stacks_in_32154 h2.acc_trigger {
	border: px solid ;
	font-size: 18px;
	background: #4A7588;
	color: #FFFFFF;
	padding: 5px;
	margin: 5px 0 5px;
	cursor: pointer;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0 0 3px #000000;
	}
#stacks_in_32154 h2.acc_trigger:hover, #stacks_in_32154 h2.active{
	border: px  solid ;
	font-size: 18px;
	background: #5E70A7;
	color: #FFFFFF;
	padding: 5px;
	}

#stacks_in_32154 h2.acc_trigger a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	
}
#stacks_in_32154 h2.acc_trigger a:hover, #stacks_in_32154 h2.active a {
	color: #FFFFFF;
}
#stacks_in_32154 h2.active {}
#stacks_in_32154 .acc_container {
	margin: 10px 0; padding: 0;
	overflow: hidden;
	clear: both;
	background-color: #FFFFFF;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	box-shadow: 0 0 3px #000000;
	font-size: 1.1em;}
#stacks_in_32154 .acc_container .block {
	padding: 16px;
}
/* @end */
#stacks_in_32154 {
	margin: 0px 15px 0px 15px;
}
#stacks_in_32303{padding-left:0px;padding-right:0px;}#stacks_in_32303 > .jack{margin:0px;padding:10px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32303 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32303 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32303 > .jack.width-static{width:500px}#stacks_in_32303 > .jack.width-flexible{width:100%}#stacks_in_32303 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32303 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32303 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32303 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32303 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32303 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32303 > .jack::after{border-radius:15px}#stacks_in_32303 > .jack.border-detailed-radius,#stacks_in_32303 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_32303 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32303 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32303 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32303 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32303 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32303 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32303 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32303 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32303 > .jack.bg-image:not(.glass){}#stacks_in_32303 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32303 > .jack.bg-image.glass.after,#stacks_in_32303 > .glass.jack.bg-image::after{opacity:0.25;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32303 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32303 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32303 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32303 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32303 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32303 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32303 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32303 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32303 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32303 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32303 > .jack.bg-image.glass.after,#stacks_in_32303 > .glass.jack.bg-image::after{}#stacks_in_32303 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32303 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32303 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32303 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32303 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32303 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32303 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32303 > .jack.peek-shadow::before,#stacks_in_32303 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32303 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32303 > .jack{overflow:hidden;}#stacks_in_32303 > .jack.height-static{height:100px}#stacks_in_32303 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_32304 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_32304 {
		display: none !important;
	}
}
#stacks_in_32305 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_32305 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_32305 #jwresp_col2_stacks_in_32305{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_32305 #jwresp_col1_stacks_in_32305,#stacks_in_32305 #jwresp_col2_stacks_in_32305{width:100%;float:none;display:block}#stacks_in_32305 #jwresp_col1_stacks_in_32305{margin-bottom:15px}}
#stacks_in_32306_2 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;}#stacks_in_32306_2 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_32306_2 .fluid-image.unlimited img{width:100% !important}#stacks_in_32306_2 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_32306_2 .fluid-image.align-left img{float:left}#stacks_in_32306_2 .fluid-image.align-right img{float:right}
/* Start dooHeader X stack CSS code */.stacks_in_32803x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32803x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32803x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32803 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_32804 {
	font-weight: lighter;
}

#stacks_in_32311 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_32313 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_32315 {
	margin:  3px;
	padding:  5px;
}
#stacks_in_32317{padding-left:0px;padding-right:0px;}#stacks_in_32317 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32317 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32317 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32317 > .jack.width-static{width:500px}#stacks_in_32317 > .jack.width-flexible{width:100%}#stacks_in_32317 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32317 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32317 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32317 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32317 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32317 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32317 > .jack::after{border-radius:0px}#stacks_in_32317 > .jack.border-detailed-radius,#stacks_in_32317 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_32317 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32317 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32317 > .jack.bg-gradient{background-color:#B1FFB4}#stacks_in_32317 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32317 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32317 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32317 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32317 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32317 > .jack.bg-image:not(.glass){}#stacks_in_32317 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32317 > .jack.bg-image.glass.after,#stacks_in_32317 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32317 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32317 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32317 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32317 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32317 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32317 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32317 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32317 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32317 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32317 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32317 > .jack.bg-image.glass.after,#stacks_in_32317 > .glass.jack.bg-image::after{}#stacks_in_32317 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32317 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32317 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32317 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32317 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32317 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32317 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32317 > .jack.peek-shadow::before,#stacks_in_32317 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32317 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32317 > .jack{overflow:hidden;}#stacks_in_32317 > .jack.height-static{height:100px}#stacks_in_32317 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_32321 {
	line-height: 2em;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_32327 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_32327 .borderbuttonthing, #stacks_in_32327 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_32327 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_32327 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_33402{}#stacks_in_33402 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33402 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33402 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33402 > .jack.width-static{width:500px}#stacks_in_33402 > .jack.width-flexible{width:100%}#stacks_in_33402 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33402 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33402 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33402 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33402 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33402 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33402 > .jack::after{border-radius:15px}#stacks_in_33402 > .jack.border-detailed-radius,#stacks_in_33402 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33402 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33402 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33402 > .jack.bg-gradient{background-color:#E1F4F5}#stacks_in_33402 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33402 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33402 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33402 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33402 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33402 > .jack.bg-image:not(.glass){}#stacks_in_33402 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33402 > .jack.bg-image.glass.after,#stacks_in_33402 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33402 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33402 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33402 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33402 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33402 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33402 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33402 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33402 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33402 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33402 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33402 > .jack.bg-image.glass.after,#stacks_in_33402 > .glass.jack.bg-image::after{}#stacks_in_33402 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33402 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33402 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_33402 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33402 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33402 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33402 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33402 > .jack.peek-shadow::before,#stacks_in_33402 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33402 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33402 > .jack{overflow:hidden;}#stacks_in_33402 > .jack.height-static{height:100px}#stacks_in_33402 > .jack.height-minmax{min-height:100px;max-height:800px}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_33403 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_33403 .borderbuttonthing, #stacks_in_33403 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #003367;
	color: #003367;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_33403 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_33403 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_32329{padding-left:0px;padding-right:0px;}#stacks_in_32329 > .jack{margin:0px;padding:10px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32329 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32329 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32329 > .jack.width-static{width:500px}#stacks_in_32329 > .jack.width-flexible{width:100%}#stacks_in_32329 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32329 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32329 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32329 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32329 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32329 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32329 > .jack::after{border-radius:15px}#stacks_in_32329 > .jack.border-detailed-radius,#stacks_in_32329 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_32329 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32329 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32329 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32329 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32329 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32329 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32329 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32329 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32329 > .jack.bg-image:not(.glass){}#stacks_in_32329 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32329 > .jack.bg-image.glass.after,#stacks_in_32329 > .glass.jack.bg-image::after{opacity:0.25;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32329 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32329 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32329 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32329 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32329 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32329 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32329 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32329 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32329 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32329 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32329 > .jack.bg-image.glass.after,#stacks_in_32329 > .glass.jack.bg-image::after{}#stacks_in_32329 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32329 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32329 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32329 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32329 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32329 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32329 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32329 > .jack.peek-shadow::before,#stacks_in_32329 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32329 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32329 > .jack{overflow:hidden;}#stacks_in_32329 > .jack.height-static{height:100px}#stacks_in_32329 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_32330 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_32330 {
		display: none !important;
	}
}
#stacks_in_32331 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_32331 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_32331 #jwresp_col2_stacks_in_32331{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_32331 #jwresp_col1_stacks_in_32331,#stacks_in_32331 #jwresp_col2_stacks_in_32331{width:100%;float:none;display:block}#stacks_in_32331 #jwresp_col1_stacks_in_32331{margin-bottom:15px}}
#stacks_in_32332 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;}#stacks_in_32332 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_32332 .fluid-image.unlimited img{width:100% !important}#stacks_in_32332 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_32332 .fluid-image.align-left img{float:left}#stacks_in_32332 .fluid-image.align-right img{float:right}
/* Start dooHeader X stack CSS code */.stacks_in_32807x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32807x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32807x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32807 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_32808 {
	font-weight: lighter;
}

#stacks_in_32338 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_32340 {
	margin:  3px;
	padding:  5px;
}
#stacks_in_32342{padding-left:0px;padding-right:0px;}#stacks_in_32342 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32342 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32342 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32342 > .jack.width-static{width:500px}#stacks_in_32342 > .jack.width-flexible{width:100%}#stacks_in_32342 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32342 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32342 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32342 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32342 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32342 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32342 > .jack::after{border-radius:0px}#stacks_in_32342 > .jack.border-detailed-radius,#stacks_in_32342 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_32342 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32342 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32342 > .jack.bg-gradient{background-color:#FFCCB8}#stacks_in_32342 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32342 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32342 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32342 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32342 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32342 > .jack.bg-image:not(.glass){}#stacks_in_32342 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32342 > .jack.bg-image.glass.after,#stacks_in_32342 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32342 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32342 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32342 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32342 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32342 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32342 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32342 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32342 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32342 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32342 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32342 > .jack.bg-image.glass.after,#stacks_in_32342 > .glass.jack.bg-image::after{}#stacks_in_32342 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32342 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32342 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32342 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32342 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32342 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32342 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32342 > .jack.peek-shadow::before,#stacks_in_32342 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32342 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32342 > .jack{overflow:hidden;}#stacks_in_32342 > .jack.height-static{height:100px}#stacks_in_32342 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_32346 {
	line-height: 2em;
}
#stacks_in_32194 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999;}#stacks_in_32194 .fluid-image img:hover{-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999}#stacks_in_32194 .fluid-image.unlimited img{width:100% !important}#stacks_in_32194 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_32194 .fluid-image.align-left img{float:left}#stacks_in_32194 .fluid-image.align-right img{float:right}

#stacks_in_32194 {
	margin: 15px 0px 0px 0px;
}
#stacks_in_32197{padding-left:0px;padding-right:0px;}#stacks_in_32197 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32197 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32197 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32197 > .jack.width-static{width:500px}#stacks_in_32197 > .jack.width-flexible{width:100%}#stacks_in_32197 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32197 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32197 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32197 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32197 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32197 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32197 > .jack::after{border-radius:0px}#stacks_in_32197 > .jack.border-detailed-radius,#stacks_in_32197 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_32197 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32197 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32197 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32197 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32197 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32197 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32197 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32197 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32197 > .jack.bg-image:not(.glass){}#stacks_in_32197 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32197 > .jack.bg-image.glass.after,#stacks_in_32197 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32197 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32197 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32197 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32197 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32197 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32197 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32197 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32197 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32197 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32197 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32197 > .jack.bg-image.glass.after,#stacks_in_32197 > .glass.jack.bg-image::after{}#stacks_in_32197 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32197 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32197 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32197 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32197 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32197 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32197 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32197 > .jack.peek-shadow::before,#stacks_in_32197 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32197 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32197 > .jack{overflow:hidden;}#stacks_in_32197 > .jack.height-static{height:100px}#stacks_in_32197 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32166Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32166Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32166Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32166Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32166Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32166Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32166Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32166Calligrapher h6, .stacks_in_32166Calligrapher h5, .stacks_in_32166Calligrapher h4, .stacks_in_32166Calligrapher h3, .stacks_in_32166Calligrapher h2, .stacks_in_32166Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32166Calligrapher, .stacks_in_32166Calligrapher h1, .stacks_in_32166Calligrapher h2, .stacks_in_32166Calligrapher h3, .stacks_in_32166Calligrapher h4, .stacks_in_32166Calligrapher h5, .stacks_in_32166Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32166Calligrapher, .stacks_in_32166Calligrapher h1, .stacks_in_32166Calligrapher h2, .stacks_in_32166Calligrapher h3, .stacks_in_32166Calligrapher h4, .stacks_in_32166Calligrapher h5, .stacks_in_32166Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32166targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32166Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32166Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32166Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32166Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32166 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_32198 a:before, .link_effect1stacks_in_32198 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_32198 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_32198 a:hover:before, .link_effect1stacks_in_32198 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_32198 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_32198 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_32198 .link_effect2stacks_in_32198 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_32198 .link_effect2stacks_in_32198 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_32198 .link_effect3stacks_in_32198 {
  	text-decoration: none;
}

#stacks_in_32198 .link_effect3stacks_in_32198 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_32198 .link_effect3stacks_in_32198 a:hover,
#stacks_in_32198 .link_effect3stacks_in_32198 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_32198 .link_effect4stacks_in_32198 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32198 .link_effect4stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect4stacks_in_32198 a::before,
#stacks_in_32198 .link_effect%stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32198 .link_effect4stacks_in_32198 {
}

#stacks_in_32198 .link_effect4stacks_in_32198 a {
	font-weight:bold !important;;
}

#stacks_in_32198 .link_effect4stacks_in_32198 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32198 .link_effect4stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect4stacks_in_32198 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_32198 .link_effect5stacks_in_32198 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32198 .link_effect5stacks_in_32198 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect5stacks_in_32198 a::before,
#stacks_in_32198 .link_effect5stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32198 .link_effect5stacks_in_32198 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_32198 .link_effect5stacks_in_32198 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_32198 .link_effect5stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect5stacks_in_32198 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_32198 .link_effect6stacks_in_32198 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32198 .link_effect6stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect6stacks_in_32198 a::before,
#stacks_in_32198 .link_effect6stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32198 .link_effect6stacks_in_32198 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32198 .link_effect6stacks_in_32198 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_32198 .link_effect6stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect6stacks_in_32198 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_32198 .link_effect7stacks_in_32198 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32198 .link_effect7stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect7stacks_in_32198 a::before,
#stacks_in_32198 .link_effect7stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32198 .link_effect7stacks_in_32198 {
	position: relative;
}

#stacks_in_32198 .link_effect7stacks_in_32198 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_32198 .link_effect7stacks_in_32198 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32198 .link_effect7stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect7stacks_in_32198 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_32198 .link_effect8stacks_in_32198 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32198 .link_effect8stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect8stacks_in_32198 a::before,
#stacks_in_32198 .link_effect8stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_32198 .link_effect8stacks_in_32198 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_32198 .link_effect8stacks_in_32198 a:hover,
#stacks_in_32198 .link_effect8stacks_in_32198 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32198 .link_effect8stacks_in_32198 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_32198 .link_effect8stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect8stacks_in_32198 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_32198 .link_effect9stacks_in_32198 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32198 .link_effect9stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect9stacks_in_32198 a::before,
#stacks_in_32198 .link_effect9stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32198 .link_effect9stacks_in_32198 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_32198 .link_effect9stacks_in_32198 a:hover,
#stacks_in_32198 .link_effect9stacks_in_32198 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32198 .link_effect9stacks_in_32198 a::before,
#stacks_in_32198 .link_effect9stacks_in_32198 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_32198 .link_effect9stacks_in_32198 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_32198 .link_effect9stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect9stacks_in_32198 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_32198 .link_effect9stacks_in_32198 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_32198 .link_effect10stacks_in_32198 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32198 .link_effect10stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect10stacks_in_32198 a::before,
#stacks_in_32198 .link_effect10stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32198 .link_effect10stacks_in_32198 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_32198 .link_effect10stacks_in_32198 a:hover,
#stacks_in_32198 .link_effect10stacks_in_32198 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32198 .link_effect10stacks_in_32198 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32198 .link_effect10stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect10stacks_in_32198 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_32198 .link_effect11stacks_in_32198 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32198 .link_effect11stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect11stacks_in_32198 a::before,
#stacks_in_32198 .link_effect11stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32198 .link_effect11stacks_in_32198 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_32198 .link_effect11stacks_in_32198 a:hover,
#stacks_in_32198 .link_effect11stacks_in_32198 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32198 .link_effect11stacks_in_32198 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_32198 .link_effect11stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect11stacks_in_32198 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_32198 .link_effect12stacks_in_32198 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32198 .link_effect12stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect12stacks_in_32198 a::before,
#stacks_in_32198 .link_effect12stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32198 .link_effect12stacks_in_32198 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32198 .link_effect12stacks_in_32198 a:hover,
#stacks_in_32198 .link_effect12stacks_in_32198 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_32198 .link_effect12stacks_in_32198 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_32198 .link_effect12stacks_in_32198 a,
#stacks_in_32198 .link_effect12stacks_in_32198 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_32198 .link_effect12stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect12stacks_in_32198 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_32198 .link_effect13stacks_in_32198 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32198 .link_effect13stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect13stacks_in_32198 a::before,
#stacks_in_32198 .link_effect13stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32198 .link_effect13stacks_in_32198 {
}

#stacks_in_32198 .link_effect13stacks_in_32198 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_32198 .link_effect13stacks_in_32198 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_32198 .link_effect13stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect13stacks_in_32198 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_32198 .link_effect14stacks_in_32198 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32198 .link_effect14stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect14stacks_in_32198 a::before,
#stacks_in_32198 .link_effect14stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32198 .link_effect14stacks_in_32198 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32198 .link_effect14stacks_in_32198 a:hover,
#stacks_in_32198 .link_effect14stacks_in_32198 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_32198 .link_effect14stacks_in_32198 a::before,
#stacks_in_32198 .link_effect14stacks_in_32198 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_32198 .link_effect14stacks_in_32198 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_32198 .link_effect14stacks_in_32198 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32198 .link_effect14stacks_in_32198 a:hover::after,
#stacks_in_32198 .link_effect14stacks_in_32198 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_32198 .link_effect15stacks_in_32198 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32198 .link_effect15stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect15stacks_in_32198 a::before,
#stacks_in_32198 .link_effect15stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32198 .link_effect15stacks_in_32198 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32198 .link_effect15stacks_in_32198 a::before,
#stacks_in_32198 .link_effect15stacks_in_32198 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_32198 .link_effect15stacks_in_32198 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_32198 .link_effect15stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect15stacks_in_32198 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_32198 .link_effect15stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect15stacks_in_32198 a:focus::before,
#stacks_in_32198 .link_effect15stacks_in_32198 a:hover::after,
#stacks_in_32198 .link_effect15stacks_in_32198 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32198 .link_effect15stacks_in_32198 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_32198 .link_effect15stacks_in_32198 a:hover::after,
#stacks_in_32198 .link_effect15stacks_in_32198 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_32198 .link_effect16stacks_in_32198 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32198 .link_effect16stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect16stacks_in_32198 a::before,
#stacks_in_32198 .link_effect16stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32198 .link_effect16stacks_in_32198 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_32198 .link_effect16stacks_in_32198 a:hover {
	color: #d04c3f;
}

#stacks_in_32198 .link_effect16stacks_in_32198 a::before,
#stacks_in_32198 .link_effect16stacks_in_32198 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_32198 .link_effect16stacks_in_32198 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_32198 .link_effect16stacks_in_32198 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_32198 .link_effect16stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect16stacks_in_32198 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_32198 .link_effect17stacks_in_32198 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_32198 .link_effect17stacks_in_32198 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_32198 .link_effect17stacks_in_32198 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_32198 .link_effect18stacks_in_32198 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32198 .link_effect18stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect18stacks_in_32198 a::before,
#stacks_in_32198 .link_effect18stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32198 .link_effect18stacks_in_32198 {
}

#stacks_in_32198 .link_effect18stacks_in_32198 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_32198 .link_effect18stacks_in_32198 a::before,
#stacks_in_32198 .link_effect18stacks_in_32198 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32198 .link_effect18stacks_in_32198 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32198 .link_effect18stacks_in_32198 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_32198 .link_effect18stacks_in_32198 a:hover,
#stacks_in_32198 .link_effect18stacks_in_32198 a:focus {
	color: #fff;
}

#stacks_in_32198 .link_effect18stacks_in_32198 a:hover::before,
#stacks_in_32198 .link_effect18stacks_in_32198 a:focus::before,
#stacks_in_32198 .link_effect18stacks_in_32198 a:hover::after,
#stacks_in_32198 .link_effect18stacks_in_32198 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_32198 .link_effect19stacks_in_32198 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32198 .link_effect19stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect19stacks_in_32198 a::before,
#stacks_in_32198 .link_effect19stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_32198 a {
}

.link_effect19stacks_in_32198 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_32198 a:hover::after,
.link_effect19stacks_in_32198 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_32198 .link_effect20stacks_in_32198 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32198 .link_effect20stacks_in_32198 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32198 .link_effect20stacks_in_32198 a::before,
#stacks_in_32198 .link_effect20stacks_in_32198 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_32198 a {
}

.link_effect20stacks_in_32198 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_32198 a:hover::after,
.link_effect20stacks_in_32198 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_32199 {
	padding:  20px;
}

#stacks_in_32201 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32167Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32167Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32167Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32167Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32167Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32167Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32167Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32167Calligrapher h6, .stacks_in_32167Calligrapher h5, .stacks_in_32167Calligrapher h4, .stacks_in_32167Calligrapher h3, .stacks_in_32167Calligrapher h2, .stacks_in_32167Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32167Calligrapher, .stacks_in_32167Calligrapher h1, .stacks_in_32167Calligrapher h2, .stacks_in_32167Calligrapher h3, .stacks_in_32167Calligrapher h4, .stacks_in_32167Calligrapher h5, .stacks_in_32167Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32167Calligrapher, .stacks_in_32167Calligrapher h1, .stacks_in_32167Calligrapher h2, .stacks_in_32167Calligrapher h3, .stacks_in_32167Calligrapher h4, .stacks_in_32167Calligrapher h5, .stacks_in_32167Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32167targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32167Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32167Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32167Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32167Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32167 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_32203 {
	padding:  20px;
}

#stacks_in_32205 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_32208 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999;}#stacks_in_32208 .fluid-image img:hover{-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999}#stacks_in_32208 .fluid-image.unlimited img{width:100% !important}#stacks_in_32208 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_32208 .fluid-image.align-left img{float:left}#stacks_in_32208 .fluid-image.align-right img{float:right}

#stacks_in_32208 {
	margin: 15px 0px 0px 0px;
}
#stacks_in_32211{padding-left:0px;padding-right:0px;}#stacks_in_32211 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32211 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32211 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32211 > .jack.width-static{width:500px}#stacks_in_32211 > .jack.width-flexible{width:100%}#stacks_in_32211 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32211 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32211 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32211 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32211 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32211 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32211 > .jack::after{border-radius:0px}#stacks_in_32211 > .jack.border-detailed-radius,#stacks_in_32211 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_32211 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32211 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32211 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32211 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32211 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32211 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32211 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32211 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32211 > .jack.bg-image:not(.glass){}#stacks_in_32211 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32211 > .jack.bg-image.glass.after,#stacks_in_32211 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32211 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32211 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32211 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32211 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32211 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32211 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32211 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32211 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32211 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32211 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32211 > .jack.bg-image.glass.after,#stacks_in_32211 > .glass.jack.bg-image::after{}#stacks_in_32211 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32211 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32211 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32211 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32211 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32211 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32211 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32211 > .jack.peek-shadow::before,#stacks_in_32211 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32211 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32211 > .jack{overflow:hidden;}#stacks_in_32211 > .jack.height-static{height:100px}#stacks_in_32211 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32168Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32168Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32168Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32168Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32168Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32168Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32168Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32168Calligrapher h6, .stacks_in_32168Calligrapher h5, .stacks_in_32168Calligrapher h4, .stacks_in_32168Calligrapher h3, .stacks_in_32168Calligrapher h2, .stacks_in_32168Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32168Calligrapher, .stacks_in_32168Calligrapher h1, .stacks_in_32168Calligrapher h2, .stacks_in_32168Calligrapher h3, .stacks_in_32168Calligrapher h4, .stacks_in_32168Calligrapher h5, .stacks_in_32168Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32168Calligrapher, .stacks_in_32168Calligrapher h1, .stacks_in_32168Calligrapher h2, .stacks_in_32168Calligrapher h3, .stacks_in_32168Calligrapher h4, .stacks_in_32168Calligrapher h5, .stacks_in_32168Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32168targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32168Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32168Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32168Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32168Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32168 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_32212 a:before, .link_effect1stacks_in_32212 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_32212 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_32212 a:hover:before, .link_effect1stacks_in_32212 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_32212 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_32212 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_32212 .link_effect2stacks_in_32212 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_32212 .link_effect2stacks_in_32212 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_32212 .link_effect3stacks_in_32212 {
  	text-decoration: none;
}

#stacks_in_32212 .link_effect3stacks_in_32212 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_32212 .link_effect3stacks_in_32212 a:hover,
#stacks_in_32212 .link_effect3stacks_in_32212 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_32212 .link_effect4stacks_in_32212 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32212 .link_effect4stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect4stacks_in_32212 a::before,
#stacks_in_32212 .link_effect%stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32212 .link_effect4stacks_in_32212 {
}

#stacks_in_32212 .link_effect4stacks_in_32212 a {
	font-weight:bold !important;;
}

#stacks_in_32212 .link_effect4stacks_in_32212 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32212 .link_effect4stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect4stacks_in_32212 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_32212 .link_effect5stacks_in_32212 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32212 .link_effect5stacks_in_32212 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect5stacks_in_32212 a::before,
#stacks_in_32212 .link_effect5stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32212 .link_effect5stacks_in_32212 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_32212 .link_effect5stacks_in_32212 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_32212 .link_effect5stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect5stacks_in_32212 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_32212 .link_effect6stacks_in_32212 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32212 .link_effect6stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect6stacks_in_32212 a::before,
#stacks_in_32212 .link_effect6stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32212 .link_effect6stacks_in_32212 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32212 .link_effect6stacks_in_32212 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_32212 .link_effect6stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect6stacks_in_32212 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_32212 .link_effect7stacks_in_32212 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32212 .link_effect7stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect7stacks_in_32212 a::before,
#stacks_in_32212 .link_effect7stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32212 .link_effect7stacks_in_32212 {
	position: relative;
}

#stacks_in_32212 .link_effect7stacks_in_32212 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_32212 .link_effect7stacks_in_32212 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32212 .link_effect7stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect7stacks_in_32212 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_32212 .link_effect8stacks_in_32212 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32212 .link_effect8stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect8stacks_in_32212 a::before,
#stacks_in_32212 .link_effect8stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_32212 .link_effect8stacks_in_32212 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_32212 .link_effect8stacks_in_32212 a:hover,
#stacks_in_32212 .link_effect8stacks_in_32212 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32212 .link_effect8stacks_in_32212 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_32212 .link_effect8stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect8stacks_in_32212 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_32212 .link_effect9stacks_in_32212 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32212 .link_effect9stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect9stacks_in_32212 a::before,
#stacks_in_32212 .link_effect9stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32212 .link_effect9stacks_in_32212 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_32212 .link_effect9stacks_in_32212 a:hover,
#stacks_in_32212 .link_effect9stacks_in_32212 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32212 .link_effect9stacks_in_32212 a::before,
#stacks_in_32212 .link_effect9stacks_in_32212 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_32212 .link_effect9stacks_in_32212 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_32212 .link_effect9stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect9stacks_in_32212 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_32212 .link_effect9stacks_in_32212 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_32212 .link_effect10stacks_in_32212 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32212 .link_effect10stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect10stacks_in_32212 a::before,
#stacks_in_32212 .link_effect10stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32212 .link_effect10stacks_in_32212 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_32212 .link_effect10stacks_in_32212 a:hover,
#stacks_in_32212 .link_effect10stacks_in_32212 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32212 .link_effect10stacks_in_32212 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32212 .link_effect10stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect10stacks_in_32212 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_32212 .link_effect11stacks_in_32212 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32212 .link_effect11stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect11stacks_in_32212 a::before,
#stacks_in_32212 .link_effect11stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32212 .link_effect11stacks_in_32212 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_32212 .link_effect11stacks_in_32212 a:hover,
#stacks_in_32212 .link_effect11stacks_in_32212 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32212 .link_effect11stacks_in_32212 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_32212 .link_effect11stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect11stacks_in_32212 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_32212 .link_effect12stacks_in_32212 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32212 .link_effect12stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect12stacks_in_32212 a::before,
#stacks_in_32212 .link_effect12stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32212 .link_effect12stacks_in_32212 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32212 .link_effect12stacks_in_32212 a:hover,
#stacks_in_32212 .link_effect12stacks_in_32212 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_32212 .link_effect12stacks_in_32212 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_32212 .link_effect12stacks_in_32212 a,
#stacks_in_32212 .link_effect12stacks_in_32212 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_32212 .link_effect12stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect12stacks_in_32212 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_32212 .link_effect13stacks_in_32212 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32212 .link_effect13stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect13stacks_in_32212 a::before,
#stacks_in_32212 .link_effect13stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32212 .link_effect13stacks_in_32212 {
}

#stacks_in_32212 .link_effect13stacks_in_32212 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_32212 .link_effect13stacks_in_32212 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_32212 .link_effect13stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect13stacks_in_32212 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_32212 .link_effect14stacks_in_32212 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32212 .link_effect14stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect14stacks_in_32212 a::before,
#stacks_in_32212 .link_effect14stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32212 .link_effect14stacks_in_32212 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32212 .link_effect14stacks_in_32212 a:hover,
#stacks_in_32212 .link_effect14stacks_in_32212 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_32212 .link_effect14stacks_in_32212 a::before,
#stacks_in_32212 .link_effect14stacks_in_32212 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_32212 .link_effect14stacks_in_32212 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_32212 .link_effect14stacks_in_32212 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32212 .link_effect14stacks_in_32212 a:hover::after,
#stacks_in_32212 .link_effect14stacks_in_32212 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_32212 .link_effect15stacks_in_32212 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32212 .link_effect15stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect15stacks_in_32212 a::before,
#stacks_in_32212 .link_effect15stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32212 .link_effect15stacks_in_32212 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32212 .link_effect15stacks_in_32212 a::before,
#stacks_in_32212 .link_effect15stacks_in_32212 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_32212 .link_effect15stacks_in_32212 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_32212 .link_effect15stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect15stacks_in_32212 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_32212 .link_effect15stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect15stacks_in_32212 a:focus::before,
#stacks_in_32212 .link_effect15stacks_in_32212 a:hover::after,
#stacks_in_32212 .link_effect15stacks_in_32212 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32212 .link_effect15stacks_in_32212 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_32212 .link_effect15stacks_in_32212 a:hover::after,
#stacks_in_32212 .link_effect15stacks_in_32212 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_32212 .link_effect16stacks_in_32212 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32212 .link_effect16stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect16stacks_in_32212 a::before,
#stacks_in_32212 .link_effect16stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32212 .link_effect16stacks_in_32212 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_32212 .link_effect16stacks_in_32212 a:hover {
	color: #d04c3f;
}

#stacks_in_32212 .link_effect16stacks_in_32212 a::before,
#stacks_in_32212 .link_effect16stacks_in_32212 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_32212 .link_effect16stacks_in_32212 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_32212 .link_effect16stacks_in_32212 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_32212 .link_effect16stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect16stacks_in_32212 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_32212 .link_effect17stacks_in_32212 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_32212 .link_effect17stacks_in_32212 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_32212 .link_effect17stacks_in_32212 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_32212 .link_effect18stacks_in_32212 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32212 .link_effect18stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect18stacks_in_32212 a::before,
#stacks_in_32212 .link_effect18stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32212 .link_effect18stacks_in_32212 {
}

#stacks_in_32212 .link_effect18stacks_in_32212 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_32212 .link_effect18stacks_in_32212 a::before,
#stacks_in_32212 .link_effect18stacks_in_32212 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32212 .link_effect18stacks_in_32212 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32212 .link_effect18stacks_in_32212 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_32212 .link_effect18stacks_in_32212 a:hover,
#stacks_in_32212 .link_effect18stacks_in_32212 a:focus {
	color: #fff;
}

#stacks_in_32212 .link_effect18stacks_in_32212 a:hover::before,
#stacks_in_32212 .link_effect18stacks_in_32212 a:focus::before,
#stacks_in_32212 .link_effect18stacks_in_32212 a:hover::after,
#stacks_in_32212 .link_effect18stacks_in_32212 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_32212 .link_effect19stacks_in_32212 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32212 .link_effect19stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect19stacks_in_32212 a::before,
#stacks_in_32212 .link_effect19stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_32212 a {
}

.link_effect19stacks_in_32212 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_32212 a:hover::after,
.link_effect19stacks_in_32212 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_32212 .link_effect20stacks_in_32212 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32212 .link_effect20stacks_in_32212 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32212 .link_effect20stacks_in_32212 a::before,
#stacks_in_32212 .link_effect20stacks_in_32212 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_32212 a {
}

.link_effect20stacks_in_32212 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_32212 a:hover::after,
.link_effect20stacks_in_32212 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_32213 {
	padding:  20px;
}

#stacks_in_32215 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32169Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32169Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32169Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32169Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32169Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32169Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32169Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32169Calligrapher h6, .stacks_in_32169Calligrapher h5, .stacks_in_32169Calligrapher h4, .stacks_in_32169Calligrapher h3, .stacks_in_32169Calligrapher h2, .stacks_in_32169Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32169Calligrapher, .stacks_in_32169Calligrapher h1, .stacks_in_32169Calligrapher h2, .stacks_in_32169Calligrapher h3, .stacks_in_32169Calligrapher h4, .stacks_in_32169Calligrapher h5, .stacks_in_32169Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32169Calligrapher, .stacks_in_32169Calligrapher h1, .stacks_in_32169Calligrapher h2, .stacks_in_32169Calligrapher h3, .stacks_in_32169Calligrapher h4, .stacks_in_32169Calligrapher h5, .stacks_in_32169Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32169targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32169Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32169Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32169Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32169Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32169 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_32217 {
	padding:  20px;
}

#stacks_in_32219 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_32222{padding-left:0px;padding-right:0px;}#stacks_in_32222 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32222 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32222 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32222 > .jack.width-static{width:500px}#stacks_in_32222 > .jack.width-flexible{width:100%}#stacks_in_32222 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32222 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32222 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32222 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32222 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32222 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32222 > .jack::after{border-radius:0px}#stacks_in_32222 > .jack.border-detailed-radius,#stacks_in_32222 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_32222 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32222 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32222 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32222 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32222 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32222 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32222 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32222 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32222 > .jack.bg-image:not(.glass){}#stacks_in_32222 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32222 > .jack.bg-image.glass.after,#stacks_in_32222 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32222 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32222 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32222 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32222 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32222 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32222 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32222 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32222 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32222 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32222 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32222 > .jack.bg-image.glass.after,#stacks_in_32222 > .glass.jack.bg-image::after{}#stacks_in_32222 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32222 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32222 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32222 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32222 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32222 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32222 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32222 > .jack.peek-shadow::before,#stacks_in_32222 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32222 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32222 > .jack{overflow:hidden;}#stacks_in_32222 > .jack.height-static{height:100px}#stacks_in_32222 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32170Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32170Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32170Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32170Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32170Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32170Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32170Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32170Calligrapher h6, .stacks_in_32170Calligrapher h5, .stacks_in_32170Calligrapher h4, .stacks_in_32170Calligrapher h3, .stacks_in_32170Calligrapher h2, .stacks_in_32170Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32170Calligrapher, .stacks_in_32170Calligrapher h1, .stacks_in_32170Calligrapher h2, .stacks_in_32170Calligrapher h3, .stacks_in_32170Calligrapher h4, .stacks_in_32170Calligrapher h5, .stacks_in_32170Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32170Calligrapher, .stacks_in_32170Calligrapher h1, .stacks_in_32170Calligrapher h2, .stacks_in_32170Calligrapher h3, .stacks_in_32170Calligrapher h4, .stacks_in_32170Calligrapher h5, .stacks_in_32170Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32170targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32170Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32170Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32170Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32170Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32170 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_32224 a:before, .link_effect1stacks_in_32224 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_32224 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_32224 a:hover:before, .link_effect1stacks_in_32224 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_32224 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_32224 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_32224 .link_effect2stacks_in_32224 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_32224 .link_effect2stacks_in_32224 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_32224 .link_effect3stacks_in_32224 {
  	text-decoration: none;
}

#stacks_in_32224 .link_effect3stacks_in_32224 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_32224 .link_effect3stacks_in_32224 a:hover,
#stacks_in_32224 .link_effect3stacks_in_32224 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_32224 .link_effect4stacks_in_32224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32224 .link_effect4stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect4stacks_in_32224 a::before,
#stacks_in_32224 .link_effect%stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32224 .link_effect4stacks_in_32224 {
}

#stacks_in_32224 .link_effect4stacks_in_32224 a {
	font-weight:bold !important;;
}

#stacks_in_32224 .link_effect4stacks_in_32224 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32224 .link_effect4stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect4stacks_in_32224 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_32224 .link_effect5stacks_in_32224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32224 .link_effect5stacks_in_32224 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect5stacks_in_32224 a::before,
#stacks_in_32224 .link_effect5stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32224 .link_effect5stacks_in_32224 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_32224 .link_effect5stacks_in_32224 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_32224 .link_effect5stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect5stacks_in_32224 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_32224 .link_effect6stacks_in_32224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32224 .link_effect6stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect6stacks_in_32224 a::before,
#stacks_in_32224 .link_effect6stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32224 .link_effect6stacks_in_32224 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32224 .link_effect6stacks_in_32224 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_32224 .link_effect6stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect6stacks_in_32224 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_32224 .link_effect7stacks_in_32224 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32224 .link_effect7stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect7stacks_in_32224 a::before,
#stacks_in_32224 .link_effect7stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32224 .link_effect7stacks_in_32224 {
	position: relative;
}

#stacks_in_32224 .link_effect7stacks_in_32224 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_32224 .link_effect7stacks_in_32224 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32224 .link_effect7stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect7stacks_in_32224 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_32224 .link_effect8stacks_in_32224 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32224 .link_effect8stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect8stacks_in_32224 a::before,
#stacks_in_32224 .link_effect8stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_32224 .link_effect8stacks_in_32224 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_32224 .link_effect8stacks_in_32224 a:hover,
#stacks_in_32224 .link_effect8stacks_in_32224 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32224 .link_effect8stacks_in_32224 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_32224 .link_effect8stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect8stacks_in_32224 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_32224 .link_effect9stacks_in_32224 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32224 .link_effect9stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect9stacks_in_32224 a::before,
#stacks_in_32224 .link_effect9stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32224 .link_effect9stacks_in_32224 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_32224 .link_effect9stacks_in_32224 a:hover,
#stacks_in_32224 .link_effect9stacks_in_32224 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32224 .link_effect9stacks_in_32224 a::before,
#stacks_in_32224 .link_effect9stacks_in_32224 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_32224 .link_effect9stacks_in_32224 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_32224 .link_effect9stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect9stacks_in_32224 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_32224 .link_effect9stacks_in_32224 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_32224 .link_effect10stacks_in_32224 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32224 .link_effect10stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect10stacks_in_32224 a::before,
#stacks_in_32224 .link_effect10stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32224 .link_effect10stacks_in_32224 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_32224 .link_effect10stacks_in_32224 a:hover,
#stacks_in_32224 .link_effect10stacks_in_32224 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32224 .link_effect10stacks_in_32224 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32224 .link_effect10stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect10stacks_in_32224 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_32224 .link_effect11stacks_in_32224 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32224 .link_effect11stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect11stacks_in_32224 a::before,
#stacks_in_32224 .link_effect11stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32224 .link_effect11stacks_in_32224 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_32224 .link_effect11stacks_in_32224 a:hover,
#stacks_in_32224 .link_effect11stacks_in_32224 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32224 .link_effect11stacks_in_32224 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_32224 .link_effect11stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect11stacks_in_32224 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_32224 .link_effect12stacks_in_32224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32224 .link_effect12stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect12stacks_in_32224 a::before,
#stacks_in_32224 .link_effect12stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32224 .link_effect12stacks_in_32224 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32224 .link_effect12stacks_in_32224 a:hover,
#stacks_in_32224 .link_effect12stacks_in_32224 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_32224 .link_effect12stacks_in_32224 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_32224 .link_effect12stacks_in_32224 a,
#stacks_in_32224 .link_effect12stacks_in_32224 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_32224 .link_effect12stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect12stacks_in_32224 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_32224 .link_effect13stacks_in_32224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32224 .link_effect13stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect13stacks_in_32224 a::before,
#stacks_in_32224 .link_effect13stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32224 .link_effect13stacks_in_32224 {
}

#stacks_in_32224 .link_effect13stacks_in_32224 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_32224 .link_effect13stacks_in_32224 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_32224 .link_effect13stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect13stacks_in_32224 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_32224 .link_effect14stacks_in_32224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32224 .link_effect14stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect14stacks_in_32224 a::before,
#stacks_in_32224 .link_effect14stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32224 .link_effect14stacks_in_32224 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32224 .link_effect14stacks_in_32224 a:hover,
#stacks_in_32224 .link_effect14stacks_in_32224 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_32224 .link_effect14stacks_in_32224 a::before,
#stacks_in_32224 .link_effect14stacks_in_32224 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_32224 .link_effect14stacks_in_32224 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_32224 .link_effect14stacks_in_32224 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32224 .link_effect14stacks_in_32224 a:hover::after,
#stacks_in_32224 .link_effect14stacks_in_32224 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_32224 .link_effect15stacks_in_32224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32224 .link_effect15stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect15stacks_in_32224 a::before,
#stacks_in_32224 .link_effect15stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32224 .link_effect15stacks_in_32224 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32224 .link_effect15stacks_in_32224 a::before,
#stacks_in_32224 .link_effect15stacks_in_32224 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_32224 .link_effect15stacks_in_32224 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_32224 .link_effect15stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect15stacks_in_32224 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_32224 .link_effect15stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect15stacks_in_32224 a:focus::before,
#stacks_in_32224 .link_effect15stacks_in_32224 a:hover::after,
#stacks_in_32224 .link_effect15stacks_in_32224 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32224 .link_effect15stacks_in_32224 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_32224 .link_effect15stacks_in_32224 a:hover::after,
#stacks_in_32224 .link_effect15stacks_in_32224 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_32224 .link_effect16stacks_in_32224 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32224 .link_effect16stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect16stacks_in_32224 a::before,
#stacks_in_32224 .link_effect16stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32224 .link_effect16stacks_in_32224 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_32224 .link_effect16stacks_in_32224 a:hover {
	color: #d04c3f;
}

#stacks_in_32224 .link_effect16stacks_in_32224 a::before,
#stacks_in_32224 .link_effect16stacks_in_32224 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_32224 .link_effect16stacks_in_32224 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_32224 .link_effect16stacks_in_32224 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_32224 .link_effect16stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect16stacks_in_32224 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_32224 .link_effect17stacks_in_32224 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_32224 .link_effect17stacks_in_32224 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_32224 .link_effect17stacks_in_32224 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_32224 .link_effect18stacks_in_32224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32224 .link_effect18stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect18stacks_in_32224 a::before,
#stacks_in_32224 .link_effect18stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32224 .link_effect18stacks_in_32224 {
}

#stacks_in_32224 .link_effect18stacks_in_32224 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_32224 .link_effect18stacks_in_32224 a::before,
#stacks_in_32224 .link_effect18stacks_in_32224 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32224 .link_effect18stacks_in_32224 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32224 .link_effect18stacks_in_32224 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_32224 .link_effect18stacks_in_32224 a:hover,
#stacks_in_32224 .link_effect18stacks_in_32224 a:focus {
	color: #fff;
}

#stacks_in_32224 .link_effect18stacks_in_32224 a:hover::before,
#stacks_in_32224 .link_effect18stacks_in_32224 a:focus::before,
#stacks_in_32224 .link_effect18stacks_in_32224 a:hover::after,
#stacks_in_32224 .link_effect18stacks_in_32224 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_32224 .link_effect19stacks_in_32224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32224 .link_effect19stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect19stacks_in_32224 a::before,
#stacks_in_32224 .link_effect19stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_32224 a {
}

.link_effect19stacks_in_32224 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_32224 a:hover::after,
.link_effect19stacks_in_32224 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_32224 .link_effect20stacks_in_32224 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32224 .link_effect20stacks_in_32224 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32224 .link_effect20stacks_in_32224 a::before,
#stacks_in_32224 .link_effect20stacks_in_32224 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_32224 a {
}

.link_effect20stacks_in_32224 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_32224 a:hover::after,
.link_effect20stacks_in_32224 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_32225 {
	padding:  20px;
}

#stacks_in_32227 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32171Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32171Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32171Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32171Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32171Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32171Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32171Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32171Calligrapher h6, .stacks_in_32171Calligrapher h5, .stacks_in_32171Calligrapher h4, .stacks_in_32171Calligrapher h3, .stacks_in_32171Calligrapher h2, .stacks_in_32171Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32171Calligrapher, .stacks_in_32171Calligrapher h1, .stacks_in_32171Calligrapher h2, .stacks_in_32171Calligrapher h3, .stacks_in_32171Calligrapher h4, .stacks_in_32171Calligrapher h5, .stacks_in_32171Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32171Calligrapher, .stacks_in_32171Calligrapher h1, .stacks_in_32171Calligrapher h2, .stacks_in_32171Calligrapher h3, .stacks_in_32171Calligrapher h4, .stacks_in_32171Calligrapher h5, .stacks_in_32171Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32171targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32171Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32171Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32171Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32171Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32171 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_32229 {
	padding:  20px;
}

#stacks_in_32231 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_32667{padding-left:0px;padding-right:0px;}#stacks_in_32667 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32667 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32667 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32667 > .jack.width-static{width:500px}#stacks_in_32667 > .jack.width-flexible{width:100%}#stacks_in_32667 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32667 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32667 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32667 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32667 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32667 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32667 > .jack::after{border-radius:0px}#stacks_in_32667 > .jack.border-detailed-radius,#stacks_in_32667 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_32667 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32667 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32667 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_32667 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32667 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32667 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32667 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32667 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32667 > .jack.bg-image:not(.glass){}#stacks_in_32667 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32667 > .jack.bg-image.glass.after,#stacks_in_32667 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32667 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32667 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32667 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32667 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32667 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32667 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32667 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32667 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32667 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32667 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32667 > .jack.bg-image.glass.after,#stacks_in_32667 > .glass.jack.bg-image::after{}#stacks_in_32667 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32667 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32667 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32667 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32667 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32667 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32667 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32667 > .jack.peek-shadow::before,#stacks_in_32667 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32667 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32667 > .jack{overflow:visible;}#stacks_in_32667 > .jack.height-static{height:100px}#stacks_in_32667 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32668{}#stacks_in_32668 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32668 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32668 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32668 > .jack.width-static{width:500px}#stacks_in_32668 > .jack.width-flexible{width:100%}#stacks_in_32668 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32668 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32668 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32668 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32668 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32668 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32668 > .jack::after{border-radius:15px}#stacks_in_32668 > .jack.border-detailed-radius,#stacks_in_32668 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_32668 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32668 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32668 > .jack.bg-gradient{background-color:#FF7000}#stacks_in_32668 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32668 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32668 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32668 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32668 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32668 > .jack.bg-image:not(.glass){}#stacks_in_32668 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32668 > .jack.bg-image.glass.after,#stacks_in_32668 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32668 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32668 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32668 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32668 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32668 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32668 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32668 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32668 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32668 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32668 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32668 > .jack.bg-image.glass.after,#stacks_in_32668 > .glass.jack.bg-image::after{}#stacks_in_32668 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32668 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32668 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_32668 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32668 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32668 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32668 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32668 > .jack.peek-shadow::before,#stacks_in_32668 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32668 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32668 > .jack{overflow:hidden;}#stacks_in_32668 > .jack.height-static{height:100px}#stacks_in_32668 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_32668 {
	margin: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32679Calligrapher{			font-size: 110% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32679Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32679Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32679Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32679Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32679Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32679Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32679Calligrapher h6, .stacks_in_32679Calligrapher h5, .stacks_in_32679Calligrapher h4, .stacks_in_32679Calligrapher h3, .stacks_in_32679Calligrapher h2, .stacks_in_32679Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32679Calligrapher, .stacks_in_32679Calligrapher h1, .stacks_in_32679Calligrapher h2, .stacks_in_32679Calligrapher h3, .stacks_in_32679Calligrapher h4, .stacks_in_32679Calligrapher h5, .stacks_in_32679Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32679Calligrapher, .stacks_in_32679Calligrapher h1, .stacks_in_32679Calligrapher h2, .stacks_in_32679Calligrapher h3, .stacks_in_32679Calligrapher h4, .stacks_in_32679Calligrapher h5, .stacks_in_32679Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32679targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32679Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32679Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32679Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32679Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_32680x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32680x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_32680x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32680 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_32681 {
	font-weight: lighter;
}
#stacks_in_32761{}#stacks_in_32761 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32761 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32761 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32761 > .jack.width-static{width:500px}#stacks_in_32761 > .jack.width-flexible{width:100%}#stacks_in_32761 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32761 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32761 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32761 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32761 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32761 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32761 > .jack::after{border-radius:15px}#stacks_in_32761 > .jack.border-detailed-radius,#stacks_in_32761 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_32761 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32761 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32761 > .jack.bg-gradient{background-color:#C4AFAC}#stacks_in_32761 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32761 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32761 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32761 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32761 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32761 > .jack.bg-image:not(.glass){}#stacks_in_32761 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32761 > .jack.bg-image.glass.after,#stacks_in_32761 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32761 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32761 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32761 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32761 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32761 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32761 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32761 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32761 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32761 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32761 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32761 > .jack.bg-image.glass.after,#stacks_in_32761 > .glass.jack.bg-image::after{}#stacks_in_32761 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32761 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32761 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_32761 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32761 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32761 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32761 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32761 > .jack.peek-shadow::before,#stacks_in_32761 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32761 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32761 > .jack{overflow:hidden;}#stacks_in_32761 > .jack.height-static{height:100px}#stacks_in_32761 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32670Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32670Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32670Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32670Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32670Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32670Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32670Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32670Calligrapher h6, .stacks_in_32670Calligrapher h5, .stacks_in_32670Calligrapher h4, .stacks_in_32670Calligrapher h3, .stacks_in_32670Calligrapher h2, .stacks_in_32670Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32670Calligrapher, .stacks_in_32670Calligrapher h1, .stacks_in_32670Calligrapher h2, .stacks_in_32670Calligrapher h3, .stacks_in_32670Calligrapher h4, .stacks_in_32670Calligrapher h5, .stacks_in_32670Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32670Calligrapher, .stacks_in_32670Calligrapher h1, .stacks_in_32670Calligrapher h2, .stacks_in_32670Calligrapher h3, .stacks_in_32670Calligrapher h4, .stacks_in_32670Calligrapher h5, .stacks_in_32670Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32670targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32670Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32670Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32670Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32670Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32670 {
	margin: 20px 15px 20px 15px;
}

#stacks_in_32767 {
	margin: 0px 40px 0px 40px;
	padding: 0px 5px 0px 5px;
}

#stacks_in_32768 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32671Calligrapher{			font-size: 100% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32671Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32671Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32671Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32671Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32671Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32671Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32671Calligrapher h6, .stacks_in_32671Calligrapher h5, .stacks_in_32671Calligrapher h4, .stacks_in_32671Calligrapher h3, .stacks_in_32671Calligrapher h2, .stacks_in_32671Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32671Calligrapher, .stacks_in_32671Calligrapher h1, .stacks_in_32671Calligrapher h2, .stacks_in_32671Calligrapher h3, .stacks_in_32671Calligrapher h4, .stacks_in_32671Calligrapher h5, .stacks_in_32671Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32671Calligrapher, .stacks_in_32671Calligrapher h1, .stacks_in_32671Calligrapher h2, .stacks_in_32671Calligrapher h3, .stacks_in_32671Calligrapher h4, .stacks_in_32671Calligrapher h5, .stacks_in_32671Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32671targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32671Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32671Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32671Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32671Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32671 {
	margin: 0px 15px 10px 15px;
}

/* @group My Group */
#stacks_in_32687 .wrapper{position: relative;padding: 10px;}
#stacks_in_32687 h2.acc_trigger {
	border: px solid ;
	font-size: 18px;
	background: #F0C5AA;
	color: #FFFFFF;
	padding: 5px;
	margin: 5px 0 5px;
	cursor: pointer;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0 0 3px #000000;
	}
#stacks_in_32687 h2.acc_trigger:hover, #stacks_in_32687 h2.active{
	border: px  solid ;
	font-size: 18px;
	background: #DEA468;
	color: #FFFFFF;
	padding: 5px;
	}

#stacks_in_32687 h2.acc_trigger a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	
}
#stacks_in_32687 h2.acc_trigger a:hover, #stacks_in_32687 h2.active a {
	color: #FFFFFF;
}
#stacks_in_32687 h2.active {}
#stacks_in_32687 .acc_container {
	margin: 10px 0; padding: 0;
	overflow: hidden;
	clear: both;
	background-color: #FFFFFF;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	box-shadow: 0 0 3px #000000;
	font-size: 1.1em;}
#stacks_in_32687 .acc_container .block {
	padding: 16px;
}
/* @end */
#stacks_in_32687 {
	margin: 0px 15px 0px 15px;
}
#stacks_in_32780{padding-left:0px;padding-right:0px;}#stacks_in_32780 > .jack{margin:0px;padding:10px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32780 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32780 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32780 > .jack.width-static{width:500px}#stacks_in_32780 > .jack.width-flexible{width:100%}#stacks_in_32780 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32780 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32780 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32780 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32780 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32780 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32780 > .jack::after{border-radius:15px}#stacks_in_32780 > .jack.border-detailed-radius,#stacks_in_32780 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_32780 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32780 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32780 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32780 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32780 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32780 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32780 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32780 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32780 > .jack.bg-image:not(.glass){}#stacks_in_32780 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32780 > .jack.bg-image.glass.after,#stacks_in_32780 > .glass.jack.bg-image::after{opacity:0.25;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32780 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32780 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32780 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32780 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32780 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32780 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32780 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32780 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32780 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32780 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32780 > .jack.bg-image.glass.after,#stacks_in_32780 > .glass.jack.bg-image::after{}#stacks_in_32780 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32780 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32780 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32780 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32780 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32780 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32780 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32780 > .jack.peek-shadow::before,#stacks_in_32780 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32780 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32780 > .jack{overflow:hidden;}#stacks_in_32780 > .jack.height-static{height:100px}#stacks_in_32780 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32782 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_32782 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_32782 #jwresp_col2_stacks_in_32782{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_32782 #jwresp_col1_stacks_in_32782,#stacks_in_32782 #jwresp_col2_stacks_in_32782{width:100%;float:none;display:block}#stacks_in_32782 #jwresp_col1_stacks_in_32782{margin-bottom:15px}}
#stacks_in_32783 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;}#stacks_in_32783 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_32783 .fluid-image.unlimited img{width:100% !important}#stacks_in_32783 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_32783 .fluid-image.align-left img{float:left}#stacks_in_32783 .fluid-image.align-right img{float:right}
/* Start dooHeader X stack CSS code */.stacks_in_32801x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32801x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32801x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32801 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_32802 {
	font-weight: lighter;
}

#stacks_in_32789 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_32791 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_32793 {
	margin:  3px;
	padding:  5px;
}
#stacks_in_32795{padding-left:0px;padding-right:0px;}#stacks_in_32795 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32795 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32795 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32795 > .jack.width-static{width:500px}#stacks_in_32795 > .jack.width-flexible{width:100%}#stacks_in_32795 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32795 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32795 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32795 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32795 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32795 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32795 > .jack::after{border-radius:0px}#stacks_in_32795 > .jack.border-detailed-radius,#stacks_in_32795 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_32795 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32795 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32795 > .jack.bg-gradient{background-color:#B1FFB4}#stacks_in_32795 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32795 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32795 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32795 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32795 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32795 > .jack.bg-image:not(.glass){}#stacks_in_32795 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32795 > .jack.bg-image.glass.after,#stacks_in_32795 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32795 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32795 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32795 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32795 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32795 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32795 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32795 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32795 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32795 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32795 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32795 > .jack.bg-image.glass.after,#stacks_in_32795 > .glass.jack.bg-image::after{}#stacks_in_32795 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32795 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32795 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32795 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32795 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32795 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32795 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32795 > .jack.peek-shadow::before,#stacks_in_32795 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32795 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32795 > .jack{overflow:hidden;}#stacks_in_32795 > .jack.height-static{height:100px}#stacks_in_32795 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_32799 {
	line-height: 2em;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_32800 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_32800 .borderbuttonthing, #stacks_in_32800 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_32800 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_32800 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_33405{}#stacks_in_33405 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33405 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33405 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33405 > .jack.width-static{width:500px}#stacks_in_33405 > .jack.width-flexible{width:100%}#stacks_in_33405 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33405 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33405 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33405 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33405 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33405 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33405 > .jack::after{border-radius:20px}#stacks_in_33405 > .jack.border-detailed-radius,#stacks_in_33405 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33405 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33405 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33405 > .jack.bg-gradient{background-color:#EED5BA}#stacks_in_33405 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33405 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33405 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33405 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33405 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33405 > .jack.bg-image:not(.glass){}#stacks_in_33405 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33405 > .jack.bg-image.glass.after,#stacks_in_33405 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33405 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33405 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33405 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33405 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33405 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33405 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33405 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33405 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33405 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33405 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33405 > .jack.bg-image.glass.after,#stacks_in_33405 > .glass.jack.bg-image::after{}#stacks_in_33405 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33405 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33405 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_33405 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33405 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33405 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33405 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33405 > .jack.peek-shadow::before,#stacks_in_33405 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33405 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33405 > .jack{overflow:hidden;}#stacks_in_33405 > .jack.height-static{height:100px}#stacks_in_33405 > .jack.height-minmax{min-height:100px;max-height:800px}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_33406 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_33406 .borderbuttonthing, #stacks_in_33406 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #E17023;
	color: #E17023;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_33406 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_33406 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_32825{padding-left:0px;padding-right:0px;}#stacks_in_32825 > .jack{margin:0px;padding:10px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32825 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32825 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32825 > .jack.width-static{width:500px}#stacks_in_32825 > .jack.width-flexible{width:100%}#stacks_in_32825 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32825 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32825 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32825 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32825 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32825 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32825 > .jack::after{border-radius:15px}#stacks_in_32825 > .jack.border-detailed-radius,#stacks_in_32825 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_32825 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32825 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32825 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32825 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32825 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32825 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32825 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32825 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32825 > .jack.bg-image:not(.glass){}#stacks_in_32825 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32825 > .jack.bg-image.glass.after,#stacks_in_32825 > .glass.jack.bg-image::after{opacity:0.25;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32825 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32825 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32825 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32825 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32825 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32825 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32825 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32825 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32825 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32825 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32825 > .jack.bg-image.glass.after,#stacks_in_32825 > .glass.jack.bg-image::after{}#stacks_in_32825 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32825 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32825 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32825 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32825 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32825 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32825 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32825 > .jack.peek-shadow::before,#stacks_in_32825 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32825 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32825 > .jack{overflow:hidden;}#stacks_in_32825 > .jack.height-static{height:100px}#stacks_in_32825 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_32826 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_32826 {
		display: none !important;
	}
}
#stacks_in_32827 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_32827 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_32827 #jwresp_col2_stacks_in_32827{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_32827 #jwresp_col1_stacks_in_32827,#stacks_in_32827 #jwresp_col2_stacks_in_32827{width:100%;float:none;display:block}#stacks_in_32827 #jwresp_col1_stacks_in_32827{margin-bottom:15px}}
#stacks_in_32828 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;}#stacks_in_32828 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_32828 .fluid-image.unlimited img{width:100% !important}#stacks_in_32828 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_32828 .fluid-image.align-left img{float:left}#stacks_in_32828 .fluid-image.align-right img{float:right}
/* Start dooHeader X stack CSS code */.stacks_in_32871x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32871x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32871x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32871 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_32872 {
	font-weight: lighter;
}

#stacks_in_32834 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_32836 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_32838 {
	margin:  3px;
	padding:  5px;
}
#stacks_in_32840{padding-left:0px;padding-right:0px;}#stacks_in_32840 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32840 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32840 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32840 > .jack.width-static{width:500px}#stacks_in_32840 > .jack.width-flexible{width:100%}#stacks_in_32840 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32840 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32840 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32840 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32840 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32840 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32840 > .jack::after{border-radius:0px}#stacks_in_32840 > .jack.border-detailed-radius,#stacks_in_32840 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_32840 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32840 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32840 > .jack.bg-gradient{background-color:#B1FFB4}#stacks_in_32840 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32840 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32840 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32840 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32840 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32840 > .jack.bg-image:not(.glass){}#stacks_in_32840 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32840 > .jack.bg-image.glass.after,#stacks_in_32840 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32840 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32840 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32840 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32840 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32840 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32840 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32840 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32840 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32840 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32840 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32840 > .jack.bg-image.glass.after,#stacks_in_32840 > .glass.jack.bg-image::after{}#stacks_in_32840 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32840 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32840 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32840 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32840 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32840 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32840 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32840 > .jack.peek-shadow::before,#stacks_in_32840 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32840 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32840 > .jack{overflow:hidden;}#stacks_in_32840 > .jack.height-static{height:100px}#stacks_in_32840 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_32824 {
	line-height: 2em;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_32846 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_32846 .borderbuttonthing, #stacks_in_32846 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_32846 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_32846 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_33408{}#stacks_in_33408 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33408 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33408 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33408 > .jack.width-static{width:500px}#stacks_in_33408 > .jack.width-flexible{width:100%}#stacks_in_33408 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33408 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33408 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33408 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33408 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33408 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33408 > .jack::after{border-radius:20px}#stacks_in_33408 > .jack.border-detailed-radius,#stacks_in_33408 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33408 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33408 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33408 > .jack.bg-gradient{background-color:#EED5BA}#stacks_in_33408 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33408 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33408 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33408 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33408 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33408 > .jack.bg-image:not(.glass){}#stacks_in_33408 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33408 > .jack.bg-image.glass.after,#stacks_in_33408 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33408 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33408 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33408 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33408 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33408 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33408 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33408 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33408 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33408 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33408 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33408 > .jack.bg-image.glass.after,#stacks_in_33408 > .glass.jack.bg-image::after{}#stacks_in_33408 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33408 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33408 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_33408 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33408 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33408 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33408 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33408 > .jack.peek-shadow::before,#stacks_in_33408 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33408 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33408 > .jack{overflow:hidden;}#stacks_in_33408 > .jack.height-static{height:100px}#stacks_in_33408 > .jack.height-minmax{min-height:100px;max-height:800px}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_33409 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_33409 .borderbuttonthing, #stacks_in_33409 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #CA4335;
	color: #CA4335;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_33409 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_33409 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_32847{padding-left:0px;padding-right:0px;}#stacks_in_32847 > .jack{margin:0px;padding:10px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32847 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32847 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32847 > .jack.width-static{width:500px}#stacks_in_32847 > .jack.width-flexible{width:100%}#stacks_in_32847 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32847 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32847 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32847 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32847 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32847 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32847 > .jack::after{border-radius:15px}#stacks_in_32847 > .jack.border-detailed-radius,#stacks_in_32847 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_32847 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32847 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32847 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32847 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32847 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32847 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32847 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32847 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32847 > .jack.bg-image:not(.glass){}#stacks_in_32847 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32847 > .jack.bg-image.glass.after,#stacks_in_32847 > .glass.jack.bg-image::after{opacity:0.25;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32847 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32847 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32847 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32847 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32847 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32847 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32847 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32847 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32847 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32847 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32847 > .jack.bg-image.glass.after,#stacks_in_32847 > .glass.jack.bg-image::after{}#stacks_in_32847 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32847 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32847 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32847 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32847 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32847 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32847 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32847 > .jack.peek-shadow::before,#stacks_in_32847 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32847 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32847 > .jack{overflow:hidden;}#stacks_in_32847 > .jack.height-static{height:100px}#stacks_in_32847 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_32848 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_32848 {
		display: none !important;
	}
}
#stacks_in_32849 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_32849 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_32849 #jwresp_col2_stacks_in_32849{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_32849 #jwresp_col1_stacks_in_32849,#stacks_in_32849 #jwresp_col2_stacks_in_32849{width:100%;float:none;display:block}#stacks_in_32849 #jwresp_col1_stacks_in_32849{margin-bottom:15px}}
#stacks_in_32850 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;}#stacks_in_32850 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_32850 .fluid-image.unlimited img{width:100% !important}#stacks_in_32850 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_32850 .fluid-image.align-left img{float:left}#stacks_in_32850 .fluid-image.align-right img{float:right}
/* Start dooHeader X stack CSS code */.stacks_in_32873x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32873x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32873x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32873 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_32874 {
	font-weight: lighter;
}

#stacks_in_32856 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_32858 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_32860 {
	margin:  3px;
	padding:  5px;
}
#stacks_in_33310{padding-left:0px;padding-right:0px;}#stacks_in_33310 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33310 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33310 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33310 > .jack.width-static{width:500px}#stacks_in_33310 > .jack.width-flexible{width:100%}#stacks_in_33310 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33310 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33310 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33310 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33310 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33310 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33310 > .jack::after{border-radius:0px}#stacks_in_33310 > .jack.border-detailed-radius,#stacks_in_33310 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33310 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33310 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33310 > .jack.bg-gradient{background-color:#F9FFC1}#stacks_in_33310 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33310 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33310 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33310 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33310 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33310 > .jack.bg-image:not(.glass){}#stacks_in_33310 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33310 > .jack.bg-image.glass.after,#stacks_in_33310 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33310 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33310 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33310 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33310 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33310 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33310 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33310 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33310 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33310 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33310 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33310 > .jack.bg-image.glass.after,#stacks_in_33310 > .glass.jack.bg-image::after{}#stacks_in_33310 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33310 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33310 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33310 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33310 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33310 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33310 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33310 > .jack.peek-shadow::before,#stacks_in_33310 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33310 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33310 > .jack{overflow:hidden;}#stacks_in_33310 > .jack.height-static{height:100px}#stacks_in_33310 > .jack.height-minmax{min-height:100px;max-height:800px}

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

#stacks_in_33313 {
	line-height: 2em;
}
#stacks_in_32866{padding-left:0px;padding-right:0px;}#stacks_in_32866 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32866 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32866 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32866 > .jack.width-static{width:500px}#stacks_in_32866 > .jack.width-flexible{width:100%}#stacks_in_32866 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32866 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32866 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32866 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32866 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32866 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32866 > .jack::after{border-radius:0px}#stacks_in_32866 > .jack.border-detailed-radius,#stacks_in_32866 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_32866 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32866 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32866 > .jack.bg-gradient{background-color:#B1FFB4}#stacks_in_32866 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32866 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32866 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32866 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32866 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32866 > .jack.bg-image:not(.glass){}#stacks_in_32866 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32866 > .jack.bg-image.glass.after,#stacks_in_32866 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32866 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32866 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32866 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32866 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32866 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32866 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32866 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32866 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32866 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32866 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32866 > .jack.bg-image.glass.after,#stacks_in_32866 > .glass.jack.bg-image::after{}#stacks_in_32866 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32866 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32866 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32866 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32866 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32866 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32866 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32866 > .jack.peek-shadow::before,#stacks_in_32866 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32866 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32866 > .jack{overflow:hidden;}#stacks_in_32866 > .jack.height-static{height:100px}#stacks_in_32866 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_32870 {
	line-height: 2em;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_32875 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_32875 .borderbuttonthing, #stacks_in_32875 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_32875 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_32875 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_33411{}#stacks_in_33411 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33411 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33411 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33411 > .jack.width-static{width:500px}#stacks_in_33411 > .jack.width-flexible{width:100%}#stacks_in_33411 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33411 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33411 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33411 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33411 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33411 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33411 > .jack::after{border-radius:20px}#stacks_in_33411 > .jack.border-detailed-radius,#stacks_in_33411 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33411 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33411 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33411 > .jack.bg-gradient{background-color:#EED5BA}#stacks_in_33411 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33411 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33411 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33411 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33411 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33411 > .jack.bg-image:not(.glass){}#stacks_in_33411 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33411 > .jack.bg-image.glass.after,#stacks_in_33411 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33411 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33411 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33411 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33411 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33411 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33411 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33411 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33411 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33411 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33411 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33411 > .jack.bg-image.glass.after,#stacks_in_33411 > .glass.jack.bg-image::after{}#stacks_in_33411 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33411 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33411 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_33411 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33411 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33411 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33411 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33411 > .jack.peek-shadow::before,#stacks_in_33411 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33411 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33411 > .jack{overflow:hidden;}#stacks_in_33411 > .jack.height-static{height:100px}#stacks_in_33411 > .jack.height-minmax{min-height:100px;max-height:800px}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_33412 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_33412 .borderbuttonthing, #stacks_in_33412 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #AF0C22;
	color: #AF0C22;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_33412 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_33412 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_32748 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999;}#stacks_in_32748 .fluid-image img:hover{-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999}#stacks_in_32748 .fluid-image.unlimited img{width:100% !important}#stacks_in_32748 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_32748 .fluid-image.align-left img{float:left}#stacks_in_32748 .fluid-image.align-right img{float:right}

#stacks_in_32748 {
	margin: 15px 0px 0px 0px;
}
#stacks_in_32735{padding-left:0px;padding-right:0px;}#stacks_in_32735 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32735 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32735 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32735 > .jack.width-static{width:500px}#stacks_in_32735 > .jack.width-flexible{width:100%}#stacks_in_32735 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32735 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32735 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32735 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32735 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32735 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32735 > .jack::after{border-radius:0px}#stacks_in_32735 > .jack.border-detailed-radius,#stacks_in_32735 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_32735 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32735 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32735 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32735 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32735 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32735 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32735 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32735 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32735 > .jack.bg-image:not(.glass){}#stacks_in_32735 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32735 > .jack.bg-image.glass.after,#stacks_in_32735 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32735 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32735 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32735 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32735 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32735 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32735 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32735 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32735 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32735 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32735 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32735 > .jack.bg-image.glass.after,#stacks_in_32735 > .glass.jack.bg-image::after{}#stacks_in_32735 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32735 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32735 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32735 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32735 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32735 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32735 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32735 > .jack.peek-shadow::before,#stacks_in_32735 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32735 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32735 > .jack{overflow:hidden;}#stacks_in_32735 > .jack.height-static{height:100px}#stacks_in_32735 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32674Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32674Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32674Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32674Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32674Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32674Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32674Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32674Calligrapher h6, .stacks_in_32674Calligrapher h5, .stacks_in_32674Calligrapher h4, .stacks_in_32674Calligrapher h3, .stacks_in_32674Calligrapher h2, .stacks_in_32674Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32674Calligrapher, .stacks_in_32674Calligrapher h1, .stacks_in_32674Calligrapher h2, .stacks_in_32674Calligrapher h3, .stacks_in_32674Calligrapher h4, .stacks_in_32674Calligrapher h5, .stacks_in_32674Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32674Calligrapher, .stacks_in_32674Calligrapher h1, .stacks_in_32674Calligrapher h2, .stacks_in_32674Calligrapher h3, .stacks_in_32674Calligrapher h4, .stacks_in_32674Calligrapher h5, .stacks_in_32674Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32674targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32674Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32674Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32674Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32674Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32674 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_32749 a:before, .link_effect1stacks_in_32749 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_32749 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_32749 a:hover:before, .link_effect1stacks_in_32749 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_32749 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_32749 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_32749 .link_effect2stacks_in_32749 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_32749 .link_effect2stacks_in_32749 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_32749 .link_effect3stacks_in_32749 {
  	text-decoration: none;
}

#stacks_in_32749 .link_effect3stacks_in_32749 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_32749 .link_effect3stacks_in_32749 a:hover,
#stacks_in_32749 .link_effect3stacks_in_32749 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_32749 .link_effect4stacks_in_32749 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32749 .link_effect4stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect4stacks_in_32749 a::before,
#stacks_in_32749 .link_effect%stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32749 .link_effect4stacks_in_32749 {
}

#stacks_in_32749 .link_effect4stacks_in_32749 a {
	font-weight:bold !important;;
}

#stacks_in_32749 .link_effect4stacks_in_32749 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32749 .link_effect4stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect4stacks_in_32749 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_32749 .link_effect5stacks_in_32749 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32749 .link_effect5stacks_in_32749 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect5stacks_in_32749 a::before,
#stacks_in_32749 .link_effect5stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32749 .link_effect5stacks_in_32749 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_32749 .link_effect5stacks_in_32749 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_32749 .link_effect5stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect5stacks_in_32749 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_32749 .link_effect6stacks_in_32749 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32749 .link_effect6stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect6stacks_in_32749 a::before,
#stacks_in_32749 .link_effect6stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32749 .link_effect6stacks_in_32749 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32749 .link_effect6stacks_in_32749 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_32749 .link_effect6stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect6stacks_in_32749 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_32749 .link_effect7stacks_in_32749 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32749 .link_effect7stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect7stacks_in_32749 a::before,
#stacks_in_32749 .link_effect7stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32749 .link_effect7stacks_in_32749 {
	position: relative;
}

#stacks_in_32749 .link_effect7stacks_in_32749 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_32749 .link_effect7stacks_in_32749 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32749 .link_effect7stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect7stacks_in_32749 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_32749 .link_effect8stacks_in_32749 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32749 .link_effect8stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect8stacks_in_32749 a::before,
#stacks_in_32749 .link_effect8stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_32749 .link_effect8stacks_in_32749 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_32749 .link_effect8stacks_in_32749 a:hover,
#stacks_in_32749 .link_effect8stacks_in_32749 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32749 .link_effect8stacks_in_32749 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_32749 .link_effect8stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect8stacks_in_32749 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_32749 .link_effect9stacks_in_32749 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32749 .link_effect9stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect9stacks_in_32749 a::before,
#stacks_in_32749 .link_effect9stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32749 .link_effect9stacks_in_32749 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_32749 .link_effect9stacks_in_32749 a:hover,
#stacks_in_32749 .link_effect9stacks_in_32749 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32749 .link_effect9stacks_in_32749 a::before,
#stacks_in_32749 .link_effect9stacks_in_32749 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_32749 .link_effect9stacks_in_32749 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_32749 .link_effect9stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect9stacks_in_32749 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_32749 .link_effect9stacks_in_32749 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_32749 .link_effect10stacks_in_32749 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32749 .link_effect10stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect10stacks_in_32749 a::before,
#stacks_in_32749 .link_effect10stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32749 .link_effect10stacks_in_32749 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_32749 .link_effect10stacks_in_32749 a:hover,
#stacks_in_32749 .link_effect10stacks_in_32749 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32749 .link_effect10stacks_in_32749 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32749 .link_effect10stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect10stacks_in_32749 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_32749 .link_effect11stacks_in_32749 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32749 .link_effect11stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect11stacks_in_32749 a::before,
#stacks_in_32749 .link_effect11stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32749 .link_effect11stacks_in_32749 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_32749 .link_effect11stacks_in_32749 a:hover,
#stacks_in_32749 .link_effect11stacks_in_32749 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32749 .link_effect11stacks_in_32749 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_32749 .link_effect11stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect11stacks_in_32749 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_32749 .link_effect12stacks_in_32749 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32749 .link_effect12stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect12stacks_in_32749 a::before,
#stacks_in_32749 .link_effect12stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32749 .link_effect12stacks_in_32749 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32749 .link_effect12stacks_in_32749 a:hover,
#stacks_in_32749 .link_effect12stacks_in_32749 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_32749 .link_effect12stacks_in_32749 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_32749 .link_effect12stacks_in_32749 a,
#stacks_in_32749 .link_effect12stacks_in_32749 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_32749 .link_effect12stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect12stacks_in_32749 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_32749 .link_effect13stacks_in_32749 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32749 .link_effect13stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect13stacks_in_32749 a::before,
#stacks_in_32749 .link_effect13stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32749 .link_effect13stacks_in_32749 {
}

#stacks_in_32749 .link_effect13stacks_in_32749 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_32749 .link_effect13stacks_in_32749 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_32749 .link_effect13stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect13stacks_in_32749 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_32749 .link_effect14stacks_in_32749 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32749 .link_effect14stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect14stacks_in_32749 a::before,
#stacks_in_32749 .link_effect14stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32749 .link_effect14stacks_in_32749 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32749 .link_effect14stacks_in_32749 a:hover,
#stacks_in_32749 .link_effect14stacks_in_32749 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_32749 .link_effect14stacks_in_32749 a::before,
#stacks_in_32749 .link_effect14stacks_in_32749 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_32749 .link_effect14stacks_in_32749 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_32749 .link_effect14stacks_in_32749 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32749 .link_effect14stacks_in_32749 a:hover::after,
#stacks_in_32749 .link_effect14stacks_in_32749 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_32749 .link_effect15stacks_in_32749 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32749 .link_effect15stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect15stacks_in_32749 a::before,
#stacks_in_32749 .link_effect15stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32749 .link_effect15stacks_in_32749 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32749 .link_effect15stacks_in_32749 a::before,
#stacks_in_32749 .link_effect15stacks_in_32749 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_32749 .link_effect15stacks_in_32749 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_32749 .link_effect15stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect15stacks_in_32749 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_32749 .link_effect15stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect15stacks_in_32749 a:focus::before,
#stacks_in_32749 .link_effect15stacks_in_32749 a:hover::after,
#stacks_in_32749 .link_effect15stacks_in_32749 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32749 .link_effect15stacks_in_32749 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_32749 .link_effect15stacks_in_32749 a:hover::after,
#stacks_in_32749 .link_effect15stacks_in_32749 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_32749 .link_effect16stacks_in_32749 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32749 .link_effect16stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect16stacks_in_32749 a::before,
#stacks_in_32749 .link_effect16stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32749 .link_effect16stacks_in_32749 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_32749 .link_effect16stacks_in_32749 a:hover {
	color: #d04c3f;
}

#stacks_in_32749 .link_effect16stacks_in_32749 a::before,
#stacks_in_32749 .link_effect16stacks_in_32749 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_32749 .link_effect16stacks_in_32749 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_32749 .link_effect16stacks_in_32749 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_32749 .link_effect16stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect16stacks_in_32749 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_32749 .link_effect17stacks_in_32749 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_32749 .link_effect17stacks_in_32749 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_32749 .link_effect17stacks_in_32749 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_32749 .link_effect18stacks_in_32749 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32749 .link_effect18stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect18stacks_in_32749 a::before,
#stacks_in_32749 .link_effect18stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32749 .link_effect18stacks_in_32749 {
}

#stacks_in_32749 .link_effect18stacks_in_32749 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_32749 .link_effect18stacks_in_32749 a::before,
#stacks_in_32749 .link_effect18stacks_in_32749 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32749 .link_effect18stacks_in_32749 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32749 .link_effect18stacks_in_32749 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_32749 .link_effect18stacks_in_32749 a:hover,
#stacks_in_32749 .link_effect18stacks_in_32749 a:focus {
	color: #fff;
}

#stacks_in_32749 .link_effect18stacks_in_32749 a:hover::before,
#stacks_in_32749 .link_effect18stacks_in_32749 a:focus::before,
#stacks_in_32749 .link_effect18stacks_in_32749 a:hover::after,
#stacks_in_32749 .link_effect18stacks_in_32749 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_32749 .link_effect19stacks_in_32749 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32749 .link_effect19stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect19stacks_in_32749 a::before,
#stacks_in_32749 .link_effect19stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_32749 a {
}

.link_effect19stacks_in_32749 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_32749 a:hover::after,
.link_effect19stacks_in_32749 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_32749 .link_effect20stacks_in_32749 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32749 .link_effect20stacks_in_32749 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32749 .link_effect20stacks_in_32749 a::before,
#stacks_in_32749 .link_effect20stacks_in_32749 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_32749 a {
}

.link_effect20stacks_in_32749 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_32749 a:hover::after,
.link_effect20stacks_in_32749 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_32751 {
	padding:  20px;
}

#stacks_in_32752 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32675Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32675Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32675Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32675Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32675Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32675Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32675Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32675Calligrapher h6, .stacks_in_32675Calligrapher h5, .stacks_in_32675Calligrapher h4, .stacks_in_32675Calligrapher h3, .stacks_in_32675Calligrapher h2, .stacks_in_32675Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32675Calligrapher, .stacks_in_32675Calligrapher h1, .stacks_in_32675Calligrapher h2, .stacks_in_32675Calligrapher h3, .stacks_in_32675Calligrapher h4, .stacks_in_32675Calligrapher h5, .stacks_in_32675Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32675Calligrapher, .stacks_in_32675Calligrapher h1, .stacks_in_32675Calligrapher h2, .stacks_in_32675Calligrapher h3, .stacks_in_32675Calligrapher h4, .stacks_in_32675Calligrapher h5, .stacks_in_32675Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32675targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32675Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32675Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32675Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32675Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32675 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_32753 {
	padding:  20px;
}

#stacks_in_32754 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_32738{padding-left:0px;padding-right:0px;}#stacks_in_32738 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32738 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32738 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32738 > .jack.width-static{width:500px}#stacks_in_32738 > .jack.width-flexible{width:100%}#stacks_in_32738 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32738 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32738 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32738 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32738 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32738 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32738 > .jack::after{border-radius:0px}#stacks_in_32738 > .jack.border-detailed-radius,#stacks_in_32738 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_32738 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32738 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32738 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32738 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32738 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32738 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32738 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32738 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32738 > .jack.bg-image:not(.glass){}#stacks_in_32738 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32738 > .jack.bg-image.glass.after,#stacks_in_32738 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32738 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32738 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32738 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32738 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32738 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32738 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32738 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32738 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32738 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32738 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32738 > .jack.bg-image.glass.after,#stacks_in_32738 > .glass.jack.bg-image::after{}#stacks_in_32738 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32738 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32738 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32738 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32738 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32738 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32738 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32738 > .jack.peek-shadow::before,#stacks_in_32738 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32738 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32738 > .jack{overflow:hidden;}#stacks_in_32738 > .jack.height-static{height:100px}#stacks_in_32738 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32676Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32676Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32676Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32676Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32676Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32676Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32676Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32676Calligrapher h6, .stacks_in_32676Calligrapher h5, .stacks_in_32676Calligrapher h4, .stacks_in_32676Calligrapher h3, .stacks_in_32676Calligrapher h2, .stacks_in_32676Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32676Calligrapher, .stacks_in_32676Calligrapher h1, .stacks_in_32676Calligrapher h2, .stacks_in_32676Calligrapher h3, .stacks_in_32676Calligrapher h4, .stacks_in_32676Calligrapher h5, .stacks_in_32676Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32676Calligrapher, .stacks_in_32676Calligrapher h1, .stacks_in_32676Calligrapher h2, .stacks_in_32676Calligrapher h3, .stacks_in_32676Calligrapher h4, .stacks_in_32676Calligrapher h5, .stacks_in_32676Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32676targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32676Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32676Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32676Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32676Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32676 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_32755 a:before, .link_effect1stacks_in_32755 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_32755 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_32755 a:hover:before, .link_effect1stacks_in_32755 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_32755 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_32755 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_32755 .link_effect2stacks_in_32755 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_32755 .link_effect2stacks_in_32755 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_32755 .link_effect3stacks_in_32755 {
  	text-decoration: none;
}

#stacks_in_32755 .link_effect3stacks_in_32755 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_32755 .link_effect3stacks_in_32755 a:hover,
#stacks_in_32755 .link_effect3stacks_in_32755 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_32755 .link_effect4stacks_in_32755 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32755 .link_effect4stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect4stacks_in_32755 a::before,
#stacks_in_32755 .link_effect%stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32755 .link_effect4stacks_in_32755 {
}

#stacks_in_32755 .link_effect4stacks_in_32755 a {
	font-weight:bold !important;;
}

#stacks_in_32755 .link_effect4stacks_in_32755 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32755 .link_effect4stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect4stacks_in_32755 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_32755 .link_effect5stacks_in_32755 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32755 .link_effect5stacks_in_32755 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect5stacks_in_32755 a::before,
#stacks_in_32755 .link_effect5stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32755 .link_effect5stacks_in_32755 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_32755 .link_effect5stacks_in_32755 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_32755 .link_effect5stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect5stacks_in_32755 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_32755 .link_effect6stacks_in_32755 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32755 .link_effect6stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect6stacks_in_32755 a::before,
#stacks_in_32755 .link_effect6stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32755 .link_effect6stacks_in_32755 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32755 .link_effect6stacks_in_32755 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_32755 .link_effect6stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect6stacks_in_32755 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_32755 .link_effect7stacks_in_32755 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32755 .link_effect7stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect7stacks_in_32755 a::before,
#stacks_in_32755 .link_effect7stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32755 .link_effect7stacks_in_32755 {
	position: relative;
}

#stacks_in_32755 .link_effect7stacks_in_32755 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_32755 .link_effect7stacks_in_32755 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32755 .link_effect7stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect7stacks_in_32755 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_32755 .link_effect8stacks_in_32755 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32755 .link_effect8stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect8stacks_in_32755 a::before,
#stacks_in_32755 .link_effect8stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_32755 .link_effect8stacks_in_32755 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_32755 .link_effect8stacks_in_32755 a:hover,
#stacks_in_32755 .link_effect8stacks_in_32755 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32755 .link_effect8stacks_in_32755 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_32755 .link_effect8stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect8stacks_in_32755 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_32755 .link_effect9stacks_in_32755 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32755 .link_effect9stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect9stacks_in_32755 a::before,
#stacks_in_32755 .link_effect9stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32755 .link_effect9stacks_in_32755 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_32755 .link_effect9stacks_in_32755 a:hover,
#stacks_in_32755 .link_effect9stacks_in_32755 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32755 .link_effect9stacks_in_32755 a::before,
#stacks_in_32755 .link_effect9stacks_in_32755 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_32755 .link_effect9stacks_in_32755 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_32755 .link_effect9stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect9stacks_in_32755 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_32755 .link_effect9stacks_in_32755 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_32755 .link_effect10stacks_in_32755 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32755 .link_effect10stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect10stacks_in_32755 a::before,
#stacks_in_32755 .link_effect10stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32755 .link_effect10stacks_in_32755 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_32755 .link_effect10stacks_in_32755 a:hover,
#stacks_in_32755 .link_effect10stacks_in_32755 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32755 .link_effect10stacks_in_32755 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32755 .link_effect10stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect10stacks_in_32755 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_32755 .link_effect11stacks_in_32755 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32755 .link_effect11stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect11stacks_in_32755 a::before,
#stacks_in_32755 .link_effect11stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32755 .link_effect11stacks_in_32755 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_32755 .link_effect11stacks_in_32755 a:hover,
#stacks_in_32755 .link_effect11stacks_in_32755 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32755 .link_effect11stacks_in_32755 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_32755 .link_effect11stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect11stacks_in_32755 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_32755 .link_effect12stacks_in_32755 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32755 .link_effect12stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect12stacks_in_32755 a::before,
#stacks_in_32755 .link_effect12stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32755 .link_effect12stacks_in_32755 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32755 .link_effect12stacks_in_32755 a:hover,
#stacks_in_32755 .link_effect12stacks_in_32755 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_32755 .link_effect12stacks_in_32755 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_32755 .link_effect12stacks_in_32755 a,
#stacks_in_32755 .link_effect12stacks_in_32755 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_32755 .link_effect12stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect12stacks_in_32755 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_32755 .link_effect13stacks_in_32755 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32755 .link_effect13stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect13stacks_in_32755 a::before,
#stacks_in_32755 .link_effect13stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32755 .link_effect13stacks_in_32755 {
}

#stacks_in_32755 .link_effect13stacks_in_32755 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_32755 .link_effect13stacks_in_32755 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_32755 .link_effect13stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect13stacks_in_32755 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_32755 .link_effect14stacks_in_32755 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32755 .link_effect14stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect14stacks_in_32755 a::before,
#stacks_in_32755 .link_effect14stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32755 .link_effect14stacks_in_32755 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32755 .link_effect14stacks_in_32755 a:hover,
#stacks_in_32755 .link_effect14stacks_in_32755 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_32755 .link_effect14stacks_in_32755 a::before,
#stacks_in_32755 .link_effect14stacks_in_32755 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_32755 .link_effect14stacks_in_32755 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_32755 .link_effect14stacks_in_32755 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32755 .link_effect14stacks_in_32755 a:hover::after,
#stacks_in_32755 .link_effect14stacks_in_32755 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_32755 .link_effect15stacks_in_32755 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32755 .link_effect15stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect15stacks_in_32755 a::before,
#stacks_in_32755 .link_effect15stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32755 .link_effect15stacks_in_32755 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32755 .link_effect15stacks_in_32755 a::before,
#stacks_in_32755 .link_effect15stacks_in_32755 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_32755 .link_effect15stacks_in_32755 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_32755 .link_effect15stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect15stacks_in_32755 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_32755 .link_effect15stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect15stacks_in_32755 a:focus::before,
#stacks_in_32755 .link_effect15stacks_in_32755 a:hover::after,
#stacks_in_32755 .link_effect15stacks_in_32755 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32755 .link_effect15stacks_in_32755 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_32755 .link_effect15stacks_in_32755 a:hover::after,
#stacks_in_32755 .link_effect15stacks_in_32755 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_32755 .link_effect16stacks_in_32755 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32755 .link_effect16stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect16stacks_in_32755 a::before,
#stacks_in_32755 .link_effect16stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32755 .link_effect16stacks_in_32755 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_32755 .link_effect16stacks_in_32755 a:hover {
	color: #d04c3f;
}

#stacks_in_32755 .link_effect16stacks_in_32755 a::before,
#stacks_in_32755 .link_effect16stacks_in_32755 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_32755 .link_effect16stacks_in_32755 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_32755 .link_effect16stacks_in_32755 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_32755 .link_effect16stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect16stacks_in_32755 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_32755 .link_effect17stacks_in_32755 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_32755 .link_effect17stacks_in_32755 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_32755 .link_effect17stacks_in_32755 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_32755 .link_effect18stacks_in_32755 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32755 .link_effect18stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect18stacks_in_32755 a::before,
#stacks_in_32755 .link_effect18stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32755 .link_effect18stacks_in_32755 {
}

#stacks_in_32755 .link_effect18stacks_in_32755 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_32755 .link_effect18stacks_in_32755 a::before,
#stacks_in_32755 .link_effect18stacks_in_32755 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32755 .link_effect18stacks_in_32755 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32755 .link_effect18stacks_in_32755 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_32755 .link_effect18stacks_in_32755 a:hover,
#stacks_in_32755 .link_effect18stacks_in_32755 a:focus {
	color: #fff;
}

#stacks_in_32755 .link_effect18stacks_in_32755 a:hover::before,
#stacks_in_32755 .link_effect18stacks_in_32755 a:focus::before,
#stacks_in_32755 .link_effect18stacks_in_32755 a:hover::after,
#stacks_in_32755 .link_effect18stacks_in_32755 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_32755 .link_effect19stacks_in_32755 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32755 .link_effect19stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect19stacks_in_32755 a::before,
#stacks_in_32755 .link_effect19stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_32755 a {
}

.link_effect19stacks_in_32755 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_32755 a:hover::after,
.link_effect19stacks_in_32755 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_32755 .link_effect20stacks_in_32755 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32755 .link_effect20stacks_in_32755 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32755 .link_effect20stacks_in_32755 a::before,
#stacks_in_32755 .link_effect20stacks_in_32755 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_32755 a {
}

.link_effect20stacks_in_32755 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_32755 a:hover::after,
.link_effect20stacks_in_32755 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_32757 {
	padding:  20px;
}

#stacks_in_32758 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32677Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32677Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32677Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32677Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32677Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32677Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32677Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32677Calligrapher h6, .stacks_in_32677Calligrapher h5, .stacks_in_32677Calligrapher h4, .stacks_in_32677Calligrapher h3, .stacks_in_32677Calligrapher h2, .stacks_in_32677Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32677Calligrapher, .stacks_in_32677Calligrapher h1, .stacks_in_32677Calligrapher h2, .stacks_in_32677Calligrapher h3, .stacks_in_32677Calligrapher h4, .stacks_in_32677Calligrapher h5, .stacks_in_32677Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32677Calligrapher, .stacks_in_32677Calligrapher h1, .stacks_in_32677Calligrapher h2, .stacks_in_32677Calligrapher h3, .stacks_in_32677Calligrapher h4, .stacks_in_32677Calligrapher h5, .stacks_in_32677Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32677targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32677Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32677Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32677Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32677Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32677 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_32759 {
	padding:  20px;
}

#stacks_in_32760 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_32876{padding-left:0px;padding-right:0px;}#stacks_in_32876 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32876 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32876 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32876 > .jack.width-static{width:500px}#stacks_in_32876 > .jack.width-flexible{width:100%}#stacks_in_32876 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32876 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32876 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32876 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32876 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32876 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32876 > .jack::after{border-radius:0px}#stacks_in_32876 > .jack.border-detailed-radius,#stacks_in_32876 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_32876 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32876 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32876 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_32876 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32876 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32876 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32876 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32876 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32876 > .jack.bg-image:not(.glass){}#stacks_in_32876 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32876 > .jack.bg-image.glass.after,#stacks_in_32876 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32876 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32876 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32876 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32876 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32876 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32876 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32876 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32876 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32876 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32876 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32876 > .jack.bg-image.glass.after,#stacks_in_32876 > .glass.jack.bg-image::after{}#stacks_in_32876 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32876 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32876 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32876 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32876 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32876 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32876 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32876 > .jack.peek-shadow::before,#stacks_in_32876 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32876 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32876 > .jack{overflow:visible;}#stacks_in_32876 > .jack.height-static{height:100px}#stacks_in_32876 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_33012{}#stacks_in_33012 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33012 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33012 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33012 > .jack.width-static{width:500px}#stacks_in_33012 > .jack.width-flexible{width:100%}#stacks_in_33012 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33012 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33012 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33012 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33012 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33012 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33012 > .jack::after{border-radius:15px}#stacks_in_33012 > .jack.border-detailed-radius,#stacks_in_33012 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_33012 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33012 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33012 > .jack.bg-gradient{background-color:#A1EBA6}#stacks_in_33012 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33012 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33012 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33012 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33012 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33012 > .jack.bg-image:not(.glass){}#stacks_in_33012 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33012 > .jack.bg-image.glass.after,#stacks_in_33012 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33012 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33012 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33012 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33012 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33012 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33012 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33012 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33012 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33012 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33012 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33012 > .jack.bg-image.glass.after,#stacks_in_33012 > .glass.jack.bg-image::after{}#stacks_in_33012 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33012 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33012 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_33012 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33012 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33012 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33012 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33012 > .jack.peek-shadow::before,#stacks_in_33012 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33012 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33012 > .jack{overflow:hidden;}#stacks_in_33012 > .jack.height-static{height:100px}#stacks_in_33012 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_33012 {
	margin: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33013Calligrapher{			font-size: 110% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33013Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33013Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33013Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33013Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33013Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33013Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33013Calligrapher h6, .stacks_in_33013Calligrapher h5, .stacks_in_33013Calligrapher h4, .stacks_in_33013Calligrapher h3, .stacks_in_33013Calligrapher h2, .stacks_in_33013Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33013Calligrapher, .stacks_in_33013Calligrapher h1, .stacks_in_33013Calligrapher h2, .stacks_in_33013Calligrapher h3, .stacks_in_33013Calligrapher h4, .stacks_in_33013Calligrapher h5, .stacks_in_33013Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33013Calligrapher, .stacks_in_33013Calligrapher h1, .stacks_in_33013Calligrapher h2, .stacks_in_33013Calligrapher h3, .stacks_in_33013Calligrapher h4, .stacks_in_33013Calligrapher h5, .stacks_in_33013Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33013targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33013Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33013Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33013Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33013Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_33014x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_33014x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_33014x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_33014 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_33011 {
	font-weight: lighter;
}
#stacks_in_33017{}#stacks_in_33017 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33017 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33017 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33017 > .jack.width-static{width:500px}#stacks_in_33017 > .jack.width-flexible{width:100%}#stacks_in_33017 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33017 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33017 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33017 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33017 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33017 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33017 > .jack::after{border-radius:15px}#stacks_in_33017 > .jack.border-detailed-radius,#stacks_in_33017 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33017 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33017 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33017 > .jack.bg-gradient{background-color:#A1EBA6}#stacks_in_33017 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33017 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33017 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33017 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33017 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33017 > .jack.bg-image:not(.glass){}#stacks_in_33017 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33017 > .jack.bg-image.glass.after,#stacks_in_33017 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33017 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33017 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33017 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33017 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33017 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33017 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33017 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33017 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33017 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33017 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33017 > .jack.bg-image.glass.after,#stacks_in_33017 > .glass.jack.bg-image::after{}#stacks_in_33017 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33017 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33017 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_33017 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33017 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33017 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33017 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33017 > .jack.peek-shadow::before,#stacks_in_33017 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33017 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33017 > .jack{overflow:hidden;}#stacks_in_33017 > .jack.height-static{height:100px}#stacks_in_33017 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_33017 {
	margin: 0px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32879Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32879Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32879Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32879Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32879Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32879Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32879Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32879Calligrapher h6, .stacks_in_32879Calligrapher h5, .stacks_in_32879Calligrapher h4, .stacks_in_32879Calligrapher h3, .stacks_in_32879Calligrapher h2, .stacks_in_32879Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32879Calligrapher, .stacks_in_32879Calligrapher h1, .stacks_in_32879Calligrapher h2, .stacks_in_32879Calligrapher h3, .stacks_in_32879Calligrapher h4, .stacks_in_32879Calligrapher h5, .stacks_in_32879Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32879Calligrapher, .stacks_in_32879Calligrapher h1, .stacks_in_32879Calligrapher h2, .stacks_in_32879Calligrapher h3, .stacks_in_32879Calligrapher h4, .stacks_in_32879Calligrapher h5, .stacks_in_32879Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32879targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32879Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32879Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32879Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32879Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32879 {
	margin: 20px 15px 20px 15px;
}

#stacks_in_33029 {
	margin: 0px 3px 0px 40px;
	padding: 0px 5px 0px 5px;
}

#stacks_in_33032 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33058Calligrapher{			font-size: 100% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33058Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33058Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33058Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33058Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33058Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33058Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33058Calligrapher h6, .stacks_in_33058Calligrapher h5, .stacks_in_33058Calligrapher h4, .stacks_in_33058Calligrapher h3, .stacks_in_33058Calligrapher h2, .stacks_in_33058Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33058Calligrapher, .stacks_in_33058Calligrapher h1, .stacks_in_33058Calligrapher h2, .stacks_in_33058Calligrapher h3, .stacks_in_33058Calligrapher h4, .stacks_in_33058Calligrapher h5, .stacks_in_33058Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33058Calligrapher, .stacks_in_33058Calligrapher h1, .stacks_in_33058Calligrapher h2, .stacks_in_33058Calligrapher h3, .stacks_in_33058Calligrapher h4, .stacks_in_33058Calligrapher h5, .stacks_in_33058Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33058targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33058Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33058Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33058Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33058Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33058 {
	margin: 0px 15px 10px 15px;
}

/* @group My Group */
#stacks_in_33063 .wrapper{position: relative;padding: 10px;}
#stacks_in_33063 h2.acc_trigger {
	border: px solid ;
	font-size: 18px;
	background: #C0D5C7;
	color: #FFFFFF;
	padding: 5px;
	margin: 5px 0 5px;
	cursor: pointer;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0 0 3px #000000;
	}
#stacks_in_33063 h2.acc_trigger:hover, #stacks_in_33063 h2.active{
	border: px  solid ;
	font-size: 18px;
	background: #A4B1AD;
	color: #FFFFFF;
	padding: 5px;
	}

#stacks_in_33063 h2.acc_trigger a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	
}
#stacks_in_33063 h2.acc_trigger a:hover, #stacks_in_33063 h2.active a {
	color: #FFFFFF;
}
#stacks_in_33063 h2.active {}
#stacks_in_33063 .acc_container {
	margin: 10px 0; padding: 0;
	overflow: hidden;
	clear: both;
	background-color: #FFFFFF;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	box-shadow: 0 0 3px #000000;
	font-size: 1.1em;}
#stacks_in_33063 .acc_container .block {
	padding: 16px;
}
/* @end */
#stacks_in_33063 {
	margin: 0px 15px 0px 15px;
}
#stacks_in_33156{padding-left:0px;padding-right:0px;}#stacks_in_33156 > .jack{margin:0px;padding:10px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33156 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33156 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33156 > .jack.width-static{width:500px}#stacks_in_33156 > .jack.width-flexible{width:100%}#stacks_in_33156 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33156 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33156 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33156 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33156 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33156 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33156 > .jack::after{border-radius:15px}#stacks_in_33156 > .jack.border-detailed-radius,#stacks_in_33156 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_33156 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33156 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33156 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_33156 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33156 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33156 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33156 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33156 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33156 > .jack.bg-image:not(.glass){}#stacks_in_33156 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33156 > .jack.bg-image.glass.after,#stacks_in_33156 > .glass.jack.bg-image::after{opacity:0.25;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33156 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33156 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33156 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33156 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33156 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33156 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33156 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33156 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33156 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33156 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33156 > .jack.bg-image.glass.after,#stacks_in_33156 > .glass.jack.bg-image::after{}#stacks_in_33156 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33156 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33156 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_33156 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33156 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33156 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33156 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33156 > .jack.peek-shadow::before,#stacks_in_33156 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33156 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33156 > .jack{overflow:hidden;}#stacks_in_33156 > .jack.height-static{height:100px}#stacks_in_33156 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_33158 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_33158 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_33158 #jwresp_col2_stacks_in_33158{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_33158 #jwresp_col1_stacks_in_33158,#stacks_in_33158 #jwresp_col2_stacks_in_33158{width:100%;float:none;display:block}#stacks_in_33158 #jwresp_col1_stacks_in_33158{margin-bottom:15px}}
#stacks_in_33159 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;}#stacks_in_33159 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_33159 .fluid-image.unlimited img{width:100% !important}#stacks_in_33159 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_33159 .fluid-image.align-left img{float:left}#stacks_in_33159 .fluid-image.align-right img{float:right}
/* Start dooHeader X stack CSS code */.stacks_in_33162x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_33162x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_33162x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_33162 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_33163 {
	font-weight: lighter;
}

#stacks_in_33164 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_33167 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_33169 {
	margin:  3px;
	padding:  5px;
}
#stacks_in_33171{padding-left:0px;padding-right:0px;}#stacks_in_33171 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33171 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33171 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33171 > .jack.width-static{width:500px}#stacks_in_33171 > .jack.width-flexible{width:100%}#stacks_in_33171 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33171 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33171 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33171 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33171 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33171 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33171 > .jack::after{border-radius:0px}#stacks_in_33171 > .jack.border-detailed-radius,#stacks_in_33171 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33171 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33171 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33171 > .jack.bg-gradient{background-color:#F9FFC1}#stacks_in_33171 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33171 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33171 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33171 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33171 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33171 > .jack.bg-image:not(.glass){}#stacks_in_33171 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33171 > .jack.bg-image.glass.after,#stacks_in_33171 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33171 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33171 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33171 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33171 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33171 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33171 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33171 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33171 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33171 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33171 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33171 > .jack.bg-image.glass.after,#stacks_in_33171 > .glass.jack.bg-image::after{}#stacks_in_33171 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33171 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33171 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33171 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33171 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33171 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33171 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33171 > .jack.peek-shadow::before,#stacks_in_33171 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33171 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33171 > .jack{overflow:hidden;}#stacks_in_33171 > .jack.height-static{height:100px}#stacks_in_33171 > .jack.height-minmax{min-height:100px;max-height:800px}

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

#stacks_in_33174 {
	line-height: 2em;
}
#stacks_in_33175{padding-left:0px;padding-right:0px;}#stacks_in_33175 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33175 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33175 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33175 > .jack.width-static{width:500px}#stacks_in_33175 > .jack.width-flexible{width:100%}#stacks_in_33175 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33175 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33175 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33175 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33175 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33175 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33175 > .jack::after{border-radius:0px}#stacks_in_33175 > .jack.border-detailed-radius,#stacks_in_33175 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33175 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33175 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33175 > .jack.bg-gradient{background-color:#B1FFB4}#stacks_in_33175 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33175 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33175 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33175 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33175 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33175 > .jack.bg-image:not(.glass){}#stacks_in_33175 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33175 > .jack.bg-image.glass.after,#stacks_in_33175 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33175 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33175 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33175 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33175 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33175 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33175 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33175 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33175 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33175 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33175 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33175 > .jack.bg-image.glass.after,#stacks_in_33175 > .glass.jack.bg-image::after{}#stacks_in_33175 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33175 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33175 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33175 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33175 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33175 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33175 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33175 > .jack.peek-shadow::before,#stacks_in_33175 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33175 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33175 > .jack{overflow:hidden;}#stacks_in_33175 > .jack.height-static{height:100px}#stacks_in_33175 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_33179 {
	line-height: 2em;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_33188 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_33188 .borderbuttonthing, #stacks_in_33188 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_33188 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_33188 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_33414{}#stacks_in_33414 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33414 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33414 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33414 > .jack.width-static{width:500px}#stacks_in_33414 > .jack.width-flexible{width:100%}#stacks_in_33414 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33414 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33414 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33414 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33414 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33414 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33414 > .jack::after{border-radius:20px}#stacks_in_33414 > .jack.border-detailed-radius,#stacks_in_33414 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33414 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33414 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33414 > .jack.bg-gradient{background-color:#88F355}#stacks_in_33414 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33414 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33414 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33414 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33414 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33414 > .jack.bg-image:not(.glass){}#stacks_in_33414 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33414 > .jack.bg-image.glass.after,#stacks_in_33414 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33414 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33414 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33414 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33414 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33414 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33414 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33414 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33414 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33414 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33414 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33414 > .jack.bg-image.glass.after,#stacks_in_33414 > .glass.jack.bg-image::after{}#stacks_in_33414 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33414 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33414 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_33414 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33414 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33414 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33414 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33414 > .jack.peek-shadow::before,#stacks_in_33414 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33414 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33414 > .jack{overflow:hidden;}#stacks_in_33414 > .jack.height-static{height:100px}#stacks_in_33414 > .jack.height-minmax{min-height:100px;max-height:800px}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_33415 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_33415 .borderbuttonthing, #stacks_in_33415 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #3BC255;
	color: #22C351;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_33415 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_33415 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_33137 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999;}#stacks_in_33137 .fluid-image img:hover{-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999}#stacks_in_33137 .fluid-image.unlimited img{width:100% !important}#stacks_in_33137 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_33137 .fluid-image.align-left img{float:left}#stacks_in_33137 .fluid-image.align-right img{float:right}

#stacks_in_33137 {
	margin: 15px 0px 0px 0px;
}
#stacks_in_33139{padding-left:0px;padding-right:0px;}#stacks_in_33139 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33139 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33139 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33139 > .jack.width-static{width:500px}#stacks_in_33139 > .jack.width-flexible{width:100%}#stacks_in_33139 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33139 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33139 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33139 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33139 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33139 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33139 > .jack::after{border-radius:0px}#stacks_in_33139 > .jack.border-detailed-radius,#stacks_in_33139 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_33139 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33139 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33139 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_33139 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33139 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33139 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33139 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33139 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33139 > .jack.bg-image:not(.glass){}#stacks_in_33139 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33139 > .jack.bg-image.glass.after,#stacks_in_33139 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33139 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33139 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33139 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33139 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33139 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33139 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33139 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33139 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33139 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33139 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33139 > .jack.bg-image.glass.after,#stacks_in_33139 > .glass.jack.bg-image::after{}#stacks_in_33139 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33139 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33139 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_33139 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33139 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33139 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33139 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33139 > .jack.peek-shadow::before,#stacks_in_33139 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33139 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33139 > .jack{overflow:hidden;}#stacks_in_33139 > .jack.height-static{height:100px}#stacks_in_33139 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33059Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33059Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33059Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33059Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33059Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33059Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33059Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33059Calligrapher h6, .stacks_in_33059Calligrapher h5, .stacks_in_33059Calligrapher h4, .stacks_in_33059Calligrapher h3, .stacks_in_33059Calligrapher h2, .stacks_in_33059Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33059Calligrapher, .stacks_in_33059Calligrapher h1, .stacks_in_33059Calligrapher h2, .stacks_in_33059Calligrapher h3, .stacks_in_33059Calligrapher h4, .stacks_in_33059Calligrapher h5, .stacks_in_33059Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33059Calligrapher, .stacks_in_33059Calligrapher h1, .stacks_in_33059Calligrapher h2, .stacks_in_33059Calligrapher h3, .stacks_in_33059Calligrapher h4, .stacks_in_33059Calligrapher h5, .stacks_in_33059Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33059targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33059Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33059Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33059Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33059Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33059 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_33141 a:before, .link_effect1stacks_in_33141 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_33141 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_33141 a:hover:before, .link_effect1stacks_in_33141 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_33141 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_33141 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_33141 .link_effect2stacks_in_33141 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_33141 .link_effect2stacks_in_33141 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_33141 .link_effect3stacks_in_33141 {
  	text-decoration: none;
}

#stacks_in_33141 .link_effect3stacks_in_33141 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_33141 .link_effect3stacks_in_33141 a:hover,
#stacks_in_33141 .link_effect3stacks_in_33141 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_33141 .link_effect4stacks_in_33141 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33141 .link_effect4stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect4stacks_in_33141 a::before,
#stacks_in_33141 .link_effect%stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33141 .link_effect4stacks_in_33141 {
}

#stacks_in_33141 .link_effect4stacks_in_33141 a {
	font-weight:bold !important;;
}

#stacks_in_33141 .link_effect4stacks_in_33141 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_33141 .link_effect4stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect4stacks_in_33141 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_33141 .link_effect5stacks_in_33141 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33141 .link_effect5stacks_in_33141 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect5stacks_in_33141 a::before,
#stacks_in_33141 .link_effect5stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33141 .link_effect5stacks_in_33141 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_33141 .link_effect5stacks_in_33141 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_33141 .link_effect5stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect5stacks_in_33141 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_33141 .link_effect6stacks_in_33141 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33141 .link_effect6stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect6stacks_in_33141 a::before,
#stacks_in_33141 .link_effect6stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33141 .link_effect6stacks_in_33141 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_33141 .link_effect6stacks_in_33141 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_33141 .link_effect6stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect6stacks_in_33141 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_33141 .link_effect7stacks_in_33141 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33141 .link_effect7stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect7stacks_in_33141 a::before,
#stacks_in_33141 .link_effect7stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33141 .link_effect7stacks_in_33141 {
	position: relative;
}

#stacks_in_33141 .link_effect7stacks_in_33141 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_33141 .link_effect7stacks_in_33141 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_33141 .link_effect7stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect7stacks_in_33141 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_33141 .link_effect8stacks_in_33141 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33141 .link_effect8stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect8stacks_in_33141 a::before,
#stacks_in_33141 .link_effect8stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_33141 .link_effect8stacks_in_33141 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_33141 .link_effect8stacks_in_33141 a:hover,
#stacks_in_33141 .link_effect8stacks_in_33141 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33141 .link_effect8stacks_in_33141 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_33141 .link_effect8stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect8stacks_in_33141 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_33141 .link_effect9stacks_in_33141 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33141 .link_effect9stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect9stacks_in_33141 a::before,
#stacks_in_33141 .link_effect9stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33141 .link_effect9stacks_in_33141 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_33141 .link_effect9stacks_in_33141 a:hover,
#stacks_in_33141 .link_effect9stacks_in_33141 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33141 .link_effect9stacks_in_33141 a::before,
#stacks_in_33141 .link_effect9stacks_in_33141 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_33141 .link_effect9stacks_in_33141 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_33141 .link_effect9stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect9stacks_in_33141 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_33141 .link_effect9stacks_in_33141 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_33141 .link_effect10stacks_in_33141 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33141 .link_effect10stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect10stacks_in_33141 a::before,
#stacks_in_33141 .link_effect10stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33141 .link_effect10stacks_in_33141 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_33141 .link_effect10stacks_in_33141 a:hover,
#stacks_in_33141 .link_effect10stacks_in_33141 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_33141 .link_effect10stacks_in_33141 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_33141 .link_effect10stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect10stacks_in_33141 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_33141 .link_effect11stacks_in_33141 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33141 .link_effect11stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect11stacks_in_33141 a::before,
#stacks_in_33141 .link_effect11stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33141 .link_effect11stacks_in_33141 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_33141 .link_effect11stacks_in_33141 a:hover,
#stacks_in_33141 .link_effect11stacks_in_33141 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33141 .link_effect11stacks_in_33141 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_33141 .link_effect11stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect11stacks_in_33141 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_33141 .link_effect12stacks_in_33141 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33141 .link_effect12stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect12stacks_in_33141 a::before,
#stacks_in_33141 .link_effect12stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33141 .link_effect12stacks_in_33141 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_33141 .link_effect12stacks_in_33141 a:hover,
#stacks_in_33141 .link_effect12stacks_in_33141 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_33141 .link_effect12stacks_in_33141 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_33141 .link_effect12stacks_in_33141 a,
#stacks_in_33141 .link_effect12stacks_in_33141 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_33141 .link_effect12stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect12stacks_in_33141 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_33141 .link_effect13stacks_in_33141 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33141 .link_effect13stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect13stacks_in_33141 a::before,
#stacks_in_33141 .link_effect13stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33141 .link_effect13stacks_in_33141 {
}

#stacks_in_33141 .link_effect13stacks_in_33141 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_33141 .link_effect13stacks_in_33141 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_33141 .link_effect13stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect13stacks_in_33141 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_33141 .link_effect14stacks_in_33141 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33141 .link_effect14stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect14stacks_in_33141 a::before,
#stacks_in_33141 .link_effect14stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33141 .link_effect14stacks_in_33141 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_33141 .link_effect14stacks_in_33141 a:hover,
#stacks_in_33141 .link_effect14stacks_in_33141 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_33141 .link_effect14stacks_in_33141 a::before,
#stacks_in_33141 .link_effect14stacks_in_33141 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_33141 .link_effect14stacks_in_33141 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_33141 .link_effect14stacks_in_33141 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_33141 .link_effect14stacks_in_33141 a:hover::after,
#stacks_in_33141 .link_effect14stacks_in_33141 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_33141 .link_effect15stacks_in_33141 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33141 .link_effect15stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect15stacks_in_33141 a::before,
#stacks_in_33141 .link_effect15stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33141 .link_effect15stacks_in_33141 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_33141 .link_effect15stacks_in_33141 a::before,
#stacks_in_33141 .link_effect15stacks_in_33141 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_33141 .link_effect15stacks_in_33141 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_33141 .link_effect15stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect15stacks_in_33141 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_33141 .link_effect15stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect15stacks_in_33141 a:focus::before,
#stacks_in_33141 .link_effect15stacks_in_33141 a:hover::after,
#stacks_in_33141 .link_effect15stacks_in_33141 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_33141 .link_effect15stacks_in_33141 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_33141 .link_effect15stacks_in_33141 a:hover::after,
#stacks_in_33141 .link_effect15stacks_in_33141 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_33141 .link_effect16stacks_in_33141 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33141 .link_effect16stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect16stacks_in_33141 a::before,
#stacks_in_33141 .link_effect16stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33141 .link_effect16stacks_in_33141 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_33141 .link_effect16stacks_in_33141 a:hover {
	color: #d04c3f;
}

#stacks_in_33141 .link_effect16stacks_in_33141 a::before,
#stacks_in_33141 .link_effect16stacks_in_33141 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_33141 .link_effect16stacks_in_33141 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_33141 .link_effect16stacks_in_33141 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_33141 .link_effect16stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect16stacks_in_33141 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_33141 .link_effect17stacks_in_33141 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_33141 .link_effect17stacks_in_33141 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_33141 .link_effect17stacks_in_33141 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_33141 .link_effect18stacks_in_33141 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33141 .link_effect18stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect18stacks_in_33141 a::before,
#stacks_in_33141 .link_effect18stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33141 .link_effect18stacks_in_33141 {
}

#stacks_in_33141 .link_effect18stacks_in_33141 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_33141 .link_effect18stacks_in_33141 a::before,
#stacks_in_33141 .link_effect18stacks_in_33141 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_33141 .link_effect18stacks_in_33141 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_33141 .link_effect18stacks_in_33141 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_33141 .link_effect18stacks_in_33141 a:hover,
#stacks_in_33141 .link_effect18stacks_in_33141 a:focus {
	color: #fff;
}

#stacks_in_33141 .link_effect18stacks_in_33141 a:hover::before,
#stacks_in_33141 .link_effect18stacks_in_33141 a:focus::before,
#stacks_in_33141 .link_effect18stacks_in_33141 a:hover::after,
#stacks_in_33141 .link_effect18stacks_in_33141 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_33141 .link_effect19stacks_in_33141 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33141 .link_effect19stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect19stacks_in_33141 a::before,
#stacks_in_33141 .link_effect19stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_33141 a {
}

.link_effect19stacks_in_33141 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_33141 a:hover::after,
.link_effect19stacks_in_33141 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_33141 .link_effect20stacks_in_33141 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33141 .link_effect20stacks_in_33141 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33141 .link_effect20stacks_in_33141 a::before,
#stacks_in_33141 .link_effect20stacks_in_33141 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_33141 a {
}

.link_effect20stacks_in_33141 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_33141 a:hover::after,
.link_effect20stacks_in_33141 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_33143 {
	padding:  20px;
}

#stacks_in_33144 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33060Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33060Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33060Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33060Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33060Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33060Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33060Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33060Calligrapher h6, .stacks_in_33060Calligrapher h5, .stacks_in_33060Calligrapher h4, .stacks_in_33060Calligrapher h3, .stacks_in_33060Calligrapher h2, .stacks_in_33060Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33060Calligrapher, .stacks_in_33060Calligrapher h1, .stacks_in_33060Calligrapher h2, .stacks_in_33060Calligrapher h3, .stacks_in_33060Calligrapher h4, .stacks_in_33060Calligrapher h5, .stacks_in_33060Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33060Calligrapher, .stacks_in_33060Calligrapher h1, .stacks_in_33060Calligrapher h2, .stacks_in_33060Calligrapher h3, .stacks_in_33060Calligrapher h4, .stacks_in_33060Calligrapher h5, .stacks_in_33060Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33060targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33060Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33060Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33060Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33060Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33060 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_33145 {
	padding:  20px;
}

#stacks_in_33146 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_33147{padding-left:0px;padding-right:0px;}#stacks_in_33147 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33147 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33147 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33147 > .jack.width-static{width:500px}#stacks_in_33147 > .jack.width-flexible{width:100%}#stacks_in_33147 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33147 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33147 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33147 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33147 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33147 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33147 > .jack::after{border-radius:0px}#stacks_in_33147 > .jack.border-detailed-radius,#stacks_in_33147 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_33147 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33147 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33147 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_33147 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33147 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33147 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33147 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33147 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33147 > .jack.bg-image:not(.glass){}#stacks_in_33147 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33147 > .jack.bg-image.glass.after,#stacks_in_33147 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33147 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33147 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33147 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33147 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33147 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33147 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33147 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33147 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33147 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33147 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33147 > .jack.bg-image.glass.after,#stacks_in_33147 > .glass.jack.bg-image::after{}#stacks_in_33147 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33147 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33147 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_33147 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33147 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33147 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33147 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33147 > .jack.peek-shadow::before,#stacks_in_33147 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33147 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33147 > .jack{overflow:hidden;}#stacks_in_33147 > .jack.height-static{height:100px}#stacks_in_33147 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33061Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33061Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33061Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33061Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33061Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33061Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33061Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33061Calligrapher h6, .stacks_in_33061Calligrapher h5, .stacks_in_33061Calligrapher h4, .stacks_in_33061Calligrapher h3, .stacks_in_33061Calligrapher h2, .stacks_in_33061Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33061Calligrapher, .stacks_in_33061Calligrapher h1, .stacks_in_33061Calligrapher h2, .stacks_in_33061Calligrapher h3, .stacks_in_33061Calligrapher h4, .stacks_in_33061Calligrapher h5, .stacks_in_33061Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33061Calligrapher, .stacks_in_33061Calligrapher h1, .stacks_in_33061Calligrapher h2, .stacks_in_33061Calligrapher h3, .stacks_in_33061Calligrapher h4, .stacks_in_33061Calligrapher h5, .stacks_in_33061Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33061targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33061Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33061Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33061Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33061Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33061 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_33150 a:before, .link_effect1stacks_in_33150 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_33150 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_33150 a:hover:before, .link_effect1stacks_in_33150 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_33150 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_33150 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_33150 .link_effect2stacks_in_33150 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_33150 .link_effect2stacks_in_33150 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_33150 .link_effect3stacks_in_33150 {
  	text-decoration: none;
}

#stacks_in_33150 .link_effect3stacks_in_33150 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_33150 .link_effect3stacks_in_33150 a:hover,
#stacks_in_33150 .link_effect3stacks_in_33150 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_33150 .link_effect4stacks_in_33150 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33150 .link_effect4stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect4stacks_in_33150 a::before,
#stacks_in_33150 .link_effect%stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33150 .link_effect4stacks_in_33150 {
}

#stacks_in_33150 .link_effect4stacks_in_33150 a {
	font-weight:bold !important;;
}

#stacks_in_33150 .link_effect4stacks_in_33150 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_33150 .link_effect4stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect4stacks_in_33150 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_33150 .link_effect5stacks_in_33150 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33150 .link_effect5stacks_in_33150 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect5stacks_in_33150 a::before,
#stacks_in_33150 .link_effect5stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33150 .link_effect5stacks_in_33150 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_33150 .link_effect5stacks_in_33150 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_33150 .link_effect5stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect5stacks_in_33150 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_33150 .link_effect6stacks_in_33150 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33150 .link_effect6stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect6stacks_in_33150 a::before,
#stacks_in_33150 .link_effect6stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33150 .link_effect6stacks_in_33150 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_33150 .link_effect6stacks_in_33150 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_33150 .link_effect6stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect6stacks_in_33150 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_33150 .link_effect7stacks_in_33150 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33150 .link_effect7stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect7stacks_in_33150 a::before,
#stacks_in_33150 .link_effect7stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33150 .link_effect7stacks_in_33150 {
	position: relative;
}

#stacks_in_33150 .link_effect7stacks_in_33150 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_33150 .link_effect7stacks_in_33150 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_33150 .link_effect7stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect7stacks_in_33150 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_33150 .link_effect8stacks_in_33150 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33150 .link_effect8stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect8stacks_in_33150 a::before,
#stacks_in_33150 .link_effect8stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_33150 .link_effect8stacks_in_33150 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_33150 .link_effect8stacks_in_33150 a:hover,
#stacks_in_33150 .link_effect8stacks_in_33150 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33150 .link_effect8stacks_in_33150 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_33150 .link_effect8stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect8stacks_in_33150 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_33150 .link_effect9stacks_in_33150 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33150 .link_effect9stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect9stacks_in_33150 a::before,
#stacks_in_33150 .link_effect9stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33150 .link_effect9stacks_in_33150 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_33150 .link_effect9stacks_in_33150 a:hover,
#stacks_in_33150 .link_effect9stacks_in_33150 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33150 .link_effect9stacks_in_33150 a::before,
#stacks_in_33150 .link_effect9stacks_in_33150 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_33150 .link_effect9stacks_in_33150 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_33150 .link_effect9stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect9stacks_in_33150 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_33150 .link_effect9stacks_in_33150 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_33150 .link_effect10stacks_in_33150 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33150 .link_effect10stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect10stacks_in_33150 a::before,
#stacks_in_33150 .link_effect10stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33150 .link_effect10stacks_in_33150 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_33150 .link_effect10stacks_in_33150 a:hover,
#stacks_in_33150 .link_effect10stacks_in_33150 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_33150 .link_effect10stacks_in_33150 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_33150 .link_effect10stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect10stacks_in_33150 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_33150 .link_effect11stacks_in_33150 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33150 .link_effect11stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect11stacks_in_33150 a::before,
#stacks_in_33150 .link_effect11stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33150 .link_effect11stacks_in_33150 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_33150 .link_effect11stacks_in_33150 a:hover,
#stacks_in_33150 .link_effect11stacks_in_33150 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33150 .link_effect11stacks_in_33150 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_33150 .link_effect11stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect11stacks_in_33150 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_33150 .link_effect12stacks_in_33150 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33150 .link_effect12stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect12stacks_in_33150 a::before,
#stacks_in_33150 .link_effect12stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33150 .link_effect12stacks_in_33150 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_33150 .link_effect12stacks_in_33150 a:hover,
#stacks_in_33150 .link_effect12stacks_in_33150 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_33150 .link_effect12stacks_in_33150 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_33150 .link_effect12stacks_in_33150 a,
#stacks_in_33150 .link_effect12stacks_in_33150 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_33150 .link_effect12stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect12stacks_in_33150 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_33150 .link_effect13stacks_in_33150 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33150 .link_effect13stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect13stacks_in_33150 a::before,
#stacks_in_33150 .link_effect13stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33150 .link_effect13stacks_in_33150 {
}

#stacks_in_33150 .link_effect13stacks_in_33150 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_33150 .link_effect13stacks_in_33150 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_33150 .link_effect13stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect13stacks_in_33150 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_33150 .link_effect14stacks_in_33150 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33150 .link_effect14stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect14stacks_in_33150 a::before,
#stacks_in_33150 .link_effect14stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33150 .link_effect14stacks_in_33150 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_33150 .link_effect14stacks_in_33150 a:hover,
#stacks_in_33150 .link_effect14stacks_in_33150 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_33150 .link_effect14stacks_in_33150 a::before,
#stacks_in_33150 .link_effect14stacks_in_33150 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_33150 .link_effect14stacks_in_33150 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_33150 .link_effect14stacks_in_33150 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_33150 .link_effect14stacks_in_33150 a:hover::after,
#stacks_in_33150 .link_effect14stacks_in_33150 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_33150 .link_effect15stacks_in_33150 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33150 .link_effect15stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect15stacks_in_33150 a::before,
#stacks_in_33150 .link_effect15stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33150 .link_effect15stacks_in_33150 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_33150 .link_effect15stacks_in_33150 a::before,
#stacks_in_33150 .link_effect15stacks_in_33150 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_33150 .link_effect15stacks_in_33150 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_33150 .link_effect15stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect15stacks_in_33150 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_33150 .link_effect15stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect15stacks_in_33150 a:focus::before,
#stacks_in_33150 .link_effect15stacks_in_33150 a:hover::after,
#stacks_in_33150 .link_effect15stacks_in_33150 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_33150 .link_effect15stacks_in_33150 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_33150 .link_effect15stacks_in_33150 a:hover::after,
#stacks_in_33150 .link_effect15stacks_in_33150 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_33150 .link_effect16stacks_in_33150 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33150 .link_effect16stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect16stacks_in_33150 a::before,
#stacks_in_33150 .link_effect16stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33150 .link_effect16stacks_in_33150 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_33150 .link_effect16stacks_in_33150 a:hover {
	color: #d04c3f;
}

#stacks_in_33150 .link_effect16stacks_in_33150 a::before,
#stacks_in_33150 .link_effect16stacks_in_33150 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_33150 .link_effect16stacks_in_33150 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_33150 .link_effect16stacks_in_33150 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_33150 .link_effect16stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect16stacks_in_33150 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_33150 .link_effect17stacks_in_33150 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_33150 .link_effect17stacks_in_33150 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_33150 .link_effect17stacks_in_33150 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_33150 .link_effect18stacks_in_33150 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33150 .link_effect18stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect18stacks_in_33150 a::before,
#stacks_in_33150 .link_effect18stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33150 .link_effect18stacks_in_33150 {
}

#stacks_in_33150 .link_effect18stacks_in_33150 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_33150 .link_effect18stacks_in_33150 a::before,
#stacks_in_33150 .link_effect18stacks_in_33150 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_33150 .link_effect18stacks_in_33150 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_33150 .link_effect18stacks_in_33150 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_33150 .link_effect18stacks_in_33150 a:hover,
#stacks_in_33150 .link_effect18stacks_in_33150 a:focus {
	color: #fff;
}

#stacks_in_33150 .link_effect18stacks_in_33150 a:hover::before,
#stacks_in_33150 .link_effect18stacks_in_33150 a:focus::before,
#stacks_in_33150 .link_effect18stacks_in_33150 a:hover::after,
#stacks_in_33150 .link_effect18stacks_in_33150 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_33150 .link_effect19stacks_in_33150 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33150 .link_effect19stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect19stacks_in_33150 a::before,
#stacks_in_33150 .link_effect19stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_33150 a {
}

.link_effect19stacks_in_33150 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_33150 a:hover::after,
.link_effect19stacks_in_33150 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_33150 .link_effect20stacks_in_33150 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33150 .link_effect20stacks_in_33150 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33150 .link_effect20stacks_in_33150 a::before,
#stacks_in_33150 .link_effect20stacks_in_33150 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_33150 a {
}

.link_effect20stacks_in_33150 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_33150 a:hover::after,
.link_effect20stacks_in_33150 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_33152 {
	padding:  20px;
}

#stacks_in_33153 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33062Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33062Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33062Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33062Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33062Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33062Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33062Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33062Calligrapher h6, .stacks_in_33062Calligrapher h5, .stacks_in_33062Calligrapher h4, .stacks_in_33062Calligrapher h3, .stacks_in_33062Calligrapher h2, .stacks_in_33062Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33062Calligrapher, .stacks_in_33062Calligrapher h1, .stacks_in_33062Calligrapher h2, .stacks_in_33062Calligrapher h3, .stacks_in_33062Calligrapher h4, .stacks_in_33062Calligrapher h5, .stacks_in_33062Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33062Calligrapher, .stacks_in_33062Calligrapher h1, .stacks_in_33062Calligrapher h2, .stacks_in_33062Calligrapher h3, .stacks_in_33062Calligrapher h4, .stacks_in_33062Calligrapher h5, .stacks_in_33062Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33062targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33062Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33062Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33062Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33062Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33062 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_33154 {
	padding:  20px;
}

#stacks_in_33155 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_32460{padding-left:0px;padding-right:0px;}#stacks_in_32460 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32460 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32460 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32460 > .jack.width-static{width:500px}#stacks_in_32460 > .jack.width-flexible{width:100%}#stacks_in_32460 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32460 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32460 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32460 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32460 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32460 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32460 > .jack::after{border-radius:0px}#stacks_in_32460 > .jack.border-detailed-radius,#stacks_in_32460 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_32460 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32460 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32460 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_32460 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32460 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32460 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32460 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32460 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32460 > .jack.bg-image:not(.glass){}#stacks_in_32460 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32460 > .jack.bg-image.glass.after,#stacks_in_32460 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32460 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32460 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32460 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32460 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32460 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32460 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32460 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32460 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32460 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32460 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32460 > .jack.bg-image.glass.after,#stacks_in_32460 > .glass.jack.bg-image::after{}#stacks_in_32460 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32460 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32460 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32460 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32460 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32460 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32460 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32460 > .jack.peek-shadow::before,#stacks_in_32460 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32460 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32460 > .jack{overflow:visible;}#stacks_in_32460 > .jack.height-static{height:100px}#stacks_in_32460 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32461{}#stacks_in_32461 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32461 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32461 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32461 > .jack.width-static{width:500px}#stacks_in_32461 > .jack.width-flexible{width:100%}#stacks_in_32461 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32461 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32461 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32461 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32461 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32461 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32461 > .jack::after{border-radius:15px}#stacks_in_32461 > .jack.border-detailed-radius,#stacks_in_32461 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_32461 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32461 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32461 > .jack.bg-gradient{background-color:#5CA8C4}#stacks_in_32461 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32461 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32461 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32461 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32461 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32461 > .jack.bg-image:not(.glass){}#stacks_in_32461 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32461 > .jack.bg-image.glass.after,#stacks_in_32461 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32461 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32461 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32461 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32461 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32461 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32461 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32461 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32461 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32461 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32461 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32461 > .jack.bg-image.glass.after,#stacks_in_32461 > .glass.jack.bg-image::after{}#stacks_in_32461 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32461 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32461 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_32461 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32461 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32461 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32461 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32461 > .jack.peek-shadow::before,#stacks_in_32461 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32461 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32461 > .jack{overflow:hidden;}#stacks_in_32461 > .jack.height-static{height:100px}#stacks_in_32461 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_32461 {
	margin: 20px 0px 0px 0px;
}
#stacks_in_32554{}#stacks_in_32554 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32554 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32554 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32554 > .jack.width-static{width:500px}#stacks_in_32554 > .jack.width-flexible{width:100%}#stacks_in_32554 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32554 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32554 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32554 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32554 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32554 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32554 > .jack::after{border-radius:15px}#stacks_in_32554 > .jack.border-detailed-radius,#stacks_in_32554 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_32554 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32554 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32554 > .jack.bg-gradient{background-color:#5CA8C4}#stacks_in_32554 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32554 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32554 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32554 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32554 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32554 > .jack.bg-image:not(.glass){}#stacks_in_32554 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32554 > .jack.bg-image.glass.after,#stacks_in_32554 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32554 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32554 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32554 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32554 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32554 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32554 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32554 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32554 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32554 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32554 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32554 > .jack.bg-image.glass.after,#stacks_in_32554 > .glass.jack.bg-image::after{}#stacks_in_32554 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32554 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32554 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_32554 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32554 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32554 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32554 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32554 > .jack.peek-shadow::before,#stacks_in_32554 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32554 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32554 > .jack{overflow:hidden;}#stacks_in_32554 > .jack.height-static{height:100px}#stacks_in_32554 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32555Calligrapher{			font-size: 75% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32555Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32555Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32555Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32555Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32555Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32555Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32555Calligrapher h6, .stacks_in_32555Calligrapher h5, .stacks_in_32555Calligrapher h4, .stacks_in_32555Calligrapher h3, .stacks_in_32555Calligrapher h2, .stacks_in_32555Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32555Calligrapher, .stacks_in_32555Calligrapher h1, .stacks_in_32555Calligrapher h2, .stacks_in_32555Calligrapher h3, .stacks_in_32555Calligrapher h4, .stacks_in_32555Calligrapher h5, .stacks_in_32555Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32555Calligrapher, .stacks_in_32555Calligrapher h1, .stacks_in_32555Calligrapher h2, .stacks_in_32555Calligrapher h3, .stacks_in_32555Calligrapher h4, .stacks_in_32555Calligrapher h5, .stacks_in_32555Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32555targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32555Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32555Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32555Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32555Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_32556x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32556x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_32556x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32556 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_32557 {
	font-weight: lighter;
}
#stacks_in_32462{padding-left:0px;padding-right:0px;}#stacks_in_32462 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32462 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32462 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32462 > .jack.width-static{width:500px}#stacks_in_32462 > .jack.width-flexible{width:100%}#stacks_in_32462 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32462 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32462 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32462 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32462 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32462 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32462 > .jack::after{border-radius:0px}#stacks_in_32462 > .jack.border-detailed-radius,#stacks_in_32462 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_32462 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32462 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32462 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_32462 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32462 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32462 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32462 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32462 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32462 > .jack.bg-image:not(.glass){}#stacks_in_32462 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32462 > .jack.bg-image.glass.after,#stacks_in_32462 > .glass.jack.bg-image::after{opacity:0.20;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32462 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32462 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32462 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32462 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32462 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32462 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32462 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32462 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32462 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32462 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32462 > .jack.bg-image.glass.after,#stacks_in_32462 > .glass.jack.bg-image::after{}#stacks_in_32462 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32462 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32462 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32462 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32462 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32462 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32462 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32462 > .jack.peek-shadow::before,#stacks_in_32462 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32462 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32462 > .jack{overflow:visible;}#stacks_in_32462 > .jack.height-static{height:100px}#stacks_in_32462 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32560{padding-left:0px;padding-right:0px;}#stacks_in_32560 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32560 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32560 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32560 > .jack.width-static{width:500px}#stacks_in_32560 > .jack.width-flexible{width:100%}#stacks_in_32560 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32560 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32560 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32560 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32560 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32560 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32560 > .jack::after{border-radius:0px}#stacks_in_32560 > .jack.border-detailed-radius,#stacks_in_32560 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_32560 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32560 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32560 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_32560 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32560 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32560 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32560 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32560 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32560 > .jack.bg-image:not(.glass){}#stacks_in_32560 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32560 > .jack.bg-image.glass.after,#stacks_in_32560 > .glass.jack.bg-image::after{opacity:0.20;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32560 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32560 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32560 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32560 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32560 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32560 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32560 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32560 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32560 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32560 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32560 > .jack.bg-image.glass.after,#stacks_in_32560 > .glass.jack.bg-image::after{}#stacks_in_32560 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32560 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32560 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32560 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32560 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32560 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32560 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32560 > .jack.peek-shadow::before,#stacks_in_32560 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32560 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32560 > .jack{overflow:visible;}#stacks_in_32560 > .jack.height-static{height:100px}#stacks_in_32560 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32561Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32561Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32561Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32561Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32561Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32561Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32561Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32561Calligrapher h6, .stacks_in_32561Calligrapher h5, .stacks_in_32561Calligrapher h4, .stacks_in_32561Calligrapher h3, .stacks_in_32561Calligrapher h2, .stacks_in_32561Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32561Calligrapher, .stacks_in_32561Calligrapher h1, .stacks_in_32561Calligrapher h2, .stacks_in_32561Calligrapher h3, .stacks_in_32561Calligrapher h4, .stacks_in_32561Calligrapher h5, .stacks_in_32561Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32561Calligrapher, .stacks_in_32561Calligrapher h1, .stacks_in_32561Calligrapher h2, .stacks_in_32561Calligrapher h3, .stacks_in_32561Calligrapher h4, .stacks_in_32561Calligrapher h5, .stacks_in_32561Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32561targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32561Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32561Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32561Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32561Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32561 {
	margin: 0px 10px 0px 10px;
}

#stacks_in_32562 {
	padding: 0px 5px 5px 5px;
}

#stacks_in_32564 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32464Calligrapher{			font-size: 70% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32464Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32464Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32464Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32464Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32464Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32464Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32464Calligrapher h6, .stacks_in_32464Calligrapher h5, .stacks_in_32464Calligrapher h4, .stacks_in_32464Calligrapher h3, .stacks_in_32464Calligrapher h2, .stacks_in_32464Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32464Calligrapher, .stacks_in_32464Calligrapher h1, .stacks_in_32464Calligrapher h2, .stacks_in_32464Calligrapher h3, .stacks_in_32464Calligrapher h4, .stacks_in_32464Calligrapher h5, .stacks_in_32464Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32464Calligrapher, .stacks_in_32464Calligrapher h1, .stacks_in_32464Calligrapher h2, .stacks_in_32464Calligrapher h3, .stacks_in_32464Calligrapher h4, .stacks_in_32464Calligrapher h5, .stacks_in_32464Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32464targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32464Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32464Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32464Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32464Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32464 {
	margin: 0px 0px 10px 0px;
}

/* @group My Group */
#stacks_in_32480 .wrapper{position: relative;padding: 10px;}
#stacks_in_32480 h2.acc_trigger {
	border: px solid ;
	font-size: 18px;
	background: #4A7588;
	color: #FFFFFF;
	padding: 5px;
	margin: 5px 0 5px;
	cursor: pointer;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0 0 3px #000000;
	}
#stacks_in_32480 h2.acc_trigger:hover, #stacks_in_32480 h2.active{
	border: px  solid ;
	font-size: 18px;
	background: #5E70A7;
	color: #FFFFFF;
	padding: 5px;
	}

#stacks_in_32480 h2.acc_trigger a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	
}
#stacks_in_32480 h2.acc_trigger a:hover, #stacks_in_32480 h2.active a {
	color: #FFFFFF;
}
#stacks_in_32480 h2.active {}
#stacks_in_32480 .acc_container {
	margin: 10px 0; padding: 0;
	overflow: hidden;
	clear: both;
	background-color: #FFFFFF;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	box-shadow: 0 0 3px #000000;
	font-size: 1.1em;}
#stacks_in_32480 .acc_container .block {
	padding: 16px;
}
/* @end */
#stacks_in_32480 {
	margin: 0px 10px 0px 10px;
}
#stacks_in_32483{padding-left:0px;padding-right:0px;}#stacks_in_32483 > .jack{margin:0px;padding:10px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32483 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32483 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32483 > .jack.width-static{width:500px}#stacks_in_32483 > .jack.width-flexible{width:100%}#stacks_in_32483 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32483 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32483 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32483 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32483 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32483 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32483 > .jack::after{border-radius:15px}#stacks_in_32483 > .jack.border-detailed-radius,#stacks_in_32483 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_32483 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32483 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32483 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32483 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32483 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32483 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32483 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32483 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32483 > .jack.bg-image:not(.glass){}#stacks_in_32483 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32483 > .jack.bg-image.glass.after,#stacks_in_32483 > .glass.jack.bg-image::after{opacity:0.25;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32483 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32483 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32483 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32483 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32483 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32483 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32483 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32483 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32483 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32483 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32483 > .jack.bg-image.glass.after,#stacks_in_32483 > .glass.jack.bg-image::after{}#stacks_in_32483 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32483 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32483 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32483 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32483 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32483 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32483 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32483 > .jack.peek-shadow::before,#stacks_in_32483 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32483 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32483 > .jack{overflow:hidden;}#stacks_in_32483 > .jack.height-static{height:100px}#stacks_in_32483 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32487_2 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;}#stacks_in_32487_2 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_32487_2 .fluid-image.unlimited img{width:100% !important}#stacks_in_32487_2 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_32487_2 .fluid-image.align-left img{float:left}#stacks_in_32487_2 .fluid-image.align-right img{float:right}
/* Start dooHeader X stack CSS code */.stacks_in_32568x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32568x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32568x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32568 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_32567 {
	font-weight: lighter;
}

#stacks_in_32492 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_32494 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_32496 {
	margin:  3px;
	padding:  5px;
}
#stacks_in_32498{padding-left:0px;padding-right:0px;}#stacks_in_32498 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32498 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32498 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32498 > .jack.width-static{width:500px}#stacks_in_32498 > .jack.width-flexible{width:100%}#stacks_in_32498 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32498 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32498 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32498 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32498 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32498 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32498 > .jack::after{border-radius:0px}#stacks_in_32498 > .jack.border-detailed-radius,#stacks_in_32498 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_32498 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32498 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32498 > .jack.bg-gradient{background-color:#B1FFB4}#stacks_in_32498 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32498 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32498 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32498 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32498 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32498 > .jack.bg-image:not(.glass){}#stacks_in_32498 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32498 > .jack.bg-image.glass.after,#stacks_in_32498 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32498 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32498 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32498 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32498 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32498 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32498 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32498 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32498 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32498 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32498 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32498 > .jack.bg-image.glass.after,#stacks_in_32498 > .glass.jack.bg-image::after{}#stacks_in_32498 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32498 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32498 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32498 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32498 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32498 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32498 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32498 > .jack.peek-shadow::before,#stacks_in_32498 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32498 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32498 > .jack{overflow:hidden;}#stacks_in_32498 > .jack.height-static{height:100px}#stacks_in_32498 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_32502 {
	line-height: 2em;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_32503 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_32503 .borderbuttonthing, #stacks_in_32503 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_32503 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_32503 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_34336{}#stacks_in_34336 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_34336 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_34336 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_34336 > .jack.width-static{width:500px}#stacks_in_34336 > .jack.width-flexible{width:100%}#stacks_in_34336 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_34336 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34336 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_34336 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_34336 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_34336 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_34336 > .jack::after{border-radius:15px}#stacks_in_34336 > .jack.border-detailed-radius,#stacks_in_34336 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_34336 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_34336 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_34336 > .jack.bg-gradient{background-color:#E1F4F5}#stacks_in_34336 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34336 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_34336 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_34336 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_34336 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34336 > .jack.bg-image:not(.glass){}#stacks_in_34336 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_34336 > .jack.bg-image.glass.after,#stacks_in_34336 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34336 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_34336 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34336 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_34336 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_34336 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_34336 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_34336 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34336 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_34336 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_34336 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34336 > .jack.bg-image.glass.after,#stacks_in_34336 > .glass.jack.bg-image::after{}#stacks_in_34336 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34336 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_34336 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_34336 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34336 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34336 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_34336 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_34336 > .jack.peek-shadow::before,#stacks_in_34336 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_34336 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_34336 > .jack{overflow:hidden;}#stacks_in_34336 > .jack.height-static{height:100px}#stacks_in_34336 > .jack.height-minmax{min-height:100px;max-height:800px}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_34337 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_34337 .borderbuttonthing, #stacks_in_34337 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 18px;
	padding: 0 20px;
	font-size: 12px;
	border: 2px solid #003367;
	color: #003367;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_34337 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_34337 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_32504{padding-left:0px;padding-right:0px;}#stacks_in_32504 > .jack{margin:0px;padding:10px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32504 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32504 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32504 > .jack.width-static{width:500px}#stacks_in_32504 > .jack.width-flexible{width:100%}#stacks_in_32504 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32504 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32504 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32504 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32504 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32504 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32504 > .jack::after{border-radius:15px}#stacks_in_32504 > .jack.border-detailed-radius,#stacks_in_32504 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_32504 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32504 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32504 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32504 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32504 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32504 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32504 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32504 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32504 > .jack.bg-image:not(.glass){}#stacks_in_32504 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32504 > .jack.bg-image.glass.after,#stacks_in_32504 > .glass.jack.bg-image::after{opacity:0.25;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32504 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32504 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32504 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32504 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32504 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32504 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32504 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32504 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32504 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32504 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32504 > .jack.bg-image.glass.after,#stacks_in_32504 > .glass.jack.bg-image::after{}#stacks_in_32504 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32504 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32504 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32504 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32504 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32504 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32504 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32504 > .jack.peek-shadow::before,#stacks_in_32504 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32504 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32504 > .jack{overflow:hidden;}#stacks_in_32504 > .jack.height-static{height:100px}#stacks_in_32504 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32508 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;}#stacks_in_32508 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_32508 .fluid-image.unlimited img{width:100% !important}#stacks_in_32508 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_32508 .fluid-image.align-left img{float:left}#stacks_in_32508 .fluid-image.align-right img{float:right}
/* Start dooHeader X stack CSS code */.stacks_in_33308x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_33308x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_33308x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_33308 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_33309 {
	font-weight: lighter;
}

#stacks_in_32514 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_32516 {
	margin:  3px;
	padding:  5px;
}
#stacks_in_32518{padding-left:0px;padding-right:0px;}#stacks_in_32518 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32518 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32518 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32518 > .jack.width-static{width:500px}#stacks_in_32518 > .jack.width-flexible{width:100%}#stacks_in_32518 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32518 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32518 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32518 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32518 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32518 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32518 > .jack::after{border-radius:0px}#stacks_in_32518 > .jack.border-detailed-radius,#stacks_in_32518 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_32518 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32518 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32518 > .jack.bg-gradient{background-color:#FFCCB8}#stacks_in_32518 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32518 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32518 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32518 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32518 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32518 > .jack.bg-image:not(.glass){}#stacks_in_32518 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32518 > .jack.bg-image.glass.after,#stacks_in_32518 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32518 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32518 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32518 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32518 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32518 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32518 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32518 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32518 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32518 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32518 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32518 > .jack.bg-image.glass.after,#stacks_in_32518 > .glass.jack.bg-image::after{}#stacks_in_32518 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32518 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32518 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_32518 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32518 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_32518 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32518 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32518 > .jack.peek-shadow::before,#stacks_in_32518 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_32518 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32518 > .jack{overflow:hidden;}#stacks_in_32518 > .jack.height-static{height:100px}#stacks_in_32518 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_32522 {
	line-height: 2em;
}
#stacks_in_32525 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999;}#stacks_in_32525 .fluid-image img:hover{-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999}#stacks_in_32525 .fluid-image.unlimited img{width:100% !important}#stacks_in_32525 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_32525 .fluid-image.align-left img{float:left}#stacks_in_32525 .fluid-image.align-right img{float:right}

#stacks_in_32525 {
	margin: 15px 0px 0px 0px;
}
#stacks_in_32527{padding-left:0px;padding-right:0px;}#stacks_in_32527 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32527 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32527 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32527 > .jack.width-static{width:500px}#stacks_in_32527 > .jack.width-flexible{width:100%}#stacks_in_32527 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32527 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32527 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32527 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32527 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32527 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32527 > .jack::after{border-radius:0px}#stacks_in_32527 > .jack.border-detailed-radius,#stacks_in_32527 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_32527 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32527 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32527 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32527 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32527 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32527 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32527 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32527 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32527 > .jack.bg-image:not(.glass){}#stacks_in_32527 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32527 > .jack.bg-image.glass.after,#stacks_in_32527 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32527 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32527 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32527 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32527 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32527 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32527 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32527 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32527 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32527 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32527 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32527 > .jack.bg-image.glass.after,#stacks_in_32527 > .glass.jack.bg-image::after{}#stacks_in_32527 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32527 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32527 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32527 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32527 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32527 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32527 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32527 > .jack.peek-shadow::before,#stacks_in_32527 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32527 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32527 > .jack{overflow:hidden;}#stacks_in_32527 > .jack.height-static{height:100px}#stacks_in_32527 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32465Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32465Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32465Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32465Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32465Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32465Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32465Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32465Calligrapher h6, .stacks_in_32465Calligrapher h5, .stacks_in_32465Calligrapher h4, .stacks_in_32465Calligrapher h3, .stacks_in_32465Calligrapher h2, .stacks_in_32465Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32465Calligrapher, .stacks_in_32465Calligrapher h1, .stacks_in_32465Calligrapher h2, .stacks_in_32465Calligrapher h3, .stacks_in_32465Calligrapher h4, .stacks_in_32465Calligrapher h5, .stacks_in_32465Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32465Calligrapher, .stacks_in_32465Calligrapher h1, .stacks_in_32465Calligrapher h2, .stacks_in_32465Calligrapher h3, .stacks_in_32465Calligrapher h4, .stacks_in_32465Calligrapher h5, .stacks_in_32465Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32465targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32465Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32465Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32465Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32465Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32465 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_32529 a:before, .link_effect1stacks_in_32529 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_32529 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_32529 a:hover:before, .link_effect1stacks_in_32529 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_32529 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_32529 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_32529 .link_effect2stacks_in_32529 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_32529 .link_effect2stacks_in_32529 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_32529 .link_effect3stacks_in_32529 {
  	text-decoration: none;
}

#stacks_in_32529 .link_effect3stacks_in_32529 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_32529 .link_effect3stacks_in_32529 a:hover,
#stacks_in_32529 .link_effect3stacks_in_32529 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_32529 .link_effect4stacks_in_32529 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32529 .link_effect4stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect4stacks_in_32529 a::before,
#stacks_in_32529 .link_effect%stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32529 .link_effect4stacks_in_32529 {
}

#stacks_in_32529 .link_effect4stacks_in_32529 a {
	font-weight:bold !important;;
}

#stacks_in_32529 .link_effect4stacks_in_32529 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32529 .link_effect4stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect4stacks_in_32529 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_32529 .link_effect5stacks_in_32529 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32529 .link_effect5stacks_in_32529 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect5stacks_in_32529 a::before,
#stacks_in_32529 .link_effect5stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32529 .link_effect5stacks_in_32529 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_32529 .link_effect5stacks_in_32529 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_32529 .link_effect5stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect5stacks_in_32529 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_32529 .link_effect6stacks_in_32529 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32529 .link_effect6stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect6stacks_in_32529 a::before,
#stacks_in_32529 .link_effect6stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32529 .link_effect6stacks_in_32529 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32529 .link_effect6stacks_in_32529 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_32529 .link_effect6stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect6stacks_in_32529 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_32529 .link_effect7stacks_in_32529 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32529 .link_effect7stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect7stacks_in_32529 a::before,
#stacks_in_32529 .link_effect7stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32529 .link_effect7stacks_in_32529 {
	position: relative;
}

#stacks_in_32529 .link_effect7stacks_in_32529 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_32529 .link_effect7stacks_in_32529 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32529 .link_effect7stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect7stacks_in_32529 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_32529 .link_effect8stacks_in_32529 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32529 .link_effect8stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect8stacks_in_32529 a::before,
#stacks_in_32529 .link_effect8stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_32529 .link_effect8stacks_in_32529 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_32529 .link_effect8stacks_in_32529 a:hover,
#stacks_in_32529 .link_effect8stacks_in_32529 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32529 .link_effect8stacks_in_32529 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_32529 .link_effect8stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect8stacks_in_32529 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_32529 .link_effect9stacks_in_32529 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32529 .link_effect9stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect9stacks_in_32529 a::before,
#stacks_in_32529 .link_effect9stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32529 .link_effect9stacks_in_32529 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_32529 .link_effect9stacks_in_32529 a:hover,
#stacks_in_32529 .link_effect9stacks_in_32529 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32529 .link_effect9stacks_in_32529 a::before,
#stacks_in_32529 .link_effect9stacks_in_32529 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_32529 .link_effect9stacks_in_32529 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_32529 .link_effect9stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect9stacks_in_32529 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_32529 .link_effect9stacks_in_32529 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_32529 .link_effect10stacks_in_32529 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32529 .link_effect10stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect10stacks_in_32529 a::before,
#stacks_in_32529 .link_effect10stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32529 .link_effect10stacks_in_32529 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_32529 .link_effect10stacks_in_32529 a:hover,
#stacks_in_32529 .link_effect10stacks_in_32529 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32529 .link_effect10stacks_in_32529 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32529 .link_effect10stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect10stacks_in_32529 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_32529 .link_effect11stacks_in_32529 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32529 .link_effect11stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect11stacks_in_32529 a::before,
#stacks_in_32529 .link_effect11stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32529 .link_effect11stacks_in_32529 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_32529 .link_effect11stacks_in_32529 a:hover,
#stacks_in_32529 .link_effect11stacks_in_32529 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32529 .link_effect11stacks_in_32529 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_32529 .link_effect11stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect11stacks_in_32529 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_32529 .link_effect12stacks_in_32529 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32529 .link_effect12stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect12stacks_in_32529 a::before,
#stacks_in_32529 .link_effect12stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32529 .link_effect12stacks_in_32529 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32529 .link_effect12stacks_in_32529 a:hover,
#stacks_in_32529 .link_effect12stacks_in_32529 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_32529 .link_effect12stacks_in_32529 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_32529 .link_effect12stacks_in_32529 a,
#stacks_in_32529 .link_effect12stacks_in_32529 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_32529 .link_effect12stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect12stacks_in_32529 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_32529 .link_effect13stacks_in_32529 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32529 .link_effect13stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect13stacks_in_32529 a::before,
#stacks_in_32529 .link_effect13stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32529 .link_effect13stacks_in_32529 {
}

#stacks_in_32529 .link_effect13stacks_in_32529 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_32529 .link_effect13stacks_in_32529 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_32529 .link_effect13stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect13stacks_in_32529 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_32529 .link_effect14stacks_in_32529 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32529 .link_effect14stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect14stacks_in_32529 a::before,
#stacks_in_32529 .link_effect14stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32529 .link_effect14stacks_in_32529 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32529 .link_effect14stacks_in_32529 a:hover,
#stacks_in_32529 .link_effect14stacks_in_32529 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_32529 .link_effect14stacks_in_32529 a::before,
#stacks_in_32529 .link_effect14stacks_in_32529 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_32529 .link_effect14stacks_in_32529 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_32529 .link_effect14stacks_in_32529 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32529 .link_effect14stacks_in_32529 a:hover::after,
#stacks_in_32529 .link_effect14stacks_in_32529 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_32529 .link_effect15stacks_in_32529 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32529 .link_effect15stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect15stacks_in_32529 a::before,
#stacks_in_32529 .link_effect15stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32529 .link_effect15stacks_in_32529 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32529 .link_effect15stacks_in_32529 a::before,
#stacks_in_32529 .link_effect15stacks_in_32529 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_32529 .link_effect15stacks_in_32529 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_32529 .link_effect15stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect15stacks_in_32529 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_32529 .link_effect15stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect15stacks_in_32529 a:focus::before,
#stacks_in_32529 .link_effect15stacks_in_32529 a:hover::after,
#stacks_in_32529 .link_effect15stacks_in_32529 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32529 .link_effect15stacks_in_32529 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_32529 .link_effect15stacks_in_32529 a:hover::after,
#stacks_in_32529 .link_effect15stacks_in_32529 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_32529 .link_effect16stacks_in_32529 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32529 .link_effect16stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect16stacks_in_32529 a::before,
#stacks_in_32529 .link_effect16stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32529 .link_effect16stacks_in_32529 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_32529 .link_effect16stacks_in_32529 a:hover {
	color: #d04c3f;
}

#stacks_in_32529 .link_effect16stacks_in_32529 a::before,
#stacks_in_32529 .link_effect16stacks_in_32529 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_32529 .link_effect16stacks_in_32529 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_32529 .link_effect16stacks_in_32529 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_32529 .link_effect16stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect16stacks_in_32529 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_32529 .link_effect17stacks_in_32529 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_32529 .link_effect17stacks_in_32529 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_32529 .link_effect17stacks_in_32529 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_32529 .link_effect18stacks_in_32529 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32529 .link_effect18stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect18stacks_in_32529 a::before,
#stacks_in_32529 .link_effect18stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32529 .link_effect18stacks_in_32529 {
}

#stacks_in_32529 .link_effect18stacks_in_32529 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_32529 .link_effect18stacks_in_32529 a::before,
#stacks_in_32529 .link_effect18stacks_in_32529 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32529 .link_effect18stacks_in_32529 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32529 .link_effect18stacks_in_32529 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_32529 .link_effect18stacks_in_32529 a:hover,
#stacks_in_32529 .link_effect18stacks_in_32529 a:focus {
	color: #fff;
}

#stacks_in_32529 .link_effect18stacks_in_32529 a:hover::before,
#stacks_in_32529 .link_effect18stacks_in_32529 a:focus::before,
#stacks_in_32529 .link_effect18stacks_in_32529 a:hover::after,
#stacks_in_32529 .link_effect18stacks_in_32529 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_32529 .link_effect19stacks_in_32529 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32529 .link_effect19stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect19stacks_in_32529 a::before,
#stacks_in_32529 .link_effect19stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_32529 a {
}

.link_effect19stacks_in_32529 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_32529 a:hover::after,
.link_effect19stacks_in_32529 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_32529 .link_effect20stacks_in_32529 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32529 .link_effect20stacks_in_32529 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32529 .link_effect20stacks_in_32529 a::before,
#stacks_in_32529 .link_effect20stacks_in_32529 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_32529 a {
}

.link_effect20stacks_in_32529 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_32529 a:hover::after,
.link_effect20stacks_in_32529 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_32531 {
	padding:  20px;
}

#stacks_in_32532 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32466Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32466Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32466Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32466Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32466Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32466Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32466Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32466Calligrapher h6, .stacks_in_32466Calligrapher h5, .stacks_in_32466Calligrapher h4, .stacks_in_32466Calligrapher h3, .stacks_in_32466Calligrapher h2, .stacks_in_32466Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32466Calligrapher, .stacks_in_32466Calligrapher h1, .stacks_in_32466Calligrapher h2, .stacks_in_32466Calligrapher h3, .stacks_in_32466Calligrapher h4, .stacks_in_32466Calligrapher h5, .stacks_in_32466Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32466Calligrapher, .stacks_in_32466Calligrapher h1, .stacks_in_32466Calligrapher h2, .stacks_in_32466Calligrapher h3, .stacks_in_32466Calligrapher h4, .stacks_in_32466Calligrapher h5, .stacks_in_32466Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32466targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32466Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32466Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32466Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32466Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32466 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_32533 {
	padding:  20px;
}

#stacks_in_32534 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_32535 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999;}#stacks_in_32535 .fluid-image img:hover{-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999}#stacks_in_32535 .fluid-image.unlimited img{width:100% !important}#stacks_in_32535 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_32535 .fluid-image.align-left img{float:left}#stacks_in_32535 .fluid-image.align-right img{float:right}

#stacks_in_32535 {
	margin: 15px 0px 0px 0px;
}
#stacks_in_32537{padding-left:0px;padding-right:0px;}#stacks_in_32537 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32537 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32537 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32537 > .jack.width-static{width:500px}#stacks_in_32537 > .jack.width-flexible{width:100%}#stacks_in_32537 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32537 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32537 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32537 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32537 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32537 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32537 > .jack::after{border-radius:0px}#stacks_in_32537 > .jack.border-detailed-radius,#stacks_in_32537 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_32537 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32537 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32537 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32537 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32537 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32537 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32537 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32537 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32537 > .jack.bg-image:not(.glass){}#stacks_in_32537 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32537 > .jack.bg-image.glass.after,#stacks_in_32537 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32537 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32537 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32537 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32537 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32537 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32537 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32537 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32537 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32537 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32537 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32537 > .jack.bg-image.glass.after,#stacks_in_32537 > .glass.jack.bg-image::after{}#stacks_in_32537 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32537 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32537 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32537 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32537 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32537 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32537 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32537 > .jack.peek-shadow::before,#stacks_in_32537 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32537 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32537 > .jack{overflow:hidden;}#stacks_in_32537 > .jack.height-static{height:100px}#stacks_in_32537 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32467Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32467Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32467Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32467Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32467Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32467Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32467Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32467Calligrapher h6, .stacks_in_32467Calligrapher h5, .stacks_in_32467Calligrapher h4, .stacks_in_32467Calligrapher h3, .stacks_in_32467Calligrapher h2, .stacks_in_32467Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32467Calligrapher, .stacks_in_32467Calligrapher h1, .stacks_in_32467Calligrapher h2, .stacks_in_32467Calligrapher h3, .stacks_in_32467Calligrapher h4, .stacks_in_32467Calligrapher h5, .stacks_in_32467Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32467Calligrapher, .stacks_in_32467Calligrapher h1, .stacks_in_32467Calligrapher h2, .stacks_in_32467Calligrapher h3, .stacks_in_32467Calligrapher h4, .stacks_in_32467Calligrapher h5, .stacks_in_32467Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32467targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32467Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32467Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32467Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32467Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32467 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_32539 a:before, .link_effect1stacks_in_32539 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_32539 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_32539 a:hover:before, .link_effect1stacks_in_32539 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_32539 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_32539 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_32539 .link_effect2stacks_in_32539 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_32539 .link_effect2stacks_in_32539 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_32539 .link_effect3stacks_in_32539 {
  	text-decoration: none;
}

#stacks_in_32539 .link_effect3stacks_in_32539 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_32539 .link_effect3stacks_in_32539 a:hover,
#stacks_in_32539 .link_effect3stacks_in_32539 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_32539 .link_effect4stacks_in_32539 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32539 .link_effect4stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect4stacks_in_32539 a::before,
#stacks_in_32539 .link_effect%stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32539 .link_effect4stacks_in_32539 {
}

#stacks_in_32539 .link_effect4stacks_in_32539 a {
	font-weight:bold !important;;
}

#stacks_in_32539 .link_effect4stacks_in_32539 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32539 .link_effect4stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect4stacks_in_32539 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_32539 .link_effect5stacks_in_32539 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32539 .link_effect5stacks_in_32539 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect5stacks_in_32539 a::before,
#stacks_in_32539 .link_effect5stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32539 .link_effect5stacks_in_32539 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_32539 .link_effect5stacks_in_32539 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_32539 .link_effect5stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect5stacks_in_32539 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_32539 .link_effect6stacks_in_32539 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32539 .link_effect6stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect6stacks_in_32539 a::before,
#stacks_in_32539 .link_effect6stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32539 .link_effect6stacks_in_32539 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32539 .link_effect6stacks_in_32539 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_32539 .link_effect6stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect6stacks_in_32539 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_32539 .link_effect7stacks_in_32539 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32539 .link_effect7stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect7stacks_in_32539 a::before,
#stacks_in_32539 .link_effect7stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32539 .link_effect7stacks_in_32539 {
	position: relative;
}

#stacks_in_32539 .link_effect7stacks_in_32539 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_32539 .link_effect7stacks_in_32539 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32539 .link_effect7stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect7stacks_in_32539 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_32539 .link_effect8stacks_in_32539 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32539 .link_effect8stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect8stacks_in_32539 a::before,
#stacks_in_32539 .link_effect8stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_32539 .link_effect8stacks_in_32539 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_32539 .link_effect8stacks_in_32539 a:hover,
#stacks_in_32539 .link_effect8stacks_in_32539 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32539 .link_effect8stacks_in_32539 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_32539 .link_effect8stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect8stacks_in_32539 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_32539 .link_effect9stacks_in_32539 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32539 .link_effect9stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect9stacks_in_32539 a::before,
#stacks_in_32539 .link_effect9stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32539 .link_effect9stacks_in_32539 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_32539 .link_effect9stacks_in_32539 a:hover,
#stacks_in_32539 .link_effect9stacks_in_32539 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32539 .link_effect9stacks_in_32539 a::before,
#stacks_in_32539 .link_effect9stacks_in_32539 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_32539 .link_effect9stacks_in_32539 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_32539 .link_effect9stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect9stacks_in_32539 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_32539 .link_effect9stacks_in_32539 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_32539 .link_effect10stacks_in_32539 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32539 .link_effect10stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect10stacks_in_32539 a::before,
#stacks_in_32539 .link_effect10stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32539 .link_effect10stacks_in_32539 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_32539 .link_effect10stacks_in_32539 a:hover,
#stacks_in_32539 .link_effect10stacks_in_32539 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32539 .link_effect10stacks_in_32539 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32539 .link_effect10stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect10stacks_in_32539 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_32539 .link_effect11stacks_in_32539 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32539 .link_effect11stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect11stacks_in_32539 a::before,
#stacks_in_32539 .link_effect11stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32539 .link_effect11stacks_in_32539 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_32539 .link_effect11stacks_in_32539 a:hover,
#stacks_in_32539 .link_effect11stacks_in_32539 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32539 .link_effect11stacks_in_32539 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_32539 .link_effect11stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect11stacks_in_32539 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_32539 .link_effect12stacks_in_32539 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32539 .link_effect12stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect12stacks_in_32539 a::before,
#stacks_in_32539 .link_effect12stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32539 .link_effect12stacks_in_32539 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32539 .link_effect12stacks_in_32539 a:hover,
#stacks_in_32539 .link_effect12stacks_in_32539 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_32539 .link_effect12stacks_in_32539 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_32539 .link_effect12stacks_in_32539 a,
#stacks_in_32539 .link_effect12stacks_in_32539 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_32539 .link_effect12stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect12stacks_in_32539 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_32539 .link_effect13stacks_in_32539 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32539 .link_effect13stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect13stacks_in_32539 a::before,
#stacks_in_32539 .link_effect13stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32539 .link_effect13stacks_in_32539 {
}

#stacks_in_32539 .link_effect13stacks_in_32539 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_32539 .link_effect13stacks_in_32539 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_32539 .link_effect13stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect13stacks_in_32539 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_32539 .link_effect14stacks_in_32539 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32539 .link_effect14stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect14stacks_in_32539 a::before,
#stacks_in_32539 .link_effect14stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32539 .link_effect14stacks_in_32539 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32539 .link_effect14stacks_in_32539 a:hover,
#stacks_in_32539 .link_effect14stacks_in_32539 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_32539 .link_effect14stacks_in_32539 a::before,
#stacks_in_32539 .link_effect14stacks_in_32539 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_32539 .link_effect14stacks_in_32539 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_32539 .link_effect14stacks_in_32539 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32539 .link_effect14stacks_in_32539 a:hover::after,
#stacks_in_32539 .link_effect14stacks_in_32539 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_32539 .link_effect15stacks_in_32539 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32539 .link_effect15stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect15stacks_in_32539 a::before,
#stacks_in_32539 .link_effect15stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32539 .link_effect15stacks_in_32539 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32539 .link_effect15stacks_in_32539 a::before,
#stacks_in_32539 .link_effect15stacks_in_32539 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_32539 .link_effect15stacks_in_32539 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_32539 .link_effect15stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect15stacks_in_32539 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_32539 .link_effect15stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect15stacks_in_32539 a:focus::before,
#stacks_in_32539 .link_effect15stacks_in_32539 a:hover::after,
#stacks_in_32539 .link_effect15stacks_in_32539 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32539 .link_effect15stacks_in_32539 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_32539 .link_effect15stacks_in_32539 a:hover::after,
#stacks_in_32539 .link_effect15stacks_in_32539 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_32539 .link_effect16stacks_in_32539 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32539 .link_effect16stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect16stacks_in_32539 a::before,
#stacks_in_32539 .link_effect16stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32539 .link_effect16stacks_in_32539 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_32539 .link_effect16stacks_in_32539 a:hover {
	color: #d04c3f;
}

#stacks_in_32539 .link_effect16stacks_in_32539 a::before,
#stacks_in_32539 .link_effect16stacks_in_32539 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_32539 .link_effect16stacks_in_32539 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_32539 .link_effect16stacks_in_32539 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_32539 .link_effect16stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect16stacks_in_32539 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_32539 .link_effect17stacks_in_32539 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_32539 .link_effect17stacks_in_32539 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_32539 .link_effect17stacks_in_32539 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_32539 .link_effect18stacks_in_32539 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32539 .link_effect18stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect18stacks_in_32539 a::before,
#stacks_in_32539 .link_effect18stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32539 .link_effect18stacks_in_32539 {
}

#stacks_in_32539 .link_effect18stacks_in_32539 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_32539 .link_effect18stacks_in_32539 a::before,
#stacks_in_32539 .link_effect18stacks_in_32539 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32539 .link_effect18stacks_in_32539 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32539 .link_effect18stacks_in_32539 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_32539 .link_effect18stacks_in_32539 a:hover,
#stacks_in_32539 .link_effect18stacks_in_32539 a:focus {
	color: #fff;
}

#stacks_in_32539 .link_effect18stacks_in_32539 a:hover::before,
#stacks_in_32539 .link_effect18stacks_in_32539 a:focus::before,
#stacks_in_32539 .link_effect18stacks_in_32539 a:hover::after,
#stacks_in_32539 .link_effect18stacks_in_32539 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_32539 .link_effect19stacks_in_32539 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32539 .link_effect19stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect19stacks_in_32539 a::before,
#stacks_in_32539 .link_effect19stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_32539 a {
}

.link_effect19stacks_in_32539 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_32539 a:hover::after,
.link_effect19stacks_in_32539 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_32539 .link_effect20stacks_in_32539 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32539 .link_effect20stacks_in_32539 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32539 .link_effect20stacks_in_32539 a::before,
#stacks_in_32539 .link_effect20stacks_in_32539 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_32539 a {
}

.link_effect20stacks_in_32539 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_32539 a:hover::after,
.link_effect20stacks_in_32539 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_32541 {
	padding:  20px;
}

#stacks_in_32542 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32468Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32468Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32468Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32468Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32468Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32468Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32468Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32468Calligrapher h6, .stacks_in_32468Calligrapher h5, .stacks_in_32468Calligrapher h4, .stacks_in_32468Calligrapher h3, .stacks_in_32468Calligrapher h2, .stacks_in_32468Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32468Calligrapher, .stacks_in_32468Calligrapher h1, .stacks_in_32468Calligrapher h2, .stacks_in_32468Calligrapher h3, .stacks_in_32468Calligrapher h4, .stacks_in_32468Calligrapher h5, .stacks_in_32468Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32468Calligrapher, .stacks_in_32468Calligrapher h1, .stacks_in_32468Calligrapher h2, .stacks_in_32468Calligrapher h3, .stacks_in_32468Calligrapher h4, .stacks_in_32468Calligrapher h5, .stacks_in_32468Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32468targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32468Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32468Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32468Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32468Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32468 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_32543 {
	padding:  20px;
}

#stacks_in_32544 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_32545{padding-left:0px;padding-right:0px;}#stacks_in_32545 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_32545 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32545 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32545 > .jack.width-static{width:500px}#stacks_in_32545 > .jack.width-flexible{width:100%}#stacks_in_32545 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32545 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32545 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32545 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32545 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32545 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32545 > .jack::after{border-radius:0px}#stacks_in_32545 > .jack.border-detailed-radius,#stacks_in_32545 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_32545 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32545 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32545 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32545 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32545 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32545 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32545 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32545 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32545 > .jack.bg-image:not(.glass){}#stacks_in_32545 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32545 > .jack.bg-image.glass.after,#stacks_in_32545 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32545 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32545 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32545 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32545 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32545 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32545 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32545 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32545 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32545 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32545 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32545 > .jack.bg-image.glass.after,#stacks_in_32545 > .glass.jack.bg-image::after{}#stacks_in_32545 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32545 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32545 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32545 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32545 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32545 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_32545 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_32545 > .jack.peek-shadow::before,#stacks_in_32545 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_32545 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32545 > .jack{overflow:hidden;}#stacks_in_32545 > .jack.height-static{height:100px}#stacks_in_32545 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32469Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32469Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32469Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32469Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32469Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32469Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32469Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32469Calligrapher h6, .stacks_in_32469Calligrapher h5, .stacks_in_32469Calligrapher h4, .stacks_in_32469Calligrapher h3, .stacks_in_32469Calligrapher h2, .stacks_in_32469Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32469Calligrapher, .stacks_in_32469Calligrapher h1, .stacks_in_32469Calligrapher h2, .stacks_in_32469Calligrapher h3, .stacks_in_32469Calligrapher h4, .stacks_in_32469Calligrapher h5, .stacks_in_32469Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32469Calligrapher, .stacks_in_32469Calligrapher h1, .stacks_in_32469Calligrapher h2, .stacks_in_32469Calligrapher h3, .stacks_in_32469Calligrapher h4, .stacks_in_32469Calligrapher h5, .stacks_in_32469Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32469targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32469Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32469Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32469Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32469Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32469 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_32548 a:before, .link_effect1stacks_in_32548 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_32548 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_32548 a:hover:before, .link_effect1stacks_in_32548 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_32548 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_32548 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_32548 .link_effect2stacks_in_32548 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_32548 .link_effect2stacks_in_32548 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_32548 .link_effect3stacks_in_32548 {
  	text-decoration: none;
}

#stacks_in_32548 .link_effect3stacks_in_32548 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_32548 .link_effect3stacks_in_32548 a:hover,
#stacks_in_32548 .link_effect3stacks_in_32548 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_32548 .link_effect4stacks_in_32548 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32548 .link_effect4stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect4stacks_in_32548 a::before,
#stacks_in_32548 .link_effect%stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32548 .link_effect4stacks_in_32548 {
}

#stacks_in_32548 .link_effect4stacks_in_32548 a {
	font-weight:bold !important;;
}

#stacks_in_32548 .link_effect4stacks_in_32548 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32548 .link_effect4stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect4stacks_in_32548 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_32548 .link_effect5stacks_in_32548 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32548 .link_effect5stacks_in_32548 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect5stacks_in_32548 a::before,
#stacks_in_32548 .link_effect5stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32548 .link_effect5stacks_in_32548 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_32548 .link_effect5stacks_in_32548 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_32548 .link_effect5stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect5stacks_in_32548 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_32548 .link_effect6stacks_in_32548 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32548 .link_effect6stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect6stacks_in_32548 a::before,
#stacks_in_32548 .link_effect6stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32548 .link_effect6stacks_in_32548 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32548 .link_effect6stacks_in_32548 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_32548 .link_effect6stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect6stacks_in_32548 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_32548 .link_effect7stacks_in_32548 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32548 .link_effect7stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect7stacks_in_32548 a::before,
#stacks_in_32548 .link_effect7stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32548 .link_effect7stacks_in_32548 {
	position: relative;
}

#stacks_in_32548 .link_effect7stacks_in_32548 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_32548 .link_effect7stacks_in_32548 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_32548 .link_effect7stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect7stacks_in_32548 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_32548 .link_effect8stacks_in_32548 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32548 .link_effect8stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect8stacks_in_32548 a::before,
#stacks_in_32548 .link_effect8stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_32548 .link_effect8stacks_in_32548 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_32548 .link_effect8stacks_in_32548 a:hover,
#stacks_in_32548 .link_effect8stacks_in_32548 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32548 .link_effect8stacks_in_32548 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_32548 .link_effect8stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect8stacks_in_32548 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_32548 .link_effect9stacks_in_32548 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32548 .link_effect9stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect9stacks_in_32548 a::before,
#stacks_in_32548 .link_effect9stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32548 .link_effect9stacks_in_32548 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_32548 .link_effect9stacks_in_32548 a:hover,
#stacks_in_32548 .link_effect9stacks_in_32548 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32548 .link_effect9stacks_in_32548 a::before,
#stacks_in_32548 .link_effect9stacks_in_32548 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_32548 .link_effect9stacks_in_32548 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_32548 .link_effect9stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect9stacks_in_32548 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_32548 .link_effect9stacks_in_32548 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_32548 .link_effect10stacks_in_32548 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32548 .link_effect10stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect10stacks_in_32548 a::before,
#stacks_in_32548 .link_effect10stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_32548 .link_effect10stacks_in_32548 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_32548 .link_effect10stacks_in_32548 a:hover,
#stacks_in_32548 .link_effect10stacks_in_32548 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32548 .link_effect10stacks_in_32548 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_32548 .link_effect10stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect10stacks_in_32548 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_32548 .link_effect11stacks_in_32548 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_32548 .link_effect11stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect11stacks_in_32548 a::before,
#stacks_in_32548 .link_effect11stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_32548 .link_effect11stacks_in_32548 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_32548 .link_effect11stacks_in_32548 a:hover,
#stacks_in_32548 .link_effect11stacks_in_32548 a:focus {
	color: #DA4453 !important;
}

#stacks_in_32548 .link_effect11stacks_in_32548 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_32548 .link_effect11stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect11stacks_in_32548 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_32548 .link_effect12stacks_in_32548 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32548 .link_effect12stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect12stacks_in_32548 a::before,
#stacks_in_32548 .link_effect12stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32548 .link_effect12stacks_in_32548 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32548 .link_effect12stacks_in_32548 a:hover,
#stacks_in_32548 .link_effect12stacks_in_32548 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_32548 .link_effect12stacks_in_32548 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_32548 .link_effect12stacks_in_32548 a,
#stacks_in_32548 .link_effect12stacks_in_32548 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_32548 .link_effect12stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect12stacks_in_32548 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_32548 .link_effect13stacks_in_32548 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32548 .link_effect13stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect13stacks_in_32548 a::before,
#stacks_in_32548 .link_effect13stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32548 .link_effect13stacks_in_32548 {
}

#stacks_in_32548 .link_effect13stacks_in_32548 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_32548 .link_effect13stacks_in_32548 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_32548 .link_effect13stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect13stacks_in_32548 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_32548 .link_effect14stacks_in_32548 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32548 .link_effect14stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect14stacks_in_32548 a::before,
#stacks_in_32548 .link_effect14stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32548 .link_effect14stacks_in_32548 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32548 .link_effect14stacks_in_32548 a:hover,
#stacks_in_32548 .link_effect14stacks_in_32548 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_32548 .link_effect14stacks_in_32548 a::before,
#stacks_in_32548 .link_effect14stacks_in_32548 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_32548 .link_effect14stacks_in_32548 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_32548 .link_effect14stacks_in_32548 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_32548 .link_effect14stacks_in_32548 a:hover::after,
#stacks_in_32548 .link_effect14stacks_in_32548 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_32548 .link_effect15stacks_in_32548 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32548 .link_effect15stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect15stacks_in_32548 a::before,
#stacks_in_32548 .link_effect15stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32548 .link_effect15stacks_in_32548 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_32548 .link_effect15stacks_in_32548 a::before,
#stacks_in_32548 .link_effect15stacks_in_32548 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_32548 .link_effect15stacks_in_32548 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_32548 .link_effect15stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect15stacks_in_32548 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_32548 .link_effect15stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect15stacks_in_32548 a:focus::before,
#stacks_in_32548 .link_effect15stacks_in_32548 a:hover::after,
#stacks_in_32548 .link_effect15stacks_in_32548 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_32548 .link_effect15stacks_in_32548 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_32548 .link_effect15stacks_in_32548 a:hover::after,
#stacks_in_32548 .link_effect15stacks_in_32548 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_32548 .link_effect16stacks_in_32548 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32548 .link_effect16stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect16stacks_in_32548 a::before,
#stacks_in_32548 .link_effect16stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_32548 .link_effect16stacks_in_32548 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_32548 .link_effect16stacks_in_32548 a:hover {
	color: #d04c3f;
}

#stacks_in_32548 .link_effect16stacks_in_32548 a::before,
#stacks_in_32548 .link_effect16stacks_in_32548 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_32548 .link_effect16stacks_in_32548 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_32548 .link_effect16stacks_in_32548 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_32548 .link_effect16stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect16stacks_in_32548 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_32548 .link_effect17stacks_in_32548 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_32548 .link_effect17stacks_in_32548 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_32548 .link_effect17stacks_in_32548 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_32548 .link_effect18stacks_in_32548 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32548 .link_effect18stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect18stacks_in_32548 a::before,
#stacks_in_32548 .link_effect18stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_32548 .link_effect18stacks_in_32548 {
}

#stacks_in_32548 .link_effect18stacks_in_32548 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_32548 .link_effect18stacks_in_32548 a::before,
#stacks_in_32548 .link_effect18stacks_in_32548 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32548 .link_effect18stacks_in_32548 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_32548 .link_effect18stacks_in_32548 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_32548 .link_effect18stacks_in_32548 a:hover,
#stacks_in_32548 .link_effect18stacks_in_32548 a:focus {
	color: #fff;
}

#stacks_in_32548 .link_effect18stacks_in_32548 a:hover::before,
#stacks_in_32548 .link_effect18stacks_in_32548 a:focus::before,
#stacks_in_32548 .link_effect18stacks_in_32548 a:hover::after,
#stacks_in_32548 .link_effect18stacks_in_32548 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_32548 .link_effect19stacks_in_32548 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32548 .link_effect19stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect19stacks_in_32548 a::before,
#stacks_in_32548 .link_effect19stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_32548 a {
}

.link_effect19stacks_in_32548 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_32548 a:hover::after,
.link_effect19stacks_in_32548 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_32548 .link_effect20stacks_in_32548 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_32548 .link_effect20stacks_in_32548 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_32548 .link_effect20stacks_in_32548 a::before,
#stacks_in_32548 .link_effect20stacks_in_32548 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_32548 a {
}

.link_effect20stacks_in_32548 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_32548 a:hover::after,
.link_effect20stacks_in_32548 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_32550 {
	padding:  20px;
}

#stacks_in_32551 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32470Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32470Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32470Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32470Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32470Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32470Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32470Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32470Calligrapher h6, .stacks_in_32470Calligrapher h5, .stacks_in_32470Calligrapher h4, .stacks_in_32470Calligrapher h3, .stacks_in_32470Calligrapher h2, .stacks_in_32470Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32470Calligrapher, .stacks_in_32470Calligrapher h1, .stacks_in_32470Calligrapher h2, .stacks_in_32470Calligrapher h3, .stacks_in_32470Calligrapher h4, .stacks_in_32470Calligrapher h5, .stacks_in_32470Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32470Calligrapher, .stacks_in_32470Calligrapher h1, .stacks_in_32470Calligrapher h2, .stacks_in_32470Calligrapher h3, .stacks_in_32470Calligrapher h4, .stacks_in_32470Calligrapher h5, .stacks_in_32470Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32470targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32470Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32470Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32470Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32470Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32470 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_32552 {
	padding:  20px;
}

#stacks_in_32553 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_33190{padding-left:0px;padding-right:0px;}#stacks_in_33190 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33190 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33190 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33190 > .jack.width-static{width:500px}#stacks_in_33190 > .jack.width-flexible{width:100%}#stacks_in_33190 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33190 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33190 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33190 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33190 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33190 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33190 > .jack::after{border-radius:0px}#stacks_in_33190 > .jack.border-detailed-radius,#stacks_in_33190 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_33190 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33190 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33190 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_33190 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33190 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33190 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33190 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33190 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33190 > .jack.bg-image:not(.glass){}#stacks_in_33190 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33190 > .jack.bg-image.glass.after,#stacks_in_33190 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33190 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33190 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33190 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33190 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33190 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33190 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33190 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33190 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33190 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33190 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33190 > .jack.bg-image.glass.after,#stacks_in_33190 > .glass.jack.bg-image::after{}#stacks_in_33190 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33190 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33190 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33190 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33190 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33190 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33190 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33190 > .jack.peek-shadow::before,#stacks_in_33190 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33190 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33190 > .jack{overflow:visible;}#stacks_in_33190 > .jack.height-static{height:100px}#stacks_in_33190 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_33191{}#stacks_in_33191 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33191 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33191 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33191 > .jack.width-static{width:500px}#stacks_in_33191 > .jack.width-flexible{width:100%}#stacks_in_33191 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33191 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33191 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33191 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33191 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33191 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33191 > .jack::after{border-radius:15px}#stacks_in_33191 > .jack.border-detailed-radius,#stacks_in_33191 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_33191 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33191 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33191 > .jack.bg-gradient{background-color:#FF7000}#stacks_in_33191 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33191 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33191 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33191 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33191 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33191 > .jack.bg-image:not(.glass){}#stacks_in_33191 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33191 > .jack.bg-image.glass.after,#stacks_in_33191 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33191 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33191 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33191 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33191 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33191 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33191 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33191 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33191 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33191 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33191 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33191 > .jack.bg-image.glass.after,#stacks_in_33191 > .glass.jack.bg-image::after{}#stacks_in_33191 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33191 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33191 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_33191 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33191 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33191 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33191 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33191 > .jack.peek-shadow::before,#stacks_in_33191 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33191 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33191 > .jack{overflow:hidden;}#stacks_in_33191 > .jack.height-static{height:100px}#stacks_in_33191 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_33191 {
	margin: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33200Calligrapher{			font-size: 75% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33200Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33200Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33200Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33200Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33200Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33200Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33200Calligrapher h6, .stacks_in_33200Calligrapher h5, .stacks_in_33200Calligrapher h4, .stacks_in_33200Calligrapher h3, .stacks_in_33200Calligrapher h2, .stacks_in_33200Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33200Calligrapher, .stacks_in_33200Calligrapher h1, .stacks_in_33200Calligrapher h2, .stacks_in_33200Calligrapher h3, .stacks_in_33200Calligrapher h4, .stacks_in_33200Calligrapher h5, .stacks_in_33200Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33200Calligrapher, .stacks_in_33200Calligrapher h1, .stacks_in_33200Calligrapher h2, .stacks_in_33200Calligrapher h3, .stacks_in_33200Calligrapher h4, .stacks_in_33200Calligrapher h5, .stacks_in_33200Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33200targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33200Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33200Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33200Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33200Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_33201x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_33201x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_33201x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_33201 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_33202 {
	font-weight: lighter;
}
#stacks_in_33192{}#stacks_in_33192 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33192 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33192 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33192 > .jack.width-static{width:500px}#stacks_in_33192 > .jack.width-flexible{width:100%}#stacks_in_33192 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33192 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33192 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33192 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33192 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33192 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33192 > .jack::after{border-radius:15px}#stacks_in_33192 > .jack.border-detailed-radius,#stacks_in_33192 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33192 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33192 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33192 > .jack.bg-gradient{background-color:#C4AFAC}#stacks_in_33192 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33192 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33192 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33192 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33192 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33192 > .jack.bg-image:not(.glass){}#stacks_in_33192 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33192 > .jack.bg-image.glass.after,#stacks_in_33192 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33192 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33192 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33192 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33192 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33192 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33192 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33192 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33192 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33192 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33192 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33192 > .jack.bg-image.glass.after,#stacks_in_33192 > .glass.jack.bg-image::after{}#stacks_in_33192 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33192 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33192 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_33192 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33192 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33192 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33192 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33192 > .jack.peek-shadow::before,#stacks_in_33192 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33192 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33192 > .jack{overflow:hidden;}#stacks_in_33192 > .jack.height-static{height:100px}#stacks_in_33192 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33193Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33193Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33193Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33193Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33193Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33193Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33193Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33193Calligrapher h6, .stacks_in_33193Calligrapher h5, .stacks_in_33193Calligrapher h4, .stacks_in_33193Calligrapher h3, .stacks_in_33193Calligrapher h2, .stacks_in_33193Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33193Calligrapher, .stacks_in_33193Calligrapher h1, .stacks_in_33193Calligrapher h2, .stacks_in_33193Calligrapher h3, .stacks_in_33193Calligrapher h4, .stacks_in_33193Calligrapher h5, .stacks_in_33193Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33193Calligrapher, .stacks_in_33193Calligrapher h1, .stacks_in_33193Calligrapher h2, .stacks_in_33193Calligrapher h3, .stacks_in_33193Calligrapher h4, .stacks_in_33193Calligrapher h5, .stacks_in_33193Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33193targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33193Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33193Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33193Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33193Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33193 {
	margin: 10px 10px 10px 10px;
}

#stacks_in_33205 {
	margin: 0px 10px 0px 10px;
	padding: 0px 5px 0px 5px;
}

#stacks_in_33207 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33194Calligrapher{			font-size: 68% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33194Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33194Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33194Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33194Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33194Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33194Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33194Calligrapher h6, .stacks_in_33194Calligrapher h5, .stacks_in_33194Calligrapher h4, .stacks_in_33194Calligrapher h3, .stacks_in_33194Calligrapher h2, .stacks_in_33194Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33194Calligrapher, .stacks_in_33194Calligrapher h1, .stacks_in_33194Calligrapher h2, .stacks_in_33194Calligrapher h3, .stacks_in_33194Calligrapher h4, .stacks_in_33194Calligrapher h5, .stacks_in_33194Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33194Calligrapher, .stacks_in_33194Calligrapher h1, .stacks_in_33194Calligrapher h2, .stacks_in_33194Calligrapher h3, .stacks_in_33194Calligrapher h4, .stacks_in_33194Calligrapher h5, .stacks_in_33194Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33194targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33194Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33194Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33194Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33194Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33194 {
	margin: 0px 0px 10px 0px;
}

/* @group My Group */
#stacks_in_33208 .wrapper{position: relative;padding: 10px;}
#stacks_in_33208 h2.acc_trigger {
	border: px solid ;
	font-size: 18px;
	background: #F0C5AA;
	color: #FFFFFF;
	padding: 5px;
	margin: 5px 0 5px;
	cursor: pointer;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0 0 3px #000000;
	}
#stacks_in_33208 h2.acc_trigger:hover, #stacks_in_33208 h2.active{
	border: px  solid ;
	font-size: 18px;
	background: #DEA468;
	color: #FFFFFF;
	padding: 5px;
	}

#stacks_in_33208 h2.acc_trigger a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	
}
#stacks_in_33208 h2.acc_trigger a:hover, #stacks_in_33208 h2.active a {
	color: #FFFFFF;
}
#stacks_in_33208 h2.active {}
#stacks_in_33208 .acc_container {
	margin: 10px 0; padding: 0;
	overflow: hidden;
	clear: both;
	background-color: #FFFFFF;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	box-shadow: 0 0 3px #000000;
	font-size: 1.1em;}
#stacks_in_33208 .acc_container .block {
	padding: 16px;
}
/* @end */
#stacks_in_33208 {
	margin: 0px 12px 0px 12px;
}
#stacks_in_33212{padding-left:0px;padding-right:0px;}#stacks_in_33212 > .jack{margin:0px;padding:10px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33212 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33212 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33212 > .jack.width-static{width:500px}#stacks_in_33212 > .jack.width-flexible{width:100%}#stacks_in_33212 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33212 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33212 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33212 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33212 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33212 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33212 > .jack::after{border-radius:15px}#stacks_in_33212 > .jack.border-detailed-radius,#stacks_in_33212 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_33212 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33212 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33212 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_33212 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33212 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33212 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33212 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33212 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33212 > .jack.bg-image:not(.glass){}#stacks_in_33212 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33212 > .jack.bg-image.glass.after,#stacks_in_33212 > .glass.jack.bg-image::after{opacity:0.25;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33212 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33212 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33212 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33212 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33212 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33212 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33212 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33212 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33212 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33212 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33212 > .jack.bg-image.glass.after,#stacks_in_33212 > .glass.jack.bg-image::after{}#stacks_in_33212 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33212 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33212 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_33212 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33212 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33212 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33212 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33212 > .jack.peek-shadow::before,#stacks_in_33212 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33212 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33212 > .jack{overflow:hidden;}#stacks_in_33212 > .jack.height-static{height:100px}#stacks_in_33212 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_33215 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;}#stacks_in_33215 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_33215 .fluid-image.unlimited img{width:100% !important}#stacks_in_33215 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_33215 .fluid-image.align-left img{float:left}#stacks_in_33215 .fluid-image.align-right img{float:right}
/* Start dooHeader X stack CSS code */.stacks_in_33218x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_33218x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_33218x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_33218 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_33219 {
	font-weight: lighter;
}

#stacks_in_33220 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_33223 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_33225 {
	margin:  3px;
	padding:  5px;
}
#stacks_in_33227{padding-left:0px;padding-right:0px;}#stacks_in_33227 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33227 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33227 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33227 > .jack.width-static{width:500px}#stacks_in_33227 > .jack.width-flexible{width:100%}#stacks_in_33227 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33227 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33227 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33227 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33227 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33227 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33227 > .jack::after{border-radius:0px}#stacks_in_33227 > .jack.border-detailed-radius,#stacks_in_33227 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33227 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33227 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33227 > .jack.bg-gradient{background-color:#B1FFB4}#stacks_in_33227 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33227 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33227 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33227 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33227 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33227 > .jack.bg-image:not(.glass){}#stacks_in_33227 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33227 > .jack.bg-image.glass.after,#stacks_in_33227 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33227 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33227 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33227 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33227 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33227 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33227 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33227 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33227 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33227 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33227 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33227 > .jack.bg-image.glass.after,#stacks_in_33227 > .glass.jack.bg-image::after{}#stacks_in_33227 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33227 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33227 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33227 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33227 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33227 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33227 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33227 > .jack.peek-shadow::before,#stacks_in_33227 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33227 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33227 > .jack{overflow:hidden;}#stacks_in_33227 > .jack.height-static{height:100px}#stacks_in_33227 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_33231 {
	line-height: 2em;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_33232 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_33232 .borderbuttonthing, #stacks_in_33232 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_33232 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_33232 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_34339{}#stacks_in_34339 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_34339 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_34339 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_34339 > .jack.width-static{width:500px}#stacks_in_34339 > .jack.width-flexible{width:100%}#stacks_in_34339 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_34339 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34339 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_34339 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_34339 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_34339 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_34339 > .jack::after{border-radius:20px}#stacks_in_34339 > .jack.border-detailed-radius,#stacks_in_34339 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_34339 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_34339 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_34339 > .jack.bg-gradient{background-color:#EED5BA}#stacks_in_34339 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34339 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_34339 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_34339 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_34339 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34339 > .jack.bg-image:not(.glass){}#stacks_in_34339 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_34339 > .jack.bg-image.glass.after,#stacks_in_34339 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34339 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_34339 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34339 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_34339 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_34339 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_34339 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_34339 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34339 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_34339 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_34339 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34339 > .jack.bg-image.glass.after,#stacks_in_34339 > .glass.jack.bg-image::after{}#stacks_in_34339 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34339 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_34339 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_34339 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34339 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34339 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_34339 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_34339 > .jack.peek-shadow::before,#stacks_in_34339 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_34339 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_34339 > .jack{overflow:hidden;}#stacks_in_34339 > .jack.height-static{height:100px}#stacks_in_34339 > .jack.height-minmax{min-height:100px;max-height:800px}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_34340 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_34340 .borderbuttonthing, #stacks_in_34340 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 18px;
	padding: 0 20px;
	font-size: 12px;
	border: 2px solid #E17023;
	color: #E17023;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_34340 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_34340 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_33233{padding-left:0px;padding-right:0px;}#stacks_in_33233 > .jack{margin:0px;padding:10px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33233 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33233 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33233 > .jack.width-static{width:500px}#stacks_in_33233 > .jack.width-flexible{width:100%}#stacks_in_33233 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33233 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33233 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33233 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33233 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33233 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33233 > .jack::after{border-radius:15px}#stacks_in_33233 > .jack.border-detailed-radius,#stacks_in_33233 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_33233 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33233 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33233 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_33233 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33233 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33233 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33233 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33233 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33233 > .jack.bg-image:not(.glass){}#stacks_in_33233 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33233 > .jack.bg-image.glass.after,#stacks_in_33233 > .glass.jack.bg-image::after{opacity:0.25;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33233 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33233 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33233 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33233 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33233 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33233 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33233 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33233 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33233 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33233 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33233 > .jack.bg-image.glass.after,#stacks_in_33233 > .glass.jack.bg-image::after{}#stacks_in_33233 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33233 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33233 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_33233 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33233 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33233 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33233 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33233 > .jack.peek-shadow::before,#stacks_in_33233 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33233 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33233 > .jack{overflow:hidden;}#stacks_in_33233 > .jack.height-static{height:100px}#stacks_in_33233 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_33237 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;}#stacks_in_33237 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_33237 .fluid-image.unlimited img{width:100% !important}#stacks_in_33237 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_33237 .fluid-image.align-left img{float:left}#stacks_in_33237 .fluid-image.align-right img{float:right}
/* Start dooHeader X stack CSS code */.stacks_in_33240x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_33240x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_33240x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_33240 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_33241 {
	font-weight: lighter;
}

#stacks_in_33242 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_33245 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_33247 {
	margin:  3px;
	padding:  5px;
}
#stacks_in_33249{padding-left:0px;padding-right:0px;}#stacks_in_33249 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33249 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33249 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33249 > .jack.width-static{width:500px}#stacks_in_33249 > .jack.width-flexible{width:100%}#stacks_in_33249 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33249 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33249 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33249 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33249 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33249 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33249 > .jack::after{border-radius:0px}#stacks_in_33249 > .jack.border-detailed-radius,#stacks_in_33249 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33249 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33249 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33249 > .jack.bg-gradient{background-color:#B1FFB4}#stacks_in_33249 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33249 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33249 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33249 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33249 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33249 > .jack.bg-image:not(.glass){}#stacks_in_33249 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33249 > .jack.bg-image.glass.after,#stacks_in_33249 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33249 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33249 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33249 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33249 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33249 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33249 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33249 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33249 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33249 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33249 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33249 > .jack.bg-image.glass.after,#stacks_in_33249 > .glass.jack.bg-image::after{}#stacks_in_33249 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33249 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33249 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33249 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33249 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33249 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33249 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33249 > .jack.peek-shadow::before,#stacks_in_33249 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33249 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33249 > .jack{overflow:hidden;}#stacks_in_33249 > .jack.height-static{height:100px}#stacks_in_33249 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_33253 {
	line-height: 2em;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_33254 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_33254 .borderbuttonthing, #stacks_in_33254 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_33254 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_33254 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_34342{}#stacks_in_34342 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_34342 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_34342 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_34342 > .jack.width-static{width:500px}#stacks_in_34342 > .jack.width-flexible{width:100%}#stacks_in_34342 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_34342 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34342 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_34342 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_34342 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_34342 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_34342 > .jack::after{border-radius:20px}#stacks_in_34342 > .jack.border-detailed-radius,#stacks_in_34342 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_34342 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_34342 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_34342 > .jack.bg-gradient{background-color:#EED5BA}#stacks_in_34342 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34342 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_34342 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_34342 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_34342 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34342 > .jack.bg-image:not(.glass){}#stacks_in_34342 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_34342 > .jack.bg-image.glass.after,#stacks_in_34342 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34342 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_34342 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34342 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_34342 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_34342 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_34342 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_34342 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34342 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_34342 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_34342 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34342 > .jack.bg-image.glass.after,#stacks_in_34342 > .glass.jack.bg-image::after{}#stacks_in_34342 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34342 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_34342 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_34342 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34342 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34342 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_34342 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_34342 > .jack.peek-shadow::before,#stacks_in_34342 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_34342 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_34342 > .jack{overflow:hidden;}#stacks_in_34342 > .jack.height-static{height:100px}#stacks_in_34342 > .jack.height-minmax{min-height:100px;max-height:800px}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_34343 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_34343 .borderbuttonthing, #stacks_in_34343 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 18px;
	padding: 0 20px;
	font-size: 12px;
	border: 2px solid #CA4335;
	color: #CA4335;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_34343 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_34343 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_33255{padding-left:0px;padding-right:0px;}#stacks_in_33255 > .jack{margin:0px;padding:10px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33255 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33255 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33255 > .jack.width-static{width:500px}#stacks_in_33255 > .jack.width-flexible{width:100%}#stacks_in_33255 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33255 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33255 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33255 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33255 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33255 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33255 > .jack::after{border-radius:15px}#stacks_in_33255 > .jack.border-detailed-radius,#stacks_in_33255 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_33255 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33255 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33255 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_33255 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33255 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33255 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33255 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33255 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33255 > .jack.bg-image:not(.glass){}#stacks_in_33255 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33255 > .jack.bg-image.glass.after,#stacks_in_33255 > .glass.jack.bg-image::after{opacity:0.25;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33255 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33255 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33255 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33255 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33255 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33255 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33255 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33255 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33255 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33255 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33255 > .jack.bg-image.glass.after,#stacks_in_33255 > .glass.jack.bg-image::after{}#stacks_in_33255 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33255 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33255 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_33255 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33255 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33255 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33255 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33255 > .jack.peek-shadow::before,#stacks_in_33255 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33255 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33255 > .jack{overflow:hidden;}#stacks_in_33255 > .jack.height-static{height:100px}#stacks_in_33255 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_33259 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;}#stacks_in_33259 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_33259 .fluid-image.unlimited img{width:100% !important}#stacks_in_33259 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_33259 .fluid-image.align-left img{float:left}#stacks_in_33259 .fluid-image.align-right img{float:right}
/* Start dooHeader X stack CSS code */.stacks_in_33262x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_33262x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_33262x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_33262 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_33263 {
	font-weight: lighter;
}

#stacks_in_33264 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_33267 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_33269 {
	margin:  3px;
	padding:  5px;
}
#stacks_in_33314{padding-left:0px;padding-right:0px;}#stacks_in_33314 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33314 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33314 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33314 > .jack.width-static{width:500px}#stacks_in_33314 > .jack.width-flexible{width:100%}#stacks_in_33314 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33314 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33314 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33314 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33314 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33314 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33314 > .jack::after{border-radius:0px}#stacks_in_33314 > .jack.border-detailed-radius,#stacks_in_33314 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33314 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33314 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33314 > .jack.bg-gradient{background-color:#F9FFC1}#stacks_in_33314 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33314 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33314 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33314 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33314 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33314 > .jack.bg-image:not(.glass){}#stacks_in_33314 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33314 > .jack.bg-image.glass.after,#stacks_in_33314 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33314 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33314 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33314 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33314 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33314 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33314 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33314 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33314 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33314 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33314 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33314 > .jack.bg-image.glass.after,#stacks_in_33314 > .glass.jack.bg-image::after{}#stacks_in_33314 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33314 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33314 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33314 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33314 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33314 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33314 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33314 > .jack.peek-shadow::before,#stacks_in_33314 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33314 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33314 > .jack{overflow:hidden;}#stacks_in_33314 > .jack.height-static{height:100px}#stacks_in_33314 > .jack.height-minmax{min-height:100px;max-height:800px}

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

#stacks_in_33317 {
	line-height: 2em;
}
#stacks_in_33275{padding-left:0px;padding-right:0px;}#stacks_in_33275 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33275 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33275 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33275 > .jack.width-static{width:500px}#stacks_in_33275 > .jack.width-flexible{width:100%}#stacks_in_33275 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33275 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33275 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33275 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33275 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33275 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33275 > .jack::after{border-radius:0px}#stacks_in_33275 > .jack.border-detailed-radius,#stacks_in_33275 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33275 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33275 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33275 > .jack.bg-gradient{background-color:#B1FFB4}#stacks_in_33275 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33275 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33275 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33275 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33275 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33275 > .jack.bg-image:not(.glass){}#stacks_in_33275 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33275 > .jack.bg-image.glass.after,#stacks_in_33275 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33275 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33275 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33275 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33275 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33275 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33275 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33275 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33275 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33275 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33275 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33275 > .jack.bg-image.glass.after,#stacks_in_33275 > .glass.jack.bg-image::after{}#stacks_in_33275 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33275 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33275 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33275 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33275 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33275 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33275 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33275 > .jack.peek-shadow::before,#stacks_in_33275 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33275 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33275 > .jack{overflow:hidden;}#stacks_in_33275 > .jack.height-static{height:100px}#stacks_in_33275 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_33279 {
	line-height: 2em;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_33280 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_33280 .borderbuttonthing, #stacks_in_33280 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_33280 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_33280 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_34345{}#stacks_in_34345 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_34345 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_34345 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_34345 > .jack.width-static{width:500px}#stacks_in_34345 > .jack.width-flexible{width:100%}#stacks_in_34345 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_34345 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34345 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_34345 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_34345 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_34345 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_34345 > .jack::after{border-radius:20px}#stacks_in_34345 > .jack.border-detailed-radius,#stacks_in_34345 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_34345 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_34345 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_34345 > .jack.bg-gradient{background-color:#EED5BA}#stacks_in_34345 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34345 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_34345 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_34345 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_34345 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34345 > .jack.bg-image:not(.glass){}#stacks_in_34345 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_34345 > .jack.bg-image.glass.after,#stacks_in_34345 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34345 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_34345 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34345 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_34345 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_34345 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_34345 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_34345 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34345 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_34345 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_34345 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34345 > .jack.bg-image.glass.after,#stacks_in_34345 > .glass.jack.bg-image::after{}#stacks_in_34345 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34345 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_34345 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_34345 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34345 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34345 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_34345 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_34345 > .jack.peek-shadow::before,#stacks_in_34345 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_34345 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_34345 > .jack{overflow:hidden;}#stacks_in_34345 > .jack.height-static{height:100px}#stacks_in_34345 > .jack.height-minmax{min-height:100px;max-height:800px}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_34346 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_34346 .borderbuttonthing, #stacks_in_34346 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 18px;
	padding: 0 20px;
	font-size: 12px;
	border: 2px solid #AF0C22;
	color: #AF0C22;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_34346 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_34346 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_33283 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999;}#stacks_in_33283 .fluid-image img:hover{-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999}#stacks_in_33283 .fluid-image.unlimited img{width:100% !important}#stacks_in_33283 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_33283 .fluid-image.align-left img{float:left}#stacks_in_33283 .fluid-image.align-right img{float:right}

#stacks_in_33283 {
	margin: 15px 0px 0px 0px;
}
#stacks_in_33285{padding-left:0px;padding-right:0px;}#stacks_in_33285 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33285 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33285 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33285 > .jack.width-static{width:500px}#stacks_in_33285 > .jack.width-flexible{width:100%}#stacks_in_33285 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33285 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33285 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33285 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33285 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33285 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33285 > .jack::after{border-radius:0px}#stacks_in_33285 > .jack.border-detailed-radius,#stacks_in_33285 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_33285 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33285 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33285 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_33285 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33285 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33285 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33285 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33285 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33285 > .jack.bg-image:not(.glass){}#stacks_in_33285 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33285 > .jack.bg-image.glass.after,#stacks_in_33285 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33285 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33285 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33285 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33285 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33285 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33285 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33285 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33285 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33285 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33285 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33285 > .jack.bg-image.glass.after,#stacks_in_33285 > .glass.jack.bg-image::after{}#stacks_in_33285 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33285 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33285 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_33285 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33285 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33285 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33285 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33285 > .jack.peek-shadow::before,#stacks_in_33285 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33285 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33285 > .jack{overflow:hidden;}#stacks_in_33285 > .jack.height-static{height:100px}#stacks_in_33285 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33195Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33195Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33195Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33195Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33195Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33195Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33195Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33195Calligrapher h6, .stacks_in_33195Calligrapher h5, .stacks_in_33195Calligrapher h4, .stacks_in_33195Calligrapher h3, .stacks_in_33195Calligrapher h2, .stacks_in_33195Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33195Calligrapher, .stacks_in_33195Calligrapher h1, .stacks_in_33195Calligrapher h2, .stacks_in_33195Calligrapher h3, .stacks_in_33195Calligrapher h4, .stacks_in_33195Calligrapher h5, .stacks_in_33195Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33195Calligrapher, .stacks_in_33195Calligrapher h1, .stacks_in_33195Calligrapher h2, .stacks_in_33195Calligrapher h3, .stacks_in_33195Calligrapher h4, .stacks_in_33195Calligrapher h5, .stacks_in_33195Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33195targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33195Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33195Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33195Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33195Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33195 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_33287 a:before, .link_effect1stacks_in_33287 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_33287 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_33287 a:hover:before, .link_effect1stacks_in_33287 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_33287 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_33287 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_33287 .link_effect2stacks_in_33287 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_33287 .link_effect2stacks_in_33287 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_33287 .link_effect3stacks_in_33287 {
  	text-decoration: none;
}

#stacks_in_33287 .link_effect3stacks_in_33287 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_33287 .link_effect3stacks_in_33287 a:hover,
#stacks_in_33287 .link_effect3stacks_in_33287 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_33287 .link_effect4stacks_in_33287 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33287 .link_effect4stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect4stacks_in_33287 a::before,
#stacks_in_33287 .link_effect%stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33287 .link_effect4stacks_in_33287 {
}

#stacks_in_33287 .link_effect4stacks_in_33287 a {
	font-weight:bold !important;;
}

#stacks_in_33287 .link_effect4stacks_in_33287 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_33287 .link_effect4stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect4stacks_in_33287 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_33287 .link_effect5stacks_in_33287 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33287 .link_effect5stacks_in_33287 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect5stacks_in_33287 a::before,
#stacks_in_33287 .link_effect5stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33287 .link_effect5stacks_in_33287 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_33287 .link_effect5stacks_in_33287 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_33287 .link_effect5stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect5stacks_in_33287 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_33287 .link_effect6stacks_in_33287 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33287 .link_effect6stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect6stacks_in_33287 a::before,
#stacks_in_33287 .link_effect6stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33287 .link_effect6stacks_in_33287 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_33287 .link_effect6stacks_in_33287 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_33287 .link_effect6stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect6stacks_in_33287 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_33287 .link_effect7stacks_in_33287 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33287 .link_effect7stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect7stacks_in_33287 a::before,
#stacks_in_33287 .link_effect7stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33287 .link_effect7stacks_in_33287 {
	position: relative;
}

#stacks_in_33287 .link_effect7stacks_in_33287 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_33287 .link_effect7stacks_in_33287 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_33287 .link_effect7stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect7stacks_in_33287 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_33287 .link_effect8stacks_in_33287 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33287 .link_effect8stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect8stacks_in_33287 a::before,
#stacks_in_33287 .link_effect8stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_33287 .link_effect8stacks_in_33287 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_33287 .link_effect8stacks_in_33287 a:hover,
#stacks_in_33287 .link_effect8stacks_in_33287 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33287 .link_effect8stacks_in_33287 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_33287 .link_effect8stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect8stacks_in_33287 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_33287 .link_effect9stacks_in_33287 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33287 .link_effect9stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect9stacks_in_33287 a::before,
#stacks_in_33287 .link_effect9stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33287 .link_effect9stacks_in_33287 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_33287 .link_effect9stacks_in_33287 a:hover,
#stacks_in_33287 .link_effect9stacks_in_33287 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33287 .link_effect9stacks_in_33287 a::before,
#stacks_in_33287 .link_effect9stacks_in_33287 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_33287 .link_effect9stacks_in_33287 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_33287 .link_effect9stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect9stacks_in_33287 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_33287 .link_effect9stacks_in_33287 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_33287 .link_effect10stacks_in_33287 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33287 .link_effect10stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect10stacks_in_33287 a::before,
#stacks_in_33287 .link_effect10stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33287 .link_effect10stacks_in_33287 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_33287 .link_effect10stacks_in_33287 a:hover,
#stacks_in_33287 .link_effect10stacks_in_33287 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_33287 .link_effect10stacks_in_33287 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_33287 .link_effect10stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect10stacks_in_33287 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_33287 .link_effect11stacks_in_33287 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33287 .link_effect11stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect11stacks_in_33287 a::before,
#stacks_in_33287 .link_effect11stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33287 .link_effect11stacks_in_33287 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_33287 .link_effect11stacks_in_33287 a:hover,
#stacks_in_33287 .link_effect11stacks_in_33287 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33287 .link_effect11stacks_in_33287 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_33287 .link_effect11stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect11stacks_in_33287 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_33287 .link_effect12stacks_in_33287 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33287 .link_effect12stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect12stacks_in_33287 a::before,
#stacks_in_33287 .link_effect12stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33287 .link_effect12stacks_in_33287 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_33287 .link_effect12stacks_in_33287 a:hover,
#stacks_in_33287 .link_effect12stacks_in_33287 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_33287 .link_effect12stacks_in_33287 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_33287 .link_effect12stacks_in_33287 a,
#stacks_in_33287 .link_effect12stacks_in_33287 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_33287 .link_effect12stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect12stacks_in_33287 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_33287 .link_effect13stacks_in_33287 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33287 .link_effect13stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect13stacks_in_33287 a::before,
#stacks_in_33287 .link_effect13stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33287 .link_effect13stacks_in_33287 {
}

#stacks_in_33287 .link_effect13stacks_in_33287 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_33287 .link_effect13stacks_in_33287 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_33287 .link_effect13stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect13stacks_in_33287 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_33287 .link_effect14stacks_in_33287 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33287 .link_effect14stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect14stacks_in_33287 a::before,
#stacks_in_33287 .link_effect14stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33287 .link_effect14stacks_in_33287 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_33287 .link_effect14stacks_in_33287 a:hover,
#stacks_in_33287 .link_effect14stacks_in_33287 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_33287 .link_effect14stacks_in_33287 a::before,
#stacks_in_33287 .link_effect14stacks_in_33287 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_33287 .link_effect14stacks_in_33287 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_33287 .link_effect14stacks_in_33287 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_33287 .link_effect14stacks_in_33287 a:hover::after,
#stacks_in_33287 .link_effect14stacks_in_33287 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_33287 .link_effect15stacks_in_33287 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33287 .link_effect15stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect15stacks_in_33287 a::before,
#stacks_in_33287 .link_effect15stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33287 .link_effect15stacks_in_33287 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_33287 .link_effect15stacks_in_33287 a::before,
#stacks_in_33287 .link_effect15stacks_in_33287 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_33287 .link_effect15stacks_in_33287 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_33287 .link_effect15stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect15stacks_in_33287 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_33287 .link_effect15stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect15stacks_in_33287 a:focus::before,
#stacks_in_33287 .link_effect15stacks_in_33287 a:hover::after,
#stacks_in_33287 .link_effect15stacks_in_33287 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_33287 .link_effect15stacks_in_33287 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_33287 .link_effect15stacks_in_33287 a:hover::after,
#stacks_in_33287 .link_effect15stacks_in_33287 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_33287 .link_effect16stacks_in_33287 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33287 .link_effect16stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect16stacks_in_33287 a::before,
#stacks_in_33287 .link_effect16stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33287 .link_effect16stacks_in_33287 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_33287 .link_effect16stacks_in_33287 a:hover {
	color: #d04c3f;
}

#stacks_in_33287 .link_effect16stacks_in_33287 a::before,
#stacks_in_33287 .link_effect16stacks_in_33287 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_33287 .link_effect16stacks_in_33287 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_33287 .link_effect16stacks_in_33287 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_33287 .link_effect16stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect16stacks_in_33287 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_33287 .link_effect17stacks_in_33287 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_33287 .link_effect17stacks_in_33287 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_33287 .link_effect17stacks_in_33287 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_33287 .link_effect18stacks_in_33287 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33287 .link_effect18stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect18stacks_in_33287 a::before,
#stacks_in_33287 .link_effect18stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33287 .link_effect18stacks_in_33287 {
}

#stacks_in_33287 .link_effect18stacks_in_33287 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_33287 .link_effect18stacks_in_33287 a::before,
#stacks_in_33287 .link_effect18stacks_in_33287 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_33287 .link_effect18stacks_in_33287 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_33287 .link_effect18stacks_in_33287 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_33287 .link_effect18stacks_in_33287 a:hover,
#stacks_in_33287 .link_effect18stacks_in_33287 a:focus {
	color: #fff;
}

#stacks_in_33287 .link_effect18stacks_in_33287 a:hover::before,
#stacks_in_33287 .link_effect18stacks_in_33287 a:focus::before,
#stacks_in_33287 .link_effect18stacks_in_33287 a:hover::after,
#stacks_in_33287 .link_effect18stacks_in_33287 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_33287 .link_effect19stacks_in_33287 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33287 .link_effect19stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect19stacks_in_33287 a::before,
#stacks_in_33287 .link_effect19stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_33287 a {
}

.link_effect19stacks_in_33287 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_33287 a:hover::after,
.link_effect19stacks_in_33287 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_33287 .link_effect20stacks_in_33287 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33287 .link_effect20stacks_in_33287 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33287 .link_effect20stacks_in_33287 a::before,
#stacks_in_33287 .link_effect20stacks_in_33287 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_33287 a {
}

.link_effect20stacks_in_33287 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_33287 a:hover::after,
.link_effect20stacks_in_33287 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_33289 {
	padding:  20px;
}

#stacks_in_33290 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33196Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33196Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33196Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33196Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33196Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33196Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33196Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33196Calligrapher h6, .stacks_in_33196Calligrapher h5, .stacks_in_33196Calligrapher h4, .stacks_in_33196Calligrapher h3, .stacks_in_33196Calligrapher h2, .stacks_in_33196Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33196Calligrapher, .stacks_in_33196Calligrapher h1, .stacks_in_33196Calligrapher h2, .stacks_in_33196Calligrapher h3, .stacks_in_33196Calligrapher h4, .stacks_in_33196Calligrapher h5, .stacks_in_33196Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33196Calligrapher, .stacks_in_33196Calligrapher h1, .stacks_in_33196Calligrapher h2, .stacks_in_33196Calligrapher h3, .stacks_in_33196Calligrapher h4, .stacks_in_33196Calligrapher h5, .stacks_in_33196Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33196targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33196Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33196Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33196Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33196Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33196 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_33291 {
	padding:  20px;
}

#stacks_in_33292 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_33293{padding-left:0px;padding-right:0px;}#stacks_in_33293 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33293 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33293 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33293 > .jack.width-static{width:500px}#stacks_in_33293 > .jack.width-flexible{width:100%}#stacks_in_33293 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33293 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33293 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33293 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33293 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33293 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33293 > .jack::after{border-radius:0px}#stacks_in_33293 > .jack.border-detailed-radius,#stacks_in_33293 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_33293 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33293 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33293 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_33293 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33293 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33293 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33293 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33293 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33293 > .jack.bg-image:not(.glass){}#stacks_in_33293 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33293 > .jack.bg-image.glass.after,#stacks_in_33293 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33293 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33293 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33293 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33293 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33293 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33293 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33293 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33293 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33293 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33293 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33293 > .jack.bg-image.glass.after,#stacks_in_33293 > .glass.jack.bg-image::after{}#stacks_in_33293 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33293 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33293 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_33293 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33293 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33293 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33293 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33293 > .jack.peek-shadow::before,#stacks_in_33293 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33293 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33293 > .jack{overflow:hidden;}#stacks_in_33293 > .jack.height-static{height:100px}#stacks_in_33293 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33197Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33197Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33197Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33197Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33197Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33197Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33197Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33197Calligrapher h6, .stacks_in_33197Calligrapher h5, .stacks_in_33197Calligrapher h4, .stacks_in_33197Calligrapher h3, .stacks_in_33197Calligrapher h2, .stacks_in_33197Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33197Calligrapher, .stacks_in_33197Calligrapher h1, .stacks_in_33197Calligrapher h2, .stacks_in_33197Calligrapher h3, .stacks_in_33197Calligrapher h4, .stacks_in_33197Calligrapher h5, .stacks_in_33197Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33197Calligrapher, .stacks_in_33197Calligrapher h1, .stacks_in_33197Calligrapher h2, .stacks_in_33197Calligrapher h3, .stacks_in_33197Calligrapher h4, .stacks_in_33197Calligrapher h5, .stacks_in_33197Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33197targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33197Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33197Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33197Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33197Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33197 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_33296 a:before, .link_effect1stacks_in_33296 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_33296 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_33296 a:hover:before, .link_effect1stacks_in_33296 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_33296 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_33296 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_33296 .link_effect2stacks_in_33296 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_33296 .link_effect2stacks_in_33296 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_33296 .link_effect3stacks_in_33296 {
  	text-decoration: none;
}

#stacks_in_33296 .link_effect3stacks_in_33296 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_33296 .link_effect3stacks_in_33296 a:hover,
#stacks_in_33296 .link_effect3stacks_in_33296 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_33296 .link_effect4stacks_in_33296 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33296 .link_effect4stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect4stacks_in_33296 a::before,
#stacks_in_33296 .link_effect%stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33296 .link_effect4stacks_in_33296 {
}

#stacks_in_33296 .link_effect4stacks_in_33296 a {
	font-weight:bold !important;;
}

#stacks_in_33296 .link_effect4stacks_in_33296 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_33296 .link_effect4stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect4stacks_in_33296 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_33296 .link_effect5stacks_in_33296 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33296 .link_effect5stacks_in_33296 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect5stacks_in_33296 a::before,
#stacks_in_33296 .link_effect5stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33296 .link_effect5stacks_in_33296 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_33296 .link_effect5stacks_in_33296 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_33296 .link_effect5stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect5stacks_in_33296 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_33296 .link_effect6stacks_in_33296 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33296 .link_effect6stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect6stacks_in_33296 a::before,
#stacks_in_33296 .link_effect6stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33296 .link_effect6stacks_in_33296 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_33296 .link_effect6stacks_in_33296 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_33296 .link_effect6stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect6stacks_in_33296 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_33296 .link_effect7stacks_in_33296 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33296 .link_effect7stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect7stacks_in_33296 a::before,
#stacks_in_33296 .link_effect7stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33296 .link_effect7stacks_in_33296 {
	position: relative;
}

#stacks_in_33296 .link_effect7stacks_in_33296 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_33296 .link_effect7stacks_in_33296 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_33296 .link_effect7stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect7stacks_in_33296 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_33296 .link_effect8stacks_in_33296 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33296 .link_effect8stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect8stacks_in_33296 a::before,
#stacks_in_33296 .link_effect8stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_33296 .link_effect8stacks_in_33296 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_33296 .link_effect8stacks_in_33296 a:hover,
#stacks_in_33296 .link_effect8stacks_in_33296 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33296 .link_effect8stacks_in_33296 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_33296 .link_effect8stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect8stacks_in_33296 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_33296 .link_effect9stacks_in_33296 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33296 .link_effect9stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect9stacks_in_33296 a::before,
#stacks_in_33296 .link_effect9stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33296 .link_effect9stacks_in_33296 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_33296 .link_effect9stacks_in_33296 a:hover,
#stacks_in_33296 .link_effect9stacks_in_33296 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33296 .link_effect9stacks_in_33296 a::before,
#stacks_in_33296 .link_effect9stacks_in_33296 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_33296 .link_effect9stacks_in_33296 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_33296 .link_effect9stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect9stacks_in_33296 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_33296 .link_effect9stacks_in_33296 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_33296 .link_effect10stacks_in_33296 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33296 .link_effect10stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect10stacks_in_33296 a::before,
#stacks_in_33296 .link_effect10stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33296 .link_effect10stacks_in_33296 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_33296 .link_effect10stacks_in_33296 a:hover,
#stacks_in_33296 .link_effect10stacks_in_33296 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_33296 .link_effect10stacks_in_33296 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_33296 .link_effect10stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect10stacks_in_33296 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_33296 .link_effect11stacks_in_33296 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33296 .link_effect11stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect11stacks_in_33296 a::before,
#stacks_in_33296 .link_effect11stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33296 .link_effect11stacks_in_33296 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_33296 .link_effect11stacks_in_33296 a:hover,
#stacks_in_33296 .link_effect11stacks_in_33296 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33296 .link_effect11stacks_in_33296 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_33296 .link_effect11stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect11stacks_in_33296 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_33296 .link_effect12stacks_in_33296 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33296 .link_effect12stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect12stacks_in_33296 a::before,
#stacks_in_33296 .link_effect12stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33296 .link_effect12stacks_in_33296 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_33296 .link_effect12stacks_in_33296 a:hover,
#stacks_in_33296 .link_effect12stacks_in_33296 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_33296 .link_effect12stacks_in_33296 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_33296 .link_effect12stacks_in_33296 a,
#stacks_in_33296 .link_effect12stacks_in_33296 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_33296 .link_effect12stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect12stacks_in_33296 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_33296 .link_effect13stacks_in_33296 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33296 .link_effect13stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect13stacks_in_33296 a::before,
#stacks_in_33296 .link_effect13stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33296 .link_effect13stacks_in_33296 {
}

#stacks_in_33296 .link_effect13stacks_in_33296 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_33296 .link_effect13stacks_in_33296 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_33296 .link_effect13stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect13stacks_in_33296 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_33296 .link_effect14stacks_in_33296 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33296 .link_effect14stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect14stacks_in_33296 a::before,
#stacks_in_33296 .link_effect14stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33296 .link_effect14stacks_in_33296 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_33296 .link_effect14stacks_in_33296 a:hover,
#stacks_in_33296 .link_effect14stacks_in_33296 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_33296 .link_effect14stacks_in_33296 a::before,
#stacks_in_33296 .link_effect14stacks_in_33296 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_33296 .link_effect14stacks_in_33296 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_33296 .link_effect14stacks_in_33296 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_33296 .link_effect14stacks_in_33296 a:hover::after,
#stacks_in_33296 .link_effect14stacks_in_33296 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_33296 .link_effect15stacks_in_33296 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33296 .link_effect15stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect15stacks_in_33296 a::before,
#stacks_in_33296 .link_effect15stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33296 .link_effect15stacks_in_33296 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_33296 .link_effect15stacks_in_33296 a::before,
#stacks_in_33296 .link_effect15stacks_in_33296 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_33296 .link_effect15stacks_in_33296 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_33296 .link_effect15stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect15stacks_in_33296 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_33296 .link_effect15stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect15stacks_in_33296 a:focus::before,
#stacks_in_33296 .link_effect15stacks_in_33296 a:hover::after,
#stacks_in_33296 .link_effect15stacks_in_33296 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_33296 .link_effect15stacks_in_33296 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_33296 .link_effect15stacks_in_33296 a:hover::after,
#stacks_in_33296 .link_effect15stacks_in_33296 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_33296 .link_effect16stacks_in_33296 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33296 .link_effect16stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect16stacks_in_33296 a::before,
#stacks_in_33296 .link_effect16stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33296 .link_effect16stacks_in_33296 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_33296 .link_effect16stacks_in_33296 a:hover {
	color: #d04c3f;
}

#stacks_in_33296 .link_effect16stacks_in_33296 a::before,
#stacks_in_33296 .link_effect16stacks_in_33296 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_33296 .link_effect16stacks_in_33296 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_33296 .link_effect16stacks_in_33296 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_33296 .link_effect16stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect16stacks_in_33296 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_33296 .link_effect17stacks_in_33296 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_33296 .link_effect17stacks_in_33296 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_33296 .link_effect17stacks_in_33296 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_33296 .link_effect18stacks_in_33296 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33296 .link_effect18stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect18stacks_in_33296 a::before,
#stacks_in_33296 .link_effect18stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33296 .link_effect18stacks_in_33296 {
}

#stacks_in_33296 .link_effect18stacks_in_33296 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_33296 .link_effect18stacks_in_33296 a::before,
#stacks_in_33296 .link_effect18stacks_in_33296 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_33296 .link_effect18stacks_in_33296 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_33296 .link_effect18stacks_in_33296 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_33296 .link_effect18stacks_in_33296 a:hover,
#stacks_in_33296 .link_effect18stacks_in_33296 a:focus {
	color: #fff;
}

#stacks_in_33296 .link_effect18stacks_in_33296 a:hover::before,
#stacks_in_33296 .link_effect18stacks_in_33296 a:focus::before,
#stacks_in_33296 .link_effect18stacks_in_33296 a:hover::after,
#stacks_in_33296 .link_effect18stacks_in_33296 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_33296 .link_effect19stacks_in_33296 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33296 .link_effect19stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect19stacks_in_33296 a::before,
#stacks_in_33296 .link_effect19stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_33296 a {
}

.link_effect19stacks_in_33296 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_33296 a:hover::after,
.link_effect19stacks_in_33296 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_33296 .link_effect20stacks_in_33296 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33296 .link_effect20stacks_in_33296 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33296 .link_effect20stacks_in_33296 a::before,
#stacks_in_33296 .link_effect20stacks_in_33296 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_33296 a {
}

.link_effect20stacks_in_33296 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_33296 a:hover::after,
.link_effect20stacks_in_33296 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_33298 {
	padding:  20px;
}

#stacks_in_33299 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33198Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33198Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33198Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33198Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33198Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33198Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33198Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33198Calligrapher h6, .stacks_in_33198Calligrapher h5, .stacks_in_33198Calligrapher h4, .stacks_in_33198Calligrapher h3, .stacks_in_33198Calligrapher h2, .stacks_in_33198Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33198Calligrapher, .stacks_in_33198Calligrapher h1, .stacks_in_33198Calligrapher h2, .stacks_in_33198Calligrapher h3, .stacks_in_33198Calligrapher h4, .stacks_in_33198Calligrapher h5, .stacks_in_33198Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33198Calligrapher, .stacks_in_33198Calligrapher h1, .stacks_in_33198Calligrapher h2, .stacks_in_33198Calligrapher h3, .stacks_in_33198Calligrapher h4, .stacks_in_33198Calligrapher h5, .stacks_in_33198Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33198targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33198Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33198Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33198Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33198Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33198 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_33300 {
	padding:  20px;
}

#stacks_in_33189 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_33318{padding-left:0px;padding-right:0px;}#stacks_in_33318 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33318 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33318 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33318 > .jack.width-static{width:500px}#stacks_in_33318 > .jack.width-flexible{width:100%}#stacks_in_33318 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33318 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33318 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33318 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33318 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33318 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33318 > .jack::after{border-radius:0px}#stacks_in_33318 > .jack.border-detailed-radius,#stacks_in_33318 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_33318 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33318 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33318 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_33318 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33318 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33318 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33318 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33318 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33318 > .jack.bg-image:not(.glass){}#stacks_in_33318 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33318 > .jack.bg-image.glass.after,#stacks_in_33318 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33318 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33318 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33318 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33318 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33318 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33318 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33318 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33318 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33318 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33318 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33318 > .jack.bg-image.glass.after,#stacks_in_33318 > .glass.jack.bg-image::after{}#stacks_in_33318 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33318 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33318 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33318 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33318 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33318 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33318 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33318 > .jack.peek-shadow::before,#stacks_in_33318 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33318 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33318 > .jack{overflow:visible;}#stacks_in_33318 > .jack.height-static{height:100px}#stacks_in_33318 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_33319{}#stacks_in_33319 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33319 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33319 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33319 > .jack.width-static{width:500px}#stacks_in_33319 > .jack.width-flexible{width:100%}#stacks_in_33319 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33319 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33319 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33319 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33319 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33319 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33319 > .jack::after{border-radius:15px}#stacks_in_33319 > .jack.border-detailed-radius,#stacks_in_33319 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_33319 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33319 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33319 > .jack.bg-gradient{background-color:#A1EBA6}#stacks_in_33319 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33319 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33319 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33319 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33319 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33319 > .jack.bg-image:not(.glass){}#stacks_in_33319 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33319 > .jack.bg-image.glass.after,#stacks_in_33319 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33319 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33319 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33319 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33319 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33319 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33319 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33319 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33319 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33319 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33319 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33319 > .jack.bg-image.glass.after,#stacks_in_33319 > .glass.jack.bg-image::after{}#stacks_in_33319 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33319 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33319 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_33319 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33319 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33319 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33319 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33319 > .jack.peek-shadow::before,#stacks_in_33319 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33319 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33319 > .jack{overflow:hidden;}#stacks_in_33319 > .jack.height-static{height:100px}#stacks_in_33319 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_33319 {
	margin: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33328Calligrapher{			font-size: 75% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33328Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33328Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33328Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33328Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33328Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33328Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33328Calligrapher h6, .stacks_in_33328Calligrapher h5, .stacks_in_33328Calligrapher h4, .stacks_in_33328Calligrapher h3, .stacks_in_33328Calligrapher h2, .stacks_in_33328Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33328Calligrapher, .stacks_in_33328Calligrapher h1, .stacks_in_33328Calligrapher h2, .stacks_in_33328Calligrapher h3, .stacks_in_33328Calligrapher h4, .stacks_in_33328Calligrapher h5, .stacks_in_33328Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33328Calligrapher, .stacks_in_33328Calligrapher h1, .stacks_in_33328Calligrapher h2, .stacks_in_33328Calligrapher h3, .stacks_in_33328Calligrapher h4, .stacks_in_33328Calligrapher h5, .stacks_in_33328Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33328targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33328Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33328Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33328Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33328Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_33329x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_33329x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_33329x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_33329 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_33330 {
	font-weight: lighter;
}
#stacks_in_33320{}#stacks_in_33320 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33320 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33320 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33320 > .jack.width-static{width:500px}#stacks_in_33320 > .jack.width-flexible{width:100%}#stacks_in_33320 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33320 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33320 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33320 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33320 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33320 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33320 > .jack::after{border-radius:15px}#stacks_in_33320 > .jack.border-detailed-radius,#stacks_in_33320 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33320 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33320 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33320 > .jack.bg-gradient{background-color:#A1EBA6}#stacks_in_33320 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33320 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33320 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33320 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33320 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33320 > .jack.bg-image:not(.glass){}#stacks_in_33320 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33320 > .jack.bg-image.glass.after,#stacks_in_33320 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33320 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33320 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33320 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33320 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33320 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33320 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33320 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33320 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33320 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33320 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33320 > .jack.bg-image.glass.after,#stacks_in_33320 > .glass.jack.bg-image::after{}#stacks_in_33320 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33320 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33320 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_33320 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33320 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33320 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33320 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33320 > .jack.peek-shadow::before,#stacks_in_33320 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33320 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33320 > .jack{overflow:hidden;}#stacks_in_33320 > .jack.height-static{height:100px}#stacks_in_33320 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_33320 {
	margin: 0px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33399Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33399Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33399Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33399Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33399Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33399Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33399Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33399Calligrapher h6, .stacks_in_33399Calligrapher h5, .stacks_in_33399Calligrapher h4, .stacks_in_33399Calligrapher h3, .stacks_in_33399Calligrapher h2, .stacks_in_33399Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33399Calligrapher, .stacks_in_33399Calligrapher h1, .stacks_in_33399Calligrapher h2, .stacks_in_33399Calligrapher h3, .stacks_in_33399Calligrapher h4, .stacks_in_33399Calligrapher h5, .stacks_in_33399Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33399Calligrapher, .stacks_in_33399Calligrapher h1, .stacks_in_33399Calligrapher h2, .stacks_in_33399Calligrapher h3, .stacks_in_33399Calligrapher h4, .stacks_in_33399Calligrapher h5, .stacks_in_33399Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33399targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33399Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33399Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33399Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33399Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33399 {
	margin: 10px 0px 10px 0px;
}

#stacks_in_33333 {
	margin: 0px 20px 0px 20px;
	padding: 0px 5px 0px 5px;
}

#stacks_in_33335 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33322Calligrapher{			font-size: 70% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33322Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33322Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33322Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33322Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33322Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33322Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33322Calligrapher h6, .stacks_in_33322Calligrapher h5, .stacks_in_33322Calligrapher h4, .stacks_in_33322Calligrapher h3, .stacks_in_33322Calligrapher h2, .stacks_in_33322Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33322Calligrapher, .stacks_in_33322Calligrapher h1, .stacks_in_33322Calligrapher h2, .stacks_in_33322Calligrapher h3, .stacks_in_33322Calligrapher h4, .stacks_in_33322Calligrapher h5, .stacks_in_33322Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33322Calligrapher, .stacks_in_33322Calligrapher h1, .stacks_in_33322Calligrapher h2, .stacks_in_33322Calligrapher h3, .stacks_in_33322Calligrapher h4, .stacks_in_33322Calligrapher h5, .stacks_in_33322Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33322targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33322Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33322Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33322Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33322Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33322 {
	margin: 0px 0px 10px 0px;
}

/* @group My Group */
#stacks_in_33336 .wrapper{position: relative;padding: 10px;}
#stacks_in_33336 h2.acc_trigger {
	border: px solid ;
	font-size: 18px;
	background: #C0D5C7;
	color: #FFFFFF;
	padding: 5px;
	margin: 5px 0 5px;
	cursor: pointer;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0 0 3px #000000;
	}
#stacks_in_33336 h2.acc_trigger:hover, #stacks_in_33336 h2.active{
	border: px  solid ;
	font-size: 18px;
	background: #A4B1AD;
	color: #FFFFFF;
	padding: 5px;
	}

#stacks_in_33336 h2.acc_trigger a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	
}
#stacks_in_33336 h2.acc_trigger a:hover, #stacks_in_33336 h2.active a {
	color: #FFFFFF;
}
#stacks_in_33336 h2.active {}
#stacks_in_33336 .acc_container {
	margin: 10px 0; padding: 0;
	overflow: hidden;
	clear: both;
	background-color: #FFFFFF;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	box-shadow: 0 0 3px #000000;
	font-size: 1.1em;}
#stacks_in_33336 .acc_container .block {
	padding: 16px;
}
/* @end */
#stacks_in_33336 {
	margin: 0px 10px 0px 10px;
}
#stacks_in_33338{padding-left:0px;padding-right:0px;}#stacks_in_33338 > .jack{margin:0px;padding:10px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33338 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33338 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33338 > .jack.width-static{width:500px}#stacks_in_33338 > .jack.width-flexible{width:100%}#stacks_in_33338 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33338 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33338 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33338 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33338 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33338 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33338 > .jack::after{border-radius:15px}#stacks_in_33338 > .jack.border-detailed-radius,#stacks_in_33338 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_33338 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33338 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33338 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_33338 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33338 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33338 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33338 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33338 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33338 > .jack.bg-image:not(.glass){}#stacks_in_33338 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33338 > .jack.bg-image.glass.after,#stacks_in_33338 > .glass.jack.bg-image::after{opacity:0.25;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33338 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33338 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33338 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33338 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33338 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33338 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33338 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33338 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33338 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33338 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33338 > .jack.bg-image.glass.after,#stacks_in_33338 > .glass.jack.bg-image::after{}#stacks_in_33338 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33338 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33338 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_33338 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33338 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33338 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33338 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33338 > .jack.peek-shadow::before,#stacks_in_33338 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33338 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33338 > .jack{overflow:hidden;}#stacks_in_33338 > .jack.height-static{height:100px}#stacks_in_33338 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_33341 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;}#stacks_in_33341 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_33341 .fluid-image.unlimited img{width:100% !important}#stacks_in_33341 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_33341 .fluid-image.align-left img{float:left}#stacks_in_33341 .fluid-image.align-right img{float:right}
/* Start dooHeader X stack CSS code */.stacks_in_33344x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_33344x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_33344x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_33344 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_33345 {
	font-weight: lighter;
}

#stacks_in_33346 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_33349 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_33351 {
	margin:  3px;
	padding:  5px;
}
#stacks_in_33353{padding-left:0px;padding-right:0px;}#stacks_in_33353 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33353 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33353 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33353 > .jack.width-static{width:500px}#stacks_in_33353 > .jack.width-flexible{width:100%}#stacks_in_33353 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33353 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33353 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33353 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33353 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33353 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33353 > .jack::after{border-radius:0px}#stacks_in_33353 > .jack.border-detailed-radius,#stacks_in_33353 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33353 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33353 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33353 > .jack.bg-gradient{background-color:#F9FFC1}#stacks_in_33353 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33353 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33353 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33353 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33353 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33353 > .jack.bg-image:not(.glass){}#stacks_in_33353 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33353 > .jack.bg-image.glass.after,#stacks_in_33353 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33353 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33353 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33353 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33353 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33353 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33353 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33353 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33353 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33353 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33353 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33353 > .jack.bg-image.glass.after,#stacks_in_33353 > .glass.jack.bg-image::after{}#stacks_in_33353 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33353 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33353 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33353 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33353 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33353 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33353 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33353 > .jack.peek-shadow::before,#stacks_in_33353 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33353 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33353 > .jack{overflow:hidden;}#stacks_in_33353 > .jack.height-static{height:100px}#stacks_in_33353 > .jack.height-minmax{min-height:100px;max-height:800px}

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

#stacks_in_33357 {
	line-height: 2em;
}
#stacks_in_33358{padding-left:0px;padding-right:0px;}#stacks_in_33358 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33358 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33358 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33358 > .jack.width-static{width:500px}#stacks_in_33358 > .jack.width-flexible{width:100%}#stacks_in_33358 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33358 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33358 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33358 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33358 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33358 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33358 > .jack::after{border-radius:0px}#stacks_in_33358 > .jack.border-detailed-radius,#stacks_in_33358 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_33358 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33358 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33358 > .jack.bg-gradient{background-color:#B1FFB4}#stacks_in_33358 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33358 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33358 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33358 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33358 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33358 > .jack.bg-image:not(.glass){}#stacks_in_33358 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33358 > .jack.bg-image.glass.after,#stacks_in_33358 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33358 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33358 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33358 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33358 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33358 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33358 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33358 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33358 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33358 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33358 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33358 > .jack.bg-image.glass.after,#stacks_in_33358 > .glass.jack.bg-image::after{}#stacks_in_33358 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33358 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33358 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33358 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33358 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33358 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33358 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33358 > .jack.peek-shadow::before,#stacks_in_33358 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33358 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33358 > .jack{overflow:hidden;}#stacks_in_33358 > .jack.height-static{height:100px}#stacks_in_33358 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_33361 {
	line-height: 2em;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_33362 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_33362 .borderbuttonthing, #stacks_in_33362 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_33362 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_33362 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_34348{}#stacks_in_34348 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_34348 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_34348 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_34348 > .jack.width-static{width:500px}#stacks_in_34348 > .jack.width-flexible{width:100%}#stacks_in_34348 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_34348 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34348 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_34348 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_34348 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_34348 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_34348 > .jack::after{border-radius:20px}#stacks_in_34348 > .jack.border-detailed-radius,#stacks_in_34348 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_34348 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_34348 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_34348 > .jack.bg-gradient{background-color:#88F355}#stacks_in_34348 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34348 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_34348 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_34348 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_34348 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34348 > .jack.bg-image:not(.glass){}#stacks_in_34348 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_34348 > .jack.bg-image.glass.after,#stacks_in_34348 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34348 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_34348 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34348 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_34348 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_34348 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_34348 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_34348 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34348 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_34348 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_34348 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34348 > .jack.bg-image.glass.after,#stacks_in_34348 > .glass.jack.bg-image::after{}#stacks_in_34348 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34348 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_34348 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_34348 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34348 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34348 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_34348 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_34348 > .jack.peek-shadow::before,#stacks_in_34348 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_34348 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_34348 > .jack{overflow:hidden;}#stacks_in_34348 > .jack.height-static{height:100px}#stacks_in_34348 > .jack.height-minmax{min-height:100px;max-height:800px}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_34349 {
	text-align: Center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_34349 .borderbuttonthing, #stacks_in_34349 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 18px;
	padding: 0 20px;
	font-size: 12px;
	border: 2px solid #3BC255;
	color: #22C351;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_34349 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_34349 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_33365 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s ease-in;transition:all 1s ease-in;border-radius:0px;-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999;}#stacks_in_33365 .fluid-image img:hover{-webkit-box-shadow:8px 8px 8px #999999;box-shadow:8px 8px 8px #999999}#stacks_in_33365 .fluid-image.unlimited img{width:100% !important}#stacks_in_33365 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_33365 .fluid-image.align-left img{float:left}#stacks_in_33365 .fluid-image.align-right img{float:right}

#stacks_in_33365 {
	margin: 15px 0px 0px 0px;
}
#stacks_in_33367{padding-left:0px;padding-right:0px;}#stacks_in_33367 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33367 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33367 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33367 > .jack.width-static{width:500px}#stacks_in_33367 > .jack.width-flexible{width:100%}#stacks_in_33367 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33367 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33367 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33367 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33367 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33367 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33367 > .jack::after{border-radius:0px}#stacks_in_33367 > .jack.border-detailed-radius,#stacks_in_33367 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_33367 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33367 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33367 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_33367 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33367 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33367 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33367 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33367 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33367 > .jack.bg-image:not(.glass){}#stacks_in_33367 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33367 > .jack.bg-image.glass.after,#stacks_in_33367 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33367 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33367 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33367 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33367 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33367 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33367 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33367 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33367 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33367 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33367 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33367 > .jack.bg-image.glass.after,#stacks_in_33367 > .glass.jack.bg-image::after{}#stacks_in_33367 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33367 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33367 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_33367 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33367 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33367 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33367 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33367 > .jack.peek-shadow::before,#stacks_in_33367 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33367 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33367 > .jack{overflow:hidden;}#stacks_in_33367 > .jack.height-static{height:100px}#stacks_in_33367 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33323Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33323Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33323Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33323Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33323Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33323Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33323Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33323Calligrapher h6, .stacks_in_33323Calligrapher h5, .stacks_in_33323Calligrapher h4, .stacks_in_33323Calligrapher h3, .stacks_in_33323Calligrapher h2, .stacks_in_33323Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33323Calligrapher, .stacks_in_33323Calligrapher h1, .stacks_in_33323Calligrapher h2, .stacks_in_33323Calligrapher h3, .stacks_in_33323Calligrapher h4, .stacks_in_33323Calligrapher h5, .stacks_in_33323Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33323Calligrapher, .stacks_in_33323Calligrapher h1, .stacks_in_33323Calligrapher h2, .stacks_in_33323Calligrapher h3, .stacks_in_33323Calligrapher h4, .stacks_in_33323Calligrapher h5, .stacks_in_33323Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33323targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33323Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33323Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33323Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33323Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33323 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_33369 a:before, .link_effect1stacks_in_33369 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_33369 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_33369 a:hover:before, .link_effect1stacks_in_33369 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_33369 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_33369 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_33369 .link_effect2stacks_in_33369 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_33369 .link_effect2stacks_in_33369 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_33369 .link_effect3stacks_in_33369 {
  	text-decoration: none;
}

#stacks_in_33369 .link_effect3stacks_in_33369 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_33369 .link_effect3stacks_in_33369 a:hover,
#stacks_in_33369 .link_effect3stacks_in_33369 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_33369 .link_effect4stacks_in_33369 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33369 .link_effect4stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect4stacks_in_33369 a::before,
#stacks_in_33369 .link_effect%stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33369 .link_effect4stacks_in_33369 {
}

#stacks_in_33369 .link_effect4stacks_in_33369 a {
	font-weight:bold !important;;
}

#stacks_in_33369 .link_effect4stacks_in_33369 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_33369 .link_effect4stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect4stacks_in_33369 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_33369 .link_effect5stacks_in_33369 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33369 .link_effect5stacks_in_33369 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect5stacks_in_33369 a::before,
#stacks_in_33369 .link_effect5stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33369 .link_effect5stacks_in_33369 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_33369 .link_effect5stacks_in_33369 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_33369 .link_effect5stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect5stacks_in_33369 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_33369 .link_effect6stacks_in_33369 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33369 .link_effect6stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect6stacks_in_33369 a::before,
#stacks_in_33369 .link_effect6stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33369 .link_effect6stacks_in_33369 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_33369 .link_effect6stacks_in_33369 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_33369 .link_effect6stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect6stacks_in_33369 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_33369 .link_effect7stacks_in_33369 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33369 .link_effect7stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect7stacks_in_33369 a::before,
#stacks_in_33369 .link_effect7stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33369 .link_effect7stacks_in_33369 {
	position: relative;
}

#stacks_in_33369 .link_effect7stacks_in_33369 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_33369 .link_effect7stacks_in_33369 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_33369 .link_effect7stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect7stacks_in_33369 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_33369 .link_effect8stacks_in_33369 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33369 .link_effect8stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect8stacks_in_33369 a::before,
#stacks_in_33369 .link_effect8stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_33369 .link_effect8stacks_in_33369 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_33369 .link_effect8stacks_in_33369 a:hover,
#stacks_in_33369 .link_effect8stacks_in_33369 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33369 .link_effect8stacks_in_33369 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_33369 .link_effect8stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect8stacks_in_33369 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_33369 .link_effect9stacks_in_33369 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33369 .link_effect9stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect9stacks_in_33369 a::before,
#stacks_in_33369 .link_effect9stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33369 .link_effect9stacks_in_33369 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_33369 .link_effect9stacks_in_33369 a:hover,
#stacks_in_33369 .link_effect9stacks_in_33369 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33369 .link_effect9stacks_in_33369 a::before,
#stacks_in_33369 .link_effect9stacks_in_33369 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_33369 .link_effect9stacks_in_33369 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_33369 .link_effect9stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect9stacks_in_33369 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_33369 .link_effect9stacks_in_33369 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_33369 .link_effect10stacks_in_33369 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33369 .link_effect10stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect10stacks_in_33369 a::before,
#stacks_in_33369 .link_effect10stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33369 .link_effect10stacks_in_33369 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_33369 .link_effect10stacks_in_33369 a:hover,
#stacks_in_33369 .link_effect10stacks_in_33369 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_33369 .link_effect10stacks_in_33369 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_33369 .link_effect10stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect10stacks_in_33369 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_33369 .link_effect11stacks_in_33369 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33369 .link_effect11stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect11stacks_in_33369 a::before,
#stacks_in_33369 .link_effect11stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33369 .link_effect11stacks_in_33369 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_33369 .link_effect11stacks_in_33369 a:hover,
#stacks_in_33369 .link_effect11stacks_in_33369 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33369 .link_effect11stacks_in_33369 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_33369 .link_effect11stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect11stacks_in_33369 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_33369 .link_effect12stacks_in_33369 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33369 .link_effect12stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect12stacks_in_33369 a::before,
#stacks_in_33369 .link_effect12stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33369 .link_effect12stacks_in_33369 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_33369 .link_effect12stacks_in_33369 a:hover,
#stacks_in_33369 .link_effect12stacks_in_33369 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_33369 .link_effect12stacks_in_33369 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_33369 .link_effect12stacks_in_33369 a,
#stacks_in_33369 .link_effect12stacks_in_33369 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_33369 .link_effect12stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect12stacks_in_33369 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_33369 .link_effect13stacks_in_33369 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33369 .link_effect13stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect13stacks_in_33369 a::before,
#stacks_in_33369 .link_effect13stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33369 .link_effect13stacks_in_33369 {
}

#stacks_in_33369 .link_effect13stacks_in_33369 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_33369 .link_effect13stacks_in_33369 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_33369 .link_effect13stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect13stacks_in_33369 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_33369 .link_effect14stacks_in_33369 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33369 .link_effect14stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect14stacks_in_33369 a::before,
#stacks_in_33369 .link_effect14stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33369 .link_effect14stacks_in_33369 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_33369 .link_effect14stacks_in_33369 a:hover,
#stacks_in_33369 .link_effect14stacks_in_33369 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_33369 .link_effect14stacks_in_33369 a::before,
#stacks_in_33369 .link_effect14stacks_in_33369 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_33369 .link_effect14stacks_in_33369 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_33369 .link_effect14stacks_in_33369 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_33369 .link_effect14stacks_in_33369 a:hover::after,
#stacks_in_33369 .link_effect14stacks_in_33369 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_33369 .link_effect15stacks_in_33369 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33369 .link_effect15stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect15stacks_in_33369 a::before,
#stacks_in_33369 .link_effect15stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33369 .link_effect15stacks_in_33369 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_33369 .link_effect15stacks_in_33369 a::before,
#stacks_in_33369 .link_effect15stacks_in_33369 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_33369 .link_effect15stacks_in_33369 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_33369 .link_effect15stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect15stacks_in_33369 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_33369 .link_effect15stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect15stacks_in_33369 a:focus::before,
#stacks_in_33369 .link_effect15stacks_in_33369 a:hover::after,
#stacks_in_33369 .link_effect15stacks_in_33369 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_33369 .link_effect15stacks_in_33369 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_33369 .link_effect15stacks_in_33369 a:hover::after,
#stacks_in_33369 .link_effect15stacks_in_33369 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_33369 .link_effect16stacks_in_33369 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33369 .link_effect16stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect16stacks_in_33369 a::before,
#stacks_in_33369 .link_effect16stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33369 .link_effect16stacks_in_33369 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_33369 .link_effect16stacks_in_33369 a:hover {
	color: #d04c3f;
}

#stacks_in_33369 .link_effect16stacks_in_33369 a::before,
#stacks_in_33369 .link_effect16stacks_in_33369 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_33369 .link_effect16stacks_in_33369 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_33369 .link_effect16stacks_in_33369 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_33369 .link_effect16stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect16stacks_in_33369 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_33369 .link_effect17stacks_in_33369 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_33369 .link_effect17stacks_in_33369 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_33369 .link_effect17stacks_in_33369 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_33369 .link_effect18stacks_in_33369 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33369 .link_effect18stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect18stacks_in_33369 a::before,
#stacks_in_33369 .link_effect18stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33369 .link_effect18stacks_in_33369 {
}

#stacks_in_33369 .link_effect18stacks_in_33369 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_33369 .link_effect18stacks_in_33369 a::before,
#stacks_in_33369 .link_effect18stacks_in_33369 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_33369 .link_effect18stacks_in_33369 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_33369 .link_effect18stacks_in_33369 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_33369 .link_effect18stacks_in_33369 a:hover,
#stacks_in_33369 .link_effect18stacks_in_33369 a:focus {
	color: #fff;
}

#stacks_in_33369 .link_effect18stacks_in_33369 a:hover::before,
#stacks_in_33369 .link_effect18stacks_in_33369 a:focus::before,
#stacks_in_33369 .link_effect18stacks_in_33369 a:hover::after,
#stacks_in_33369 .link_effect18stacks_in_33369 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_33369 .link_effect19stacks_in_33369 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33369 .link_effect19stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect19stacks_in_33369 a::before,
#stacks_in_33369 .link_effect19stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_33369 a {
}

.link_effect19stacks_in_33369 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_33369 a:hover::after,
.link_effect19stacks_in_33369 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_33369 .link_effect20stacks_in_33369 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33369 .link_effect20stacks_in_33369 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33369 .link_effect20stacks_in_33369 a::before,
#stacks_in_33369 .link_effect20stacks_in_33369 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_33369 a {
}

.link_effect20stacks_in_33369 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_33369 a:hover::after,
.link_effect20stacks_in_33369 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_33371 {
	padding:  20px;
}

#stacks_in_33372 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33324Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33324Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33324Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33324Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33324Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33324Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33324Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33324Calligrapher h6, .stacks_in_33324Calligrapher h5, .stacks_in_33324Calligrapher h4, .stacks_in_33324Calligrapher h3, .stacks_in_33324Calligrapher h2, .stacks_in_33324Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33324Calligrapher, .stacks_in_33324Calligrapher h1, .stacks_in_33324Calligrapher h2, .stacks_in_33324Calligrapher h3, .stacks_in_33324Calligrapher h4, .stacks_in_33324Calligrapher h5, .stacks_in_33324Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33324Calligrapher, .stacks_in_33324Calligrapher h1, .stacks_in_33324Calligrapher h2, .stacks_in_33324Calligrapher h3, .stacks_in_33324Calligrapher h4, .stacks_in_33324Calligrapher h5, .stacks_in_33324Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33324targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33324Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33324Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33324Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33324Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33324 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_33373 {
	padding:  20px;
}

#stacks_in_33374 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_33375{padding-left:0px;padding-right:0px;}#stacks_in_33375 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33375 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33375 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33375 > .jack.width-static{width:500px}#stacks_in_33375 > .jack.width-flexible{width:100%}#stacks_in_33375 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33375 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33375 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33375 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33375 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33375 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33375 > .jack::after{border-radius:0px}#stacks_in_33375 > .jack.border-detailed-radius,#stacks_in_33375 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_33375 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33375 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_33375 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_33375 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33375 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33375 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33375 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33375 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33375 > .jack.bg-image:not(.glass){}#stacks_in_33375 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33375 > .jack.bg-image.glass.after,#stacks_in_33375 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33375 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33375 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33375 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33375 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33375 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33375 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33375 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33375 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33375 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33375 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33375 > .jack.bg-image.glass.after,#stacks_in_33375 > .glass.jack.bg-image::after{}#stacks_in_33375 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33375 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33375 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_33375 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33375 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_33375 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33375 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33375 > .jack.peek-shadow::before,#stacks_in_33375 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_33375 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33375 > .jack{overflow:hidden;}#stacks_in_33375 > .jack.height-static{height:100px}#stacks_in_33375 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33325Calligrapher{			font-size: 120% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33325Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33325Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33325Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33325Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33325Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33325Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33325Calligrapher h6, .stacks_in_33325Calligrapher h5, .stacks_in_33325Calligrapher h4, .stacks_in_33325Calligrapher h3, .stacks_in_33325Calligrapher h2, .stacks_in_33325Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33325Calligrapher, .stacks_in_33325Calligrapher h1, .stacks_in_33325Calligrapher h2, .stacks_in_33325Calligrapher h3, .stacks_in_33325Calligrapher h4, .stacks_in_33325Calligrapher h5, .stacks_in_33325Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33325Calligrapher, .stacks_in_33325Calligrapher h1, .stacks_in_33325Calligrapher h2, .stacks_in_33325Calligrapher h3, .stacks_in_33325Calligrapher h4, .stacks_in_33325Calligrapher h5, .stacks_in_33325Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33325targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33325Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33325Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33325Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33325Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33325 {
	margin: 15px 15px 15px 15px;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_33378 a:before, .link_effect1stacks_in_33378 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_33378 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_33378 a:hover:before, .link_effect1stacks_in_33378 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_33378 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_33378 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_33378 .link_effect2stacks_in_33378 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_33378 .link_effect2stacks_in_33378 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_33378 .link_effect3stacks_in_33378 {
  	text-decoration: none;
}

#stacks_in_33378 .link_effect3stacks_in_33378 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_33378 .link_effect3stacks_in_33378 a:hover,
#stacks_in_33378 .link_effect3stacks_in_33378 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_33378 .link_effect4stacks_in_33378 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33378 .link_effect4stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect4stacks_in_33378 a::before,
#stacks_in_33378 .link_effect%stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33378 .link_effect4stacks_in_33378 {
}

#stacks_in_33378 .link_effect4stacks_in_33378 a {
	font-weight:bold !important;;
}

#stacks_in_33378 .link_effect4stacks_in_33378 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_33378 .link_effect4stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect4stacks_in_33378 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_33378 .link_effect5stacks_in_33378 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33378 .link_effect5stacks_in_33378 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect5stacks_in_33378 a::before,
#stacks_in_33378 .link_effect5stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33378 .link_effect5stacks_in_33378 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_33378 .link_effect5stacks_in_33378 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_33378 .link_effect5stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect5stacks_in_33378 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_33378 .link_effect6stacks_in_33378 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33378 .link_effect6stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect6stacks_in_33378 a::before,
#stacks_in_33378 .link_effect6stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33378 .link_effect6stacks_in_33378 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_33378 .link_effect6stacks_in_33378 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_33378 .link_effect6stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect6stacks_in_33378 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_33378 .link_effect7stacks_in_33378 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33378 .link_effect7stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect7stacks_in_33378 a::before,
#stacks_in_33378 .link_effect7stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33378 .link_effect7stacks_in_33378 {
	position: relative;
}

#stacks_in_33378 .link_effect7stacks_in_33378 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_33378 .link_effect7stacks_in_33378 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_33378 .link_effect7stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect7stacks_in_33378 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_33378 .link_effect8stacks_in_33378 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33378 .link_effect8stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect8stacks_in_33378 a::before,
#stacks_in_33378 .link_effect8stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_33378 .link_effect8stacks_in_33378 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_33378 .link_effect8stacks_in_33378 a:hover,
#stacks_in_33378 .link_effect8stacks_in_33378 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33378 .link_effect8stacks_in_33378 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_33378 .link_effect8stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect8stacks_in_33378 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_33378 .link_effect9stacks_in_33378 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33378 .link_effect9stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect9stacks_in_33378 a::before,
#stacks_in_33378 .link_effect9stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33378 .link_effect9stacks_in_33378 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_33378 .link_effect9stacks_in_33378 a:hover,
#stacks_in_33378 .link_effect9stacks_in_33378 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33378 .link_effect9stacks_in_33378 a::before,
#stacks_in_33378 .link_effect9stacks_in_33378 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_33378 .link_effect9stacks_in_33378 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_33378 .link_effect9stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect9stacks_in_33378 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_33378 .link_effect9stacks_in_33378 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_33378 .link_effect10stacks_in_33378 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33378 .link_effect10stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect10stacks_in_33378 a::before,
#stacks_in_33378 .link_effect10stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_33378 .link_effect10stacks_in_33378 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_33378 .link_effect10stacks_in_33378 a:hover,
#stacks_in_33378 .link_effect10stacks_in_33378 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_33378 .link_effect10stacks_in_33378 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_33378 .link_effect10stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect10stacks_in_33378 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_33378 .link_effect11stacks_in_33378 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_33378 .link_effect11stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect11stacks_in_33378 a::before,
#stacks_in_33378 .link_effect11stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_33378 .link_effect11stacks_in_33378 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_33378 .link_effect11stacks_in_33378 a:hover,
#stacks_in_33378 .link_effect11stacks_in_33378 a:focus {
	color: #DA4453 !important;
}

#stacks_in_33378 .link_effect11stacks_in_33378 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_33378 .link_effect11stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect11stacks_in_33378 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_33378 .link_effect12stacks_in_33378 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33378 .link_effect12stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect12stacks_in_33378 a::before,
#stacks_in_33378 .link_effect12stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33378 .link_effect12stacks_in_33378 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_33378 .link_effect12stacks_in_33378 a:hover,
#stacks_in_33378 .link_effect12stacks_in_33378 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_33378 .link_effect12stacks_in_33378 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_33378 .link_effect12stacks_in_33378 a,
#stacks_in_33378 .link_effect12stacks_in_33378 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_33378 .link_effect12stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect12stacks_in_33378 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_33378 .link_effect13stacks_in_33378 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33378 .link_effect13stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect13stacks_in_33378 a::before,
#stacks_in_33378 .link_effect13stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33378 .link_effect13stacks_in_33378 {
}

#stacks_in_33378 .link_effect13stacks_in_33378 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_33378 .link_effect13stacks_in_33378 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../ueberblick_buecher_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_33378 .link_effect13stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect13stacks_in_33378 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_33378 .link_effect14stacks_in_33378 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33378 .link_effect14stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect14stacks_in_33378 a::before,
#stacks_in_33378 .link_effect14stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33378 .link_effect14stacks_in_33378 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_33378 .link_effect14stacks_in_33378 a:hover,
#stacks_in_33378 .link_effect14stacks_in_33378 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_33378 .link_effect14stacks_in_33378 a::before,
#stacks_in_33378 .link_effect14stacks_in_33378 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_33378 .link_effect14stacks_in_33378 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_33378 .link_effect14stacks_in_33378 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../ueberblick_buecher_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_33378 .link_effect14stacks_in_33378 a:hover::after,
#stacks_in_33378 .link_effect14stacks_in_33378 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_33378 .link_effect15stacks_in_33378 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33378 .link_effect15stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect15stacks_in_33378 a::before,
#stacks_in_33378 .link_effect15stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33378 .link_effect15stacks_in_33378 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_33378 .link_effect15stacks_in_33378 a::before,
#stacks_in_33378 .link_effect15stacks_in_33378 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_33378 .link_effect15stacks_in_33378 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_33378 .link_effect15stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect15stacks_in_33378 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_33378 .link_effect15stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect15stacks_in_33378 a:focus::before,
#stacks_in_33378 .link_effect15stacks_in_33378 a:hover::after,
#stacks_in_33378 .link_effect15stacks_in_33378 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_33378 .link_effect15stacks_in_33378 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_33378 .link_effect15stacks_in_33378 a:hover::after,
#stacks_in_33378 .link_effect15stacks_in_33378 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_33378 .link_effect16stacks_in_33378 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33378 .link_effect16stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect16stacks_in_33378 a::before,
#stacks_in_33378 .link_effect16stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_33378 .link_effect16stacks_in_33378 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_33378 .link_effect16stacks_in_33378 a:hover {
	color: #d04c3f;
}

#stacks_in_33378 .link_effect16stacks_in_33378 a::before,
#stacks_in_33378 .link_effect16stacks_in_33378 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_33378 .link_effect16stacks_in_33378 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_33378 .link_effect16stacks_in_33378 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_33378 .link_effect16stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect16stacks_in_33378 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_33378 .link_effect17stacks_in_33378 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_33378 .link_effect17stacks_in_33378 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_33378 .link_effect17stacks_in_33378 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_33378 .link_effect18stacks_in_33378 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33378 .link_effect18stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect18stacks_in_33378 a::before,
#stacks_in_33378 .link_effect18stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_33378 .link_effect18stacks_in_33378 {
}

#stacks_in_33378 .link_effect18stacks_in_33378 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_33378 .link_effect18stacks_in_33378 a::before,
#stacks_in_33378 .link_effect18stacks_in_33378 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_33378 .link_effect18stacks_in_33378 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_33378 .link_effect18stacks_in_33378 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_33378 .link_effect18stacks_in_33378 a:hover,
#stacks_in_33378 .link_effect18stacks_in_33378 a:focus {
	color: #fff;
}

#stacks_in_33378 .link_effect18stacks_in_33378 a:hover::before,
#stacks_in_33378 .link_effect18stacks_in_33378 a:focus::before,
#stacks_in_33378 .link_effect18stacks_in_33378 a:hover::after,
#stacks_in_33378 .link_effect18stacks_in_33378 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_33378 .link_effect19stacks_in_33378 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33378 .link_effect19stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect19stacks_in_33378 a::before,
#stacks_in_33378 .link_effect19stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_33378 a {
}

.link_effect19stacks_in_33378 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_33378 a:hover::after,
.link_effect19stacks_in_33378 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_33378 .link_effect20stacks_in_33378 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_33378 .link_effect20stacks_in_33378 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_33378 .link_effect20stacks_in_33378 a::before,
#stacks_in_33378 .link_effect20stacks_in_33378 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_33378 a {
}

.link_effect20stacks_in_33378 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_33378 a:hover::after,
.link_effect20stacks_in_33378 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_33380 {
	padding:  20px;
}

#stacks_in_33381 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_33326Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_33326Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33326Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33326Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33326Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33326Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33326Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_33326Calligrapher h6, .stacks_in_33326Calligrapher h5, .stacks_in_33326Calligrapher h4, .stacks_in_33326Calligrapher h3, .stacks_in_33326Calligrapher h2, .stacks_in_33326Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_33326Calligrapher, .stacks_in_33326Calligrapher h1, .stacks_in_33326Calligrapher h2, .stacks_in_33326Calligrapher h3, .stacks_in_33326Calligrapher h4, .stacks_in_33326Calligrapher h5, .stacks_in_33326Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_33326Calligrapher, .stacks_in_33326Calligrapher h1, .stacks_in_33326Calligrapher h2, .stacks_in_33326Calligrapher h3, .stacks_in_33326Calligrapher h4, .stacks_in_33326Calligrapher h5, .stacks_in_33326Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_33326targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_33326Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_33326Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_33326Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_33326Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_33326 {
	margin: 5px 5px 5px 5px;
}

#stacks_in_33382 {
	padding:  20px;
}

#stacks_in_33383 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_30467{padding-left:0px;padding-right:0px;}#stacks_in_30467 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_30467 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30467 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30467 > .jack.width-static{width:500px}#stacks_in_30467 > .jack.width-flexible{width:100%}#stacks_in_30467 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30467 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30467 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30467 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30467 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30467 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30467 > .jack::after{border-radius:0px}#stacks_in_30467 > .jack.border-detailed-radius,#stacks_in_30467 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30467 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30467 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30467 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30467 > .jack.bg-image:not(.glass){background-image:url(../ueberblick_buecher_files/bgImage-30467.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30467 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30467 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30467 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_30467 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30467 > .jack.bg-image:not(.glass){}#stacks_in_30467 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30467 > .jack.bg-image.glass.after,#stacks_in_30467 > .glass.jack.bg-image::after{opacity:0.80;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../ueberblick_buecher_files/bgImage-30467.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30467 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30467 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30467 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30467 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30467 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30467 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30467 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30467 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_30467 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30467 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30467 > .jack.bg-image.glass.after,#stacks_in_30467 > .glass.jack.bg-image::after{}#stacks_in_30467 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30467 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30467 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_30467 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_30467 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_30467 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_30467 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_30467 > .jack.peek-shadow::before,#stacks_in_30467 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_30467 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30467 > .jack{overflow:hidden;}#stacks_in_30467 > .jack.height-static{height:30px}#stacks_in_30467 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_30467 {
	margin: 20px 0px 20px 0px;
}
#stacks_in_38872{padding-left:0px;padding-right:0px;}#stacks_in_38872 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38872 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38872 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38872 > .jack.width-static{width:500px}#stacks_in_38872 > .jack.width-flexible{width:100%}#stacks_in_38872 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38872 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38872 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38872 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38872 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38872 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38872 > .jack::after{border-radius:0px}#stacks_in_38872 > .jack.border-detailed-radius,#stacks_in_38872 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_38872 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38872 > .jack.bg-color{background-color:#89C5FF}#stacks_in_38872 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_38872 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38872 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38872 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38872 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38872 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38872 > .jack.bg-image:not(.glass){}#stacks_in_38872 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38872 > .jack.bg-image.glass.after,#stacks_in_38872 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38872 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38872 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38872 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38872 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38872 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38872 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38872 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38872 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38872 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38872 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38872 > .jack.bg-image.glass.after,#stacks_in_38872 > .glass.jack.bg-image::after{}#stacks_in_38872 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38872 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38872 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_38872 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_38872 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_38872 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38872 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38872 > .jack.peek-shadow::before,#stacks_in_38872 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_38872 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38872 > .jack{overflow:visible;}#stacks_in_38872 > .jack.height-static{height:100px}#stacks_in_38872 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38873{padding-left:0px;padding-right:0px;}#stacks_in_38873 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38873 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38873 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38873 > .jack.width-static{width:500px}#stacks_in_38873 > .jack.width-flexible{width:100%}#stacks_in_38873 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38873 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38873 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38873 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38873 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38873 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38873 > .jack::after{border-radius:0px}#stacks_in_38873 > .jack.border-detailed-radius,#stacks_in_38873 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_38873 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38873 > .jack.bg-color{background-color:#89C5FF}#stacks_in_38873 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_38873 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38873 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38873 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38873 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38873 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38873 > .jack.bg-image:not(.glass){}#stacks_in_38873 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38873 > .jack.bg-image.glass.after,#stacks_in_38873 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38873 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38873 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38873 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38873 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38873 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38873 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38873 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38873 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38873 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38873 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38873 > .jack.bg-image.glass.after,#stacks_in_38873 > .glass.jack.bg-image::after{}#stacks_in_38873 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38873 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38873 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_38873 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_38873 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_38873 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38873 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38873 > .jack.peek-shadow::before,#stacks_in_38873 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_38873 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38873 > .jack{overflow:visible;}#stacks_in_38873 > .jack.height-static{height:100px}#stacks_in_38873 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38875{}#stacks_in_38875 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38875 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38875 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38875 > .jack.width-static{width:500px}#stacks_in_38875 > .jack.width-flexible{width:100%}#stacks_in_38875 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38875 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38875 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38875 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38875 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38875 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38875 > .jack::after{border-radius:15px}#stacks_in_38875 > .jack.border-detailed-radius,#stacks_in_38875 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_38875 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38875 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38875 > .jack.bg-gradient{background-color:#AFE9BB}#stacks_in_38875 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38875 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38875 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38875 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38875 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38875 > .jack.bg-image:not(.glass){}#stacks_in_38875 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38875 > .jack.bg-image.glass.after,#stacks_in_38875 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38875 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38875 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38875 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38875 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38875 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38875 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38875 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38875 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38875 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38875 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38875 > .jack.bg-image.glass.after,#stacks_in_38875 > .glass.jack.bg-image::after{}#stacks_in_38875 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38875 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38875 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38875 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38875 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38875 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38875 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38875 > .jack.peek-shadow::before,#stacks_in_38875 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38875 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38875 > .jack{overflow:hidden;}#stacks_in_38875 > .jack.height-static{height:100px}#stacks_in_38875 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38877Calligrapher{			font-size: 100% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38877Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38877Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38877Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38877Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38877Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38877Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38877Calligrapher h6, .stacks_in_38877Calligrapher h5, .stacks_in_38877Calligrapher h4, .stacks_in_38877Calligrapher h3, .stacks_in_38877Calligrapher h2, .stacks_in_38877Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38877Calligrapher, .stacks_in_38877Calligrapher h1, .stacks_in_38877Calligrapher h2, .stacks_in_38877Calligrapher h3, .stacks_in_38877Calligrapher h4, .stacks_in_38877Calligrapher h5, .stacks_in_38877Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_38877Calligrapher, .stacks_in_38877Calligrapher h1, .stacks_in_38877Calligrapher h2, .stacks_in_38877Calligrapher h3, .stacks_in_38877Calligrapher h4, .stacks_in_38877Calligrapher h5, .stacks_in_38877Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38877targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38877Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38877Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38877Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38877Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38877 {
	padding: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_38882x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_38882x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_38882x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_38883 {
	font-weight: lighter;
}
#stacks_in_38878{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_38878 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_38878{visibility:hidden}#stacks_in_38878 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_38878 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_38878 .cycler_nav{cursor:pointer;z-index:101;display:block;display:none;width:50px;height:50px;position:absolute;background:url(../ueberblick_buecher_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:40%;}#stacks_in_38878 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_38878 .cycler_nav.prev:hover{background-position:0px -50px}#stacks_in_38878 .cycler_nav.prev:active{background-position:0px -100px}#stacks_in_38878 .cycler_nav.next{right:0px;background-position:0px -150px}#stacks_in_38878 .cycler_nav.next:hover{background-position:0px -200px}#stacks_in_38878 .cycler_nav.next:active{background-position:0px -250px}
#stacks_in_38886{}#stacks_in_38886 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38886 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38886 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38886 > .jack.width-static{width:500px}#stacks_in_38886 > .jack.width-flexible{width:100%}#stacks_in_38886 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38886 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38886 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38886 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38886 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38886 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38886 > .jack::after{border-radius:15px}#stacks_in_38886 > .jack.border-detailed-radius,#stacks_in_38886 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38886 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38886 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38886 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38886 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38886 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38886 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38886 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38886 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38886 > .jack.bg-image:not(.glass){}#stacks_in_38886 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38886 > .jack.bg-image.glass.after,#stacks_in_38886 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38886 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38886 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38886 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38886 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38886 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38886 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38886 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38886 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38886 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38886 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38886 > .jack.bg-image.glass.after,#stacks_in_38886 > .glass.jack.bg-image::after{}#stacks_in_38886 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38886 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38886 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38886 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38886 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38886 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38886 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38886 > .jack.peek-shadow::before,#stacks_in_38886 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38886 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38886 > .jack{overflow:hidden;}#stacks_in_38886 > .jack.height-static{height:500px}#stacks_in_38886 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_38888 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_38888 {
		display: none !important;
	}
}
#stacks_in_38889 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38889 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38889 #jwresp_col2_stacks_in_38889{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38889 #jwresp_col1_stacks_in_38889,#stacks_in_38889 #jwresp_col2_stacks_in_38889{width:100%;float:none;display:block}#stacks_in_38889 #jwresp_col1_stacks_in_38889{margin-bottom:15px}}

#stacks_in_38889 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_38890 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_38890 {
		display: none !important;
	}
}
#stacks_in_38891 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38891 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38891 .fluid-image.unlimited img{width:100% !important}#stacks_in_38891 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38891 .fluid-image.align-left img{float:left}#stacks_in_38891 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38894Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38894Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38894Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38894Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38894Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38894Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38894Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38894Calligrapher h6, .stacks_in_38894Calligrapher h5, .stacks_in_38894Calligrapher h4, .stacks_in_38894Calligrapher h3, .stacks_in_38894Calligrapher h2, .stacks_in_38894Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38894Calligrapher, .stacks_in_38894Calligrapher h1, .stacks_in_38894Calligrapher h2, .stacks_in_38894Calligrapher h3, .stacks_in_38894Calligrapher h4, .stacks_in_38894Calligrapher h5, .stacks_in_38894Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38894targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38894Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38894Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38894Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38894Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38894 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_38895 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38898 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38900 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38902Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38902Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38902Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38902Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38902Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38902Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38902Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38902Calligrapher h6, .stacks_in_38902Calligrapher h5, .stacks_in_38902Calligrapher h4, .stacks_in_38902Calligrapher h3, .stacks_in_38902Calligrapher h2, .stacks_in_38902Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38902Calligrapher, .stacks_in_38902Calligrapher h1, .stacks_in_38902Calligrapher h2, .stacks_in_38902Calligrapher h3, .stacks_in_38902Calligrapher h4, .stacks_in_38902Calligrapher h5, .stacks_in_38902Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38902targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38902Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38902Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38902Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38902Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38902 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38905 {
	line-height: 2em;
}
#stacks_in_38908{}#stacks_in_38908 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38908 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38908 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38908 > .jack.width-static{width:500px}#stacks_in_38908 > .jack.width-flexible{width:100%}#stacks_in_38908 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38908 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38908 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38908 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38908 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38908 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38908 > .jack::after{border-radius:15px}#stacks_in_38908 > .jack.border-detailed-radius,#stacks_in_38908 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38908 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38908 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38908 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38908 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38908 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38908 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38908 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38908 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38908 > .jack.bg-image:not(.glass){}#stacks_in_38908 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38908 > .jack.bg-image.glass.after,#stacks_in_38908 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38908 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38908 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38908 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38908 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38908 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38908 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38908 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38908 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38908 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38908 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38908 > .jack.bg-image.glass.after,#stacks_in_38908 > .glass.jack.bg-image::after{}#stacks_in_38908 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38908 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38908 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38908 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38908 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38908 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38908 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38908 > .jack.peek-shadow::before,#stacks_in_38908 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38908 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38908 > .jack{overflow:hidden;}#stacks_in_38908 > .jack.height-static{height:500px}#stacks_in_38908 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_38909 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_38909 {
		display: none !important;
	}
}
#stacks_in_38910 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38910 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38910 #jwresp_col2_stacks_in_38910{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38910 #jwresp_col1_stacks_in_38910,#stacks_in_38910 #jwresp_col2_stacks_in_38910{width:100%;float:none;display:block}#stacks_in_38910 #jwresp_col1_stacks_in_38910{margin-bottom:15px}}

#stacks_in_38910 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_38911 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_38911 {
		display: none !important;
	}
}
#stacks_in_38912 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38912 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38912 .fluid-image.unlimited img{width:100% !important}#stacks_in_38912 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38912 .fluid-image.align-left img{float:left}#stacks_in_38912 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38915Calligrapher{			font-size: 110% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38915Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38915Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38915Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38915Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38915Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38915Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38915Calligrapher h6, .stacks_in_38915Calligrapher h5, .stacks_in_38915Calligrapher h4, .stacks_in_38915Calligrapher h3, .stacks_in_38915Calligrapher h2, .stacks_in_38915Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38915Calligrapher, .stacks_in_38915Calligrapher h1, .stacks_in_38915Calligrapher h2, .stacks_in_38915Calligrapher h3, .stacks_in_38915Calligrapher h4, .stacks_in_38915Calligrapher h5, .stacks_in_38915Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38915targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38915Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38915Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38915Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38915Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38915 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_38916 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38919 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38923Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38923Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38923Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38923Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38923Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38923Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38923Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38923Calligrapher h6, .stacks_in_38923Calligrapher h5, .stacks_in_38923Calligrapher h4, .stacks_in_38923Calligrapher h3, .stacks_in_38923Calligrapher h2, .stacks_in_38923Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38923Calligrapher, .stacks_in_38923Calligrapher h1, .stacks_in_38923Calligrapher h2, .stacks_in_38923Calligrapher h3, .stacks_in_38923Calligrapher h4, .stacks_in_38923Calligrapher h5, .stacks_in_38923Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38923targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38923Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38923Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38923Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38923Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38923 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38926 {
	line-height: 2em;
}
#stacks_in_38929{}#stacks_in_38929 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38929 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38929 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38929 > .jack.width-static{width:500px}#stacks_in_38929 > .jack.width-flexible{width:100%}#stacks_in_38929 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38929 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38929 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38929 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38929 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38929 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38929 > .jack::after{border-radius:15px}#stacks_in_38929 > .jack.border-detailed-radius,#stacks_in_38929 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38929 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38929 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38929 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38929 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38929 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38929 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38929 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38929 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38929 > .jack.bg-image:not(.glass){}#stacks_in_38929 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38929 > .jack.bg-image.glass.after,#stacks_in_38929 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38929 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38929 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38929 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38929 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38929 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38929 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38929 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38929 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38929 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38929 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38929 > .jack.bg-image.glass.after,#stacks_in_38929 > .glass.jack.bg-image::after{}#stacks_in_38929 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38929 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38929 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38929 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38929 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38929 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38929 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38929 > .jack.peek-shadow::before,#stacks_in_38929 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38929 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38929 > .jack{overflow:hidden;}#stacks_in_38929 > .jack.height-static{height:500px}#stacks_in_38929 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_38930 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_38930 {
		display: none !important;
	}
}
#stacks_in_38931 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38931 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38931 #jwresp_col2_stacks_in_38931{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38931 #jwresp_col1_stacks_in_38931,#stacks_in_38931 #jwresp_col2_stacks_in_38931{width:100%;float:none;display:block}#stacks_in_38931 #jwresp_col1_stacks_in_38931{margin-bottom:15px}}

#stacks_in_38931 {
	padding:  20px;
}

.spacerStack {
	height: 55.00px;
}

#spacerStackstacks_in_38932 {
	height: 55.00px;
}




























@media print {
	#spacerStackstacks_in_38932 {
		display: none !important;
	}
}
#stacks_in_38933 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38933 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38933 .fluid-image.unlimited img{width:100% !important}#stacks_in_38933 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38933 .fluid-image.align-left img{float:left}#stacks_in_38933 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38936Calligrapher{			font-size: 110% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38936Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38936Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38936Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38936Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38936Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38936Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38936Calligrapher h6, .stacks_in_38936Calligrapher h5, .stacks_in_38936Calligrapher h4, .stacks_in_38936Calligrapher h3, .stacks_in_38936Calligrapher h2, .stacks_in_38936Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38936Calligrapher, .stacks_in_38936Calligrapher h1, .stacks_in_38936Calligrapher h2, .stacks_in_38936Calligrapher h3, .stacks_in_38936Calligrapher h4, .stacks_in_38936Calligrapher h5, .stacks_in_38936Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38936targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38936Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38936Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38936Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38936Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38936 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_38937 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38940 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38944Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38944Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38944Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38944Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38944Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38944Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38944Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38944Calligrapher h6, .stacks_in_38944Calligrapher h5, .stacks_in_38944Calligrapher h4, .stacks_in_38944Calligrapher h3, .stacks_in_38944Calligrapher h2, .stacks_in_38944Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38944Calligrapher, .stacks_in_38944Calligrapher h1, .stacks_in_38944Calligrapher h2, .stacks_in_38944Calligrapher h3, .stacks_in_38944Calligrapher h4, .stacks_in_38944Calligrapher h5, .stacks_in_38944Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38944targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38944Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38944Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38944Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38944Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38944 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38947 {
	line-height: 2em;
}
#stacks_in_38950{}#stacks_in_38950 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38950 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38950 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38950 > .jack.width-static{width:500px}#stacks_in_38950 > .jack.width-flexible{width:100%}#stacks_in_38950 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38950 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38950 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38950 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38950 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38950 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38950 > .jack::after{border-radius:15px}#stacks_in_38950 > .jack.border-detailed-radius,#stacks_in_38950 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38950 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38950 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38950 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38950 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38950 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38950 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38950 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38950 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38950 > .jack.bg-image:not(.glass){}#stacks_in_38950 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38950 > .jack.bg-image.glass.after,#stacks_in_38950 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38950 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38950 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38950 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38950 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38950 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38950 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38950 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38950 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38950 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38950 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38950 > .jack.bg-image.glass.after,#stacks_in_38950 > .glass.jack.bg-image::after{}#stacks_in_38950 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38950 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38950 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38950 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38950 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38950 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38950 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38950 > .jack.peek-shadow::before,#stacks_in_38950 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38950 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38950 > .jack{overflow:hidden;}#stacks_in_38950 > .jack.height-static{height:500px}#stacks_in_38950 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38951 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38951 {
		display: none !important;
	}
}
#stacks_in_38952 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38952 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38952 #jwresp_col2_stacks_in_38952{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38952 #jwresp_col1_stacks_in_38952,#stacks_in_38952 #jwresp_col2_stacks_in_38952{width:100%;float:none;display:block}#stacks_in_38952 #jwresp_col1_stacks_in_38952{margin-bottom:15px}}

#stacks_in_38952 {
	padding:  20px;
}
#stacks_in_38953 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38953 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38953 .fluid-image.unlimited img{width:100% !important}#stacks_in_38953 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38953 .fluid-image.align-left img{float:left}#stacks_in_38953 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_38956 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_38956 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38957Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38957Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38957Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38957Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38957Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38957Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38957Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38957Calligrapher h6, .stacks_in_38957Calligrapher h5, .stacks_in_38957Calligrapher h4, .stacks_in_38957Calligrapher h3, .stacks_in_38957Calligrapher h2, .stacks_in_38957Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38957Calligrapher, .stacks_in_38957Calligrapher h1, .stacks_in_38957Calligrapher h2, .stacks_in_38957Calligrapher h3, .stacks_in_38957Calligrapher h4, .stacks_in_38957Calligrapher h5, .stacks_in_38957Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38957targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38957Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38957Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38957Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38957Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38957 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38958 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38961 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38965Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38965Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38965Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38965Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38965Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38965Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38965Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38965Calligrapher h6, .stacks_in_38965Calligrapher h5, .stacks_in_38965Calligrapher h4, .stacks_in_38965Calligrapher h3, .stacks_in_38965Calligrapher h2, .stacks_in_38965Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38965Calligrapher, .stacks_in_38965Calligrapher h1, .stacks_in_38965Calligrapher h2, .stacks_in_38965Calligrapher h3, .stacks_in_38965Calligrapher h4, .stacks_in_38965Calligrapher h5, .stacks_in_38965Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38965targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38965Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38965Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38965Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38965Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38965 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38968 {
	line-height: 2em;
}
#stacks_in_38971{}#stacks_in_38971 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38971 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38971 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38971 > .jack.width-static{width:500px}#stacks_in_38971 > .jack.width-flexible{width:100%}#stacks_in_38971 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38971 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38971 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38971 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38971 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38971 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38971 > .jack::after{border-radius:15px}#stacks_in_38971 > .jack.border-detailed-radius,#stacks_in_38971 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38971 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38971 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38971 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38971 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38971 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38971 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38971 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38971 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38971 > .jack.bg-image:not(.glass){}#stacks_in_38971 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38971 > .jack.bg-image.glass.after,#stacks_in_38971 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38971 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38971 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38971 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38971 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38971 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38971 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38971 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38971 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38971 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38971 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38971 > .jack.bg-image.glass.after,#stacks_in_38971 > .glass.jack.bg-image::after{}#stacks_in_38971 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38971 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38971 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38971 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38971 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38971 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38971 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38971 > .jack.peek-shadow::before,#stacks_in_38971 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38971 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38971 > .jack{overflow:hidden;}#stacks_in_38971 > .jack.height-static{height:500px}#stacks_in_38971 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_38972 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_38972 {
		display: none !important;
	}
}
#stacks_in_38973 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38973 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38973 #jwresp_col2_stacks_in_38973{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38973 #jwresp_col1_stacks_in_38973,#stacks_in_38973 #jwresp_col2_stacks_in_38973{width:100%;float:none;display:block}#stacks_in_38973 #jwresp_col1_stacks_in_38973{margin-bottom:15px}}

#stacks_in_38973 {
	padding:  20px;
}
#stacks_in_38974 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38974 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38974 .fluid-image.unlimited img{width:100% !important}#stacks_in_38974 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38974 .fluid-image.align-left img{float:left}#stacks_in_38974 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38977Calligrapher{			font-size: 110% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38977Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38977Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38977Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38977Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38977Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38977Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38977Calligrapher h6, .stacks_in_38977Calligrapher h5, .stacks_in_38977Calligrapher h4, .stacks_in_38977Calligrapher h3, .stacks_in_38977Calligrapher h2, .stacks_in_38977Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38977Calligrapher, .stacks_in_38977Calligrapher h1, .stacks_in_38977Calligrapher h2, .stacks_in_38977Calligrapher h3, .stacks_in_38977Calligrapher h4, .stacks_in_38977Calligrapher h5, .stacks_in_38977Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38977targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38977Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38977Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38977Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38977Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38977 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_38978 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38981 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38983 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38985 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38989Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38989Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38989Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38989Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38989Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38989Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38989Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38989Calligrapher h6, .stacks_in_38989Calligrapher h5, .stacks_in_38989Calligrapher h4, .stacks_in_38989Calligrapher h3, .stacks_in_38989Calligrapher h2, .stacks_in_38989Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38989Calligrapher, .stacks_in_38989Calligrapher h1, .stacks_in_38989Calligrapher h2, .stacks_in_38989Calligrapher h3, .stacks_in_38989Calligrapher h4, .stacks_in_38989Calligrapher h5, .stacks_in_38989Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38989targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38989Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38989Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38989Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38989Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38989 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38992 {
	line-height: 2em;
}
#stacks_in_38995{}#stacks_in_38995 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38995 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38995 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38995 > .jack.width-static{width:500px}#stacks_in_38995 > .jack.width-flexible{width:100%}#stacks_in_38995 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38995 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38995 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38995 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38995 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38995 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38995 > .jack::after{border-radius:15px}#stacks_in_38995 > .jack.border-detailed-radius,#stacks_in_38995 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38995 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38995 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38995 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38995 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38995 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38995 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38995 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38995 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38995 > .jack.bg-image:not(.glass){}#stacks_in_38995 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38995 > .jack.bg-image.glass.after,#stacks_in_38995 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38995 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38995 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38995 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38995 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38995 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38995 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38995 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38995 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38995 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38995 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38995 > .jack.bg-image.glass.after,#stacks_in_38995 > .glass.jack.bg-image::after{}#stacks_in_38995 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38995 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38995 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38995 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38995 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38995 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38995 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38995 > .jack.peek-shadow::before,#stacks_in_38995 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38995 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38995 > .jack{overflow:hidden;}#stacks_in_38995 > .jack.height-static{height:500px}#stacks_in_38995 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38996 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38996 {
		display: none !important;
	}
}
#stacks_in_38997 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38997 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38997 #jwresp_col2_stacks_in_38997{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38997 #jwresp_col1_stacks_in_38997,#stacks_in_38997 #jwresp_col2_stacks_in_38997{width:100%;float:none;display:block}#stacks_in_38997 #jwresp_col1_stacks_in_38997{margin-bottom:15px}}

#stacks_in_38997 {
	padding:  20px;
}
#stacks_in_38998 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38998 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38998 .fluid-image.unlimited img{width:100% !important}#stacks_in_38998 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38998 .fluid-image.align-left img{float:left}#stacks_in_38998 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_39001 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_39001 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39002Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39002Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39002Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39002Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39002Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39002Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39002Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39002Calligrapher h6, .stacks_in_39002Calligrapher h5, .stacks_in_39002Calligrapher h4, .stacks_in_39002Calligrapher h3, .stacks_in_39002Calligrapher h2, .stacks_in_39002Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39002Calligrapher, .stacks_in_39002Calligrapher h1, .stacks_in_39002Calligrapher h2, .stacks_in_39002Calligrapher h3, .stacks_in_39002Calligrapher h4, .stacks_in_39002Calligrapher h5, .stacks_in_39002Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39002targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39002Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39002Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39002Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39002Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39002 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39003 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39006 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39010Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39010Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39010Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39010Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39010Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39010Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39010Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39010Calligrapher h6, .stacks_in_39010Calligrapher h5, .stacks_in_39010Calligrapher h4, .stacks_in_39010Calligrapher h3, .stacks_in_39010Calligrapher h2, .stacks_in_39010Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39010Calligrapher, .stacks_in_39010Calligrapher h1, .stacks_in_39010Calligrapher h2, .stacks_in_39010Calligrapher h3, .stacks_in_39010Calligrapher h4, .stacks_in_39010Calligrapher h5, .stacks_in_39010Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39010targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39010Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39010Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39010Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39010Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39010 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39013 {
	line-height: 2em;
}
#stacks_in_39016{}#stacks_in_39016 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39016 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39016 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39016 > .jack.width-static{width:500px}#stacks_in_39016 > .jack.width-flexible{width:100%}#stacks_in_39016 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39016 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39016 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39016 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39016 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39016 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39016 > .jack::after{border-radius:15px}#stacks_in_39016 > .jack.border-detailed-radius,#stacks_in_39016 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39016 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39016 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39016 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39016 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39016 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39016 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39016 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39016 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39016 > .jack.bg-image:not(.glass){}#stacks_in_39016 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39016 > .jack.bg-image.glass.after,#stacks_in_39016 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39016 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39016 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39016 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39016 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39016 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39016 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39016 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39016 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39016 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39016 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39016 > .jack.bg-image.glass.after,#stacks_in_39016 > .glass.jack.bg-image::after{}#stacks_in_39016 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39016 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39016 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39016 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39016 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39016 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39016 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39016 > .jack.peek-shadow::before,#stacks_in_39016 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39016 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39016 > .jack{overflow:hidden;}#stacks_in_39016 > .jack.height-static{height:500px}#stacks_in_39016 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39017 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_39017 {
		display: none !important;
	}
}
#stacks_in_39018 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39018 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39018 #jwresp_col2_stacks_in_39018{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39018 #jwresp_col1_stacks_in_39018,#stacks_in_39018 #jwresp_col2_stacks_in_39018{width:100%;float:none;display:block}#stacks_in_39018 #jwresp_col1_stacks_in_39018{margin-bottom:15px}}

#stacks_in_39018 {
	padding:  20px;
}
#stacks_in_39019 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39019 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39019 .fluid-image.unlimited img{width:100% !important}#stacks_in_39019 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39019 .fluid-image.align-left img{float:left}#stacks_in_39019 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_39022 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_39022 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39023Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39023Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39023Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39023Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39023Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39023Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39023Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39023Calligrapher h6, .stacks_in_39023Calligrapher h5, .stacks_in_39023Calligrapher h4, .stacks_in_39023Calligrapher h3, .stacks_in_39023Calligrapher h2, .stacks_in_39023Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39023Calligrapher, .stacks_in_39023Calligrapher h1, .stacks_in_39023Calligrapher h2, .stacks_in_39023Calligrapher h3, .stacks_in_39023Calligrapher h4, .stacks_in_39023Calligrapher h5, .stacks_in_39023Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39023targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39023Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39023Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39023Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39023Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39023 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39024 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39027 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39031Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39031Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39031Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39031Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39031Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39031Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39031Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39031Calligrapher h6, .stacks_in_39031Calligrapher h5, .stacks_in_39031Calligrapher h4, .stacks_in_39031Calligrapher h3, .stacks_in_39031Calligrapher h2, .stacks_in_39031Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39031Calligrapher, .stacks_in_39031Calligrapher h1, .stacks_in_39031Calligrapher h2, .stacks_in_39031Calligrapher h3, .stacks_in_39031Calligrapher h4, .stacks_in_39031Calligrapher h5, .stacks_in_39031Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39031targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39031Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39031Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39031Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39031Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39031 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39034 {
	line-height: 2em;
}
#stacks_in_39037{}#stacks_in_39037 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39037 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39037 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39037 > .jack.width-static{width:500px}#stacks_in_39037 > .jack.width-flexible{width:100%}#stacks_in_39037 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39037 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39037 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39037 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39037 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39037 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39037 > .jack::after{border-radius:15px}#stacks_in_39037 > .jack.border-detailed-radius,#stacks_in_39037 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39037 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39037 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39037 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39037 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39037 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39037 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39037 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39037 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39037 > .jack.bg-image:not(.glass){}#stacks_in_39037 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39037 > .jack.bg-image.glass.after,#stacks_in_39037 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39037 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39037 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39037 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39037 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39037 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39037 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39037 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39037 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39037 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39037 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39037 > .jack.bg-image.glass.after,#stacks_in_39037 > .glass.jack.bg-image::after{}#stacks_in_39037 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39037 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39037 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39037 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39037 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39037 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39037 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39037 > .jack.peek-shadow::before,#stacks_in_39037 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39037 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39037 > .jack{overflow:hidden;}#stacks_in_39037 > .jack.height-static{height:500px}#stacks_in_39037 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 95.00px;
}

#spacerStackstacks_in_39038 {
	height: 95.00px;
}




























@media print {
	#spacerStackstacks_in_39038 {
		display: none !important;
	}
}
#stacks_in_39039 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39039 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39039 #jwresp_col2_stacks_in_39039{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39039 #jwresp_col1_stacks_in_39039,#stacks_in_39039 #jwresp_col2_stacks_in_39039{width:100%;float:none;display:block}#stacks_in_39039 #jwresp_col1_stacks_in_39039{margin-bottom:15px}}

#stacks_in_39039 {
	padding:  18px;
}
#stacks_in_39040 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39040 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39040 .fluid-image.unlimited img{width:100% !important}#stacks_in_39040 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39040 .fluid-image.align-left img{float:left}#stacks_in_39040 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39043Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39043Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39043Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39043Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39043Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39043Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39043Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39043Calligrapher h6, .stacks_in_39043Calligrapher h5, .stacks_in_39043Calligrapher h4, .stacks_in_39043Calligrapher h3, .stacks_in_39043Calligrapher h2, .stacks_in_39043Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39043Calligrapher, .stacks_in_39043Calligrapher h1, .stacks_in_39043Calligrapher h2, .stacks_in_39043Calligrapher h3, .stacks_in_39043Calligrapher h4, .stacks_in_39043Calligrapher h5, .stacks_in_39043Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39043targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39043Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39043Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39043Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39043Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39043 {
	padding: 0px 20px 0px 20px;
}

#stacks_in_39044 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39047 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39051Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39051Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39051Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39051Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39051Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39051Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39051Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39051Calligrapher h6, .stacks_in_39051Calligrapher h5, .stacks_in_39051Calligrapher h4, .stacks_in_39051Calligrapher h3, .stacks_in_39051Calligrapher h2, .stacks_in_39051Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39051Calligrapher, .stacks_in_39051Calligrapher h1, .stacks_in_39051Calligrapher h2, .stacks_in_39051Calligrapher h3, .stacks_in_39051Calligrapher h4, .stacks_in_39051Calligrapher h5, .stacks_in_39051Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39051targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39051Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39051Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39051Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39051Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39051 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39054 {
	line-height: 2em;
}
#stacks_in_39057{}#stacks_in_39057 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39057 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39057 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39057 > .jack.width-static{width:500px}#stacks_in_39057 > .jack.width-flexible{width:100%}#stacks_in_39057 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39057 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39057 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39057 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39057 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39057 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39057 > .jack::after{border-radius:15px}#stacks_in_39057 > .jack.border-detailed-radius,#stacks_in_39057 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39057 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39057 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39057 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39057 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39057 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39057 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39057 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39057 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39057 > .jack.bg-image:not(.glass){}#stacks_in_39057 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39057 > .jack.bg-image.glass.after,#stacks_in_39057 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39057 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39057 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39057 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39057 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39057 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39057 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39057 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39057 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39057 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39057 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39057 > .jack.bg-image.glass.after,#stacks_in_39057 > .glass.jack.bg-image::after{}#stacks_in_39057 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39057 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39057 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39057 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39057 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39057 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39057 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39057 > .jack.peek-shadow::before,#stacks_in_39057 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39057 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39057 > .jack{overflow:hidden;}#stacks_in_39057 > .jack.height-static{height:500px}#stacks_in_39057 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 35.00px;
}

#spacerStackstacks_in_39058 {
	height: 35.00px;
}




























@media print {
	#spacerStackstacks_in_39058 {
		display: none !important;
	}
}
#stacks_in_39059 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39059 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39059 #jwresp_col2_stacks_in_39059{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39059 #jwresp_col1_stacks_in_39059,#stacks_in_39059 #jwresp_col2_stacks_in_39059{width:100%;float:none;display:block}#stacks_in_39059 #jwresp_col1_stacks_in_39059{margin-bottom:15px}}

#stacks_in_39059 {
	padding:  20px;
}
#stacks_in_39060 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39060 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39060 .fluid-image.unlimited img{width:100% !important}#stacks_in_39060 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39060 .fluid-image.align-left img{float:left}#stacks_in_39060 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_39063 {
	height: 120.00px;
}




























@media print {
	#spacerStackstacks_in_39063 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39064Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39064Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39064Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39064Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39064Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39064Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39064Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39064Calligrapher h6, .stacks_in_39064Calligrapher h5, .stacks_in_39064Calligrapher h4, .stacks_in_39064Calligrapher h3, .stacks_in_39064Calligrapher h2, .stacks_in_39064Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39064Calligrapher, .stacks_in_39064Calligrapher h1, .stacks_in_39064Calligrapher h2, .stacks_in_39064Calligrapher h3, .stacks_in_39064Calligrapher h4, .stacks_in_39064Calligrapher h5, .stacks_in_39064Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39064targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39064Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39064Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39064Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39064Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39064 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39065 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39068 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39072Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39072Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39072Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39072Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39072Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39072Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39072Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39072Calligrapher h6, .stacks_in_39072Calligrapher h5, .stacks_in_39072Calligrapher h4, .stacks_in_39072Calligrapher h3, .stacks_in_39072Calligrapher h2, .stacks_in_39072Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39072Calligrapher, .stacks_in_39072Calligrapher h1, .stacks_in_39072Calligrapher h2, .stacks_in_39072Calligrapher h3, .stacks_in_39072Calligrapher h4, .stacks_in_39072Calligrapher h5, .stacks_in_39072Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39072targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39072Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39072Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39072Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39072Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39073 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39075 {
	line-height: 2em;
}
#stacks_in_39078{}#stacks_in_39078 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39078 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39078 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39078 > .jack.width-static{width:500px}#stacks_in_39078 > .jack.width-flexible{width:100%}#stacks_in_39078 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39078 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39078 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39078 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39078 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39078 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39078 > .jack::after{border-radius:15px}#stacks_in_39078 > .jack.border-detailed-radius,#stacks_in_39078 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39078 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39078 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39078 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39078 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39078 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39078 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39078 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39078 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39078 > .jack.bg-image:not(.glass){}#stacks_in_39078 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39078 > .jack.bg-image.glass.after,#stacks_in_39078 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39078 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39078 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39078 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39078 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39078 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39078 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39078 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39078 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39078 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39078 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39078 > .jack.bg-image.glass.after,#stacks_in_39078 > .glass.jack.bg-image::after{}#stacks_in_39078 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39078 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39078 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39078 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39078 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39078 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39078 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39078 > .jack.peek-shadow::before,#stacks_in_39078 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39078 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39078 > .jack{overflow:hidden;}#stacks_in_39078 > .jack.height-static{height:500px}#stacks_in_39078 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_39079 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_39079 {
		display: none !important;
	}
}
#stacks_in_39080 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39080 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39080 #jwresp_col2_stacks_in_39080{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39080 #jwresp_col1_stacks_in_39080,#stacks_in_39080 #jwresp_col2_stacks_in_39080{width:100%;float:none;display:block}#stacks_in_39080 #jwresp_col1_stacks_in_39080{margin-bottom:15px}}

#stacks_in_39080 {
	padding:  20px;
}
#stacks_in_39081 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39081 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39081 .fluid-image.unlimited img{width:100% !important}#stacks_in_39081 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39081 .fluid-image.align-left img{float:left}#stacks_in_39081 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_39084 {
	height: 70.00px;
}




























@media print {
	#spacerStackstacks_in_39084 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39085Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39085Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39085Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39085Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39085Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39085Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39085Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39085Calligrapher h6, .stacks_in_39085Calligrapher h5, .stacks_in_39085Calligrapher h4, .stacks_in_39085Calligrapher h3, .stacks_in_39085Calligrapher h2, .stacks_in_39085Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39085Calligrapher, .stacks_in_39085Calligrapher h1, .stacks_in_39085Calligrapher h2, .stacks_in_39085Calligrapher h3, .stacks_in_39085Calligrapher h4, .stacks_in_39085Calligrapher h5, .stacks_in_39085Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39085targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39085Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39085Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39085Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39085Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39085 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39086 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39089 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39093Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39093Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39093Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39093Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39093Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39093Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39093Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39093Calligrapher h6, .stacks_in_39093Calligrapher h5, .stacks_in_39093Calligrapher h4, .stacks_in_39093Calligrapher h3, .stacks_in_39093Calligrapher h2, .stacks_in_39093Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39093Calligrapher, .stacks_in_39093Calligrapher h1, .stacks_in_39093Calligrapher h2, .stacks_in_39093Calligrapher h3, .stacks_in_39093Calligrapher h4, .stacks_in_39093Calligrapher h5, .stacks_in_39093Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39093targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39093Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39093Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39093Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39093Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39093 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39094 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39096 {
	line-height: 2em;
}
#stacks_in_39099{}#stacks_in_39099 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39099 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39099 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39099 > .jack.width-static{width:500px}#stacks_in_39099 > .jack.width-flexible{width:100%}#stacks_in_39099 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39099 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39099 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39099 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39099 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39099 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39099 > .jack::after{border-radius:15px}#stacks_in_39099 > .jack.border-detailed-radius,#stacks_in_39099 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39099 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39099 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39099 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39099 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39099 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39099 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39099 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39099 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39099 > .jack.bg-image:not(.glass){}#stacks_in_39099 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39099 > .jack.bg-image.glass.after,#stacks_in_39099 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39099 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39099 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39099 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39099 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39099 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39099 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39099 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39099 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39099 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39099 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39099 > .jack.bg-image.glass.after,#stacks_in_39099 > .glass.jack.bg-image::after{}#stacks_in_39099 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39099 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39099 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39099 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39099 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39099 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39099 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39099 > .jack.peek-shadow::before,#stacks_in_39099 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39099 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39099 > .jack{overflow:hidden;}#stacks_in_39099 > .jack.height-static{height:500px}#stacks_in_39099 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_39100 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_39100 {
		display: none !important;
	}
}
#stacks_in_39101 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39101 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39101 #jwresp_col2_stacks_in_39101{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39101 #jwresp_col1_stacks_in_39101,#stacks_in_39101 #jwresp_col2_stacks_in_39101{width:100%;float:none;display:block}#stacks_in_39101 #jwresp_col1_stacks_in_39101{margin-bottom:15px}}

#stacks_in_39101 {
	padding:  20px;
}
#stacks_in_39102 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39102 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39102 .fluid-image.unlimited img{width:100% !important}#stacks_in_39102 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39102 .fluid-image.align-left img{float:left}#stacks_in_39102 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_39105 {
	height: 70.00px;
}




























@media print {
	#spacerStackstacks_in_39105 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39106Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39106Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39106Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39106Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39106Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39106Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39106Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39106Calligrapher h6, .stacks_in_39106Calligrapher h5, .stacks_in_39106Calligrapher h4, .stacks_in_39106Calligrapher h3, .stacks_in_39106Calligrapher h2, .stacks_in_39106Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39106Calligrapher, .stacks_in_39106Calligrapher h1, .stacks_in_39106Calligrapher h2, .stacks_in_39106Calligrapher h3, .stacks_in_39106Calligrapher h4, .stacks_in_39106Calligrapher h5, .stacks_in_39106Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39106targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39106Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39106Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39106Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39106Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39106 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39107 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39110 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39114Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39114Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39114Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39114Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39114Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39114Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39114Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39114Calligrapher h6, .stacks_in_39114Calligrapher h5, .stacks_in_39114Calligrapher h4, .stacks_in_39114Calligrapher h3, .stacks_in_39114Calligrapher h2, .stacks_in_39114Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39114Calligrapher, .stacks_in_39114Calligrapher h1, .stacks_in_39114Calligrapher h2, .stacks_in_39114Calligrapher h3, .stacks_in_39114Calligrapher h4, .stacks_in_39114Calligrapher h5, .stacks_in_39114Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39114targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39114Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39114Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39114Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39114Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39114 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39115 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39117 {
	line-height: 2em;
}
#stacks_in_39120{}#stacks_in_39120 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39120 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39120 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39120 > .jack.width-static{width:500px}#stacks_in_39120 > .jack.width-flexible{width:100%}#stacks_in_39120 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39120 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39120 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39120 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39120 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39120 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39120 > .jack::after{border-radius:15px}#stacks_in_39120 > .jack.border-detailed-radius,#stacks_in_39120 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39120 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39120 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39120 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39120 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39120 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39120 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39120 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39120 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39120 > .jack.bg-image:not(.glass){}#stacks_in_39120 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39120 > .jack.bg-image.glass.after,#stacks_in_39120 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39120 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39120 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39120 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39120 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39120 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39120 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39120 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39120 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39120 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39120 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39120 > .jack.bg-image.glass.after,#stacks_in_39120 > .glass.jack.bg-image::after{}#stacks_in_39120 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39120 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39120 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39120 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39120 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39120 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39120 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39120 > .jack.peek-shadow::before,#stacks_in_39120 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39120 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39120 > .jack{overflow:hidden;}#stacks_in_39120 > .jack.height-static{height:500px}#stacks_in_39120 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_39121 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_39121 {
		display: none !important;
	}
}
#stacks_in_39122 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39122 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39122 #jwresp_col2_stacks_in_39122{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39122 #jwresp_col1_stacks_in_39122,#stacks_in_39122 #jwresp_col2_stacks_in_39122{width:100%;float:none;display:block}#stacks_in_39122 #jwresp_col1_stacks_in_39122{margin-bottom:15px}}

#stacks_in_39122 {
	padding:  20px;
}
#stacks_in_39123 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39123 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39123 .fluid-image.unlimited img{width:100% !important}#stacks_in_39123 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39123 .fluid-image.align-left img{float:left}#stacks_in_39123 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_39126 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_39126 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39127Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39127Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39127Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39127Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39127Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39127Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39127Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39127Calligrapher h6, .stacks_in_39127Calligrapher h5, .stacks_in_39127Calligrapher h4, .stacks_in_39127Calligrapher h3, .stacks_in_39127Calligrapher h2, .stacks_in_39127Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39127Calligrapher, .stacks_in_39127Calligrapher h1, .stacks_in_39127Calligrapher h2, .stacks_in_39127Calligrapher h3, .stacks_in_39127Calligrapher h4, .stacks_in_39127Calligrapher h5, .stacks_in_39127Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39127targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39127Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39127Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39127Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39127Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39127 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39128 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39131 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39133Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39133Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39133Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39133Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39133Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39133Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39133Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39133Calligrapher h6, .stacks_in_39133Calligrapher h5, .stacks_in_39133Calligrapher h4, .stacks_in_39133Calligrapher h3, .stacks_in_39133Calligrapher h2, .stacks_in_39133Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39133Calligrapher, .stacks_in_39133Calligrapher h1, .stacks_in_39133Calligrapher h2, .stacks_in_39133Calligrapher h3, .stacks_in_39133Calligrapher h4, .stacks_in_39133Calligrapher h5, .stacks_in_39133Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39133targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39133Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39133Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39133Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39133Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39133 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39134 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39136 {
	line-height: 2em;
}
#stacks_in_39139{}#stacks_in_39139 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39139 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39139 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39139 > .jack.width-static{width:500px}#stacks_in_39139 > .jack.width-flexible{width:100%}#stacks_in_39139 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39139 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39139 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39139 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39139 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39139 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39139 > .jack::after{border-radius:15px}#stacks_in_39139 > .jack.border-detailed-radius,#stacks_in_39139 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39139 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39139 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39139 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39139 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39139 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39139 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39139 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39139 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39139 > .jack.bg-image:not(.glass){}#stacks_in_39139 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39139 > .jack.bg-image.glass.after,#stacks_in_39139 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39139 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39139 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39139 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39139 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39139 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39139 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39139 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39139 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39139 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39139 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39139 > .jack.bg-image.glass.after,#stacks_in_39139 > .glass.jack.bg-image::after{}#stacks_in_39139 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39139 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39139 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39139 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39139 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39139 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39139 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39139 > .jack.peek-shadow::before,#stacks_in_39139 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39139 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39139 > .jack{overflow:hidden;}#stacks_in_39139 > .jack.height-static{height:500px}#stacks_in_39139 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39140 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_39140 {
		display: none !important;
	}
}
#stacks_in_39141 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39141 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39141 #jwresp_col2_stacks_in_39141{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39141 #jwresp_col1_stacks_in_39141,#stacks_in_39141 #jwresp_col2_stacks_in_39141{width:100%;float:none;display:block}#stacks_in_39141 #jwresp_col1_stacks_in_39141{margin-bottom:15px}}

#stacks_in_39141 {
	padding:  20px;
}
#stacks_in_39142 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39142 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39142 .fluid-image.unlimited img{width:100% !important}#stacks_in_39142 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39142 .fluid-image.align-left img{float:left}#stacks_in_39142 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_39145 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_39145 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39146Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39146Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39146Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39146Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39146Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39146Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39146Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39146Calligrapher h6, .stacks_in_39146Calligrapher h5, .stacks_in_39146Calligrapher h4, .stacks_in_39146Calligrapher h3, .stacks_in_39146Calligrapher h2, .stacks_in_39146Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39146Calligrapher, .stacks_in_39146Calligrapher h1, .stacks_in_39146Calligrapher h2, .stacks_in_39146Calligrapher h3, .stacks_in_39146Calligrapher h4, .stacks_in_39146Calligrapher h5, .stacks_in_39146Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39146targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39146Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39146Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39146Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39146Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39146 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39147 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39150 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39152 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39154Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39154Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39154Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39154Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39154Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39154Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39154Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39154Calligrapher h6, .stacks_in_39154Calligrapher h5, .stacks_in_39154Calligrapher h4, .stacks_in_39154Calligrapher h3, .stacks_in_39154Calligrapher h2, .stacks_in_39154Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39154Calligrapher, .stacks_in_39154Calligrapher h1, .stacks_in_39154Calligrapher h2, .stacks_in_39154Calligrapher h3, .stacks_in_39154Calligrapher h4, .stacks_in_39154Calligrapher h5, .stacks_in_39154Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39154targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39154Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39154Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39154Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39154Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39155 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39157 {
	line-height: 2em;
}
#stacks_in_39160{}#stacks_in_39160 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39160 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39160 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39160 > .jack.width-static{width:500px}#stacks_in_39160 > .jack.width-flexible{width:100%}#stacks_in_39160 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39160 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39160 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39160 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39160 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39160 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39160 > .jack::after{border-radius:15px}#stacks_in_39160 > .jack.border-detailed-radius,#stacks_in_39160 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39160 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39160 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39160 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39160 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39160 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39160 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39160 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39160 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39160 > .jack.bg-image:not(.glass){}#stacks_in_39160 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39160 > .jack.bg-image.glass.after,#stacks_in_39160 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39160 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39160 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39160 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39160 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39160 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39160 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39160 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39160 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39160 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39160 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39160 > .jack.bg-image.glass.after,#stacks_in_39160 > .glass.jack.bg-image::after{}#stacks_in_39160 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39160 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39160 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39160 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39160 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39160 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39160 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39160 > .jack.peek-shadow::before,#stacks_in_39160 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39160 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39160 > .jack{overflow:hidden;}#stacks_in_39160 > .jack.height-static{height:500px}#stacks_in_39160 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_39161 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_39161 {
		display: none !important;
	}
}
#stacks_in_39162 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39162 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39162 #jwresp_col2_stacks_in_39162{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39162 #jwresp_col1_stacks_in_39162,#stacks_in_39162 #jwresp_col2_stacks_in_39162{width:100%;float:none;display:block}#stacks_in_39162 #jwresp_col1_stacks_in_39162{margin-bottom:15px}}

#stacks_in_39162 {
	padding:  20px;
}
#stacks_in_39163 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39163 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39163 .fluid-image.unlimited img{width:100% !important}#stacks_in_39163 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39163 .fluid-image.align-left img{float:left}#stacks_in_39163 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_39166 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_39166 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39167Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39167Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39167Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39167Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39167Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39167Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39167Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39167Calligrapher h6, .stacks_in_39167Calligrapher h5, .stacks_in_39167Calligrapher h4, .stacks_in_39167Calligrapher h3, .stacks_in_39167Calligrapher h2, .stacks_in_39167Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39167Calligrapher, .stacks_in_39167Calligrapher h1, .stacks_in_39167Calligrapher h2, .stacks_in_39167Calligrapher h3, .stacks_in_39167Calligrapher h4, .stacks_in_39167Calligrapher h5, .stacks_in_39167Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39167targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39167Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39167Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39167Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39167Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39167 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39168 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39171 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39173 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39175Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39175Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39175Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39175Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39175Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39175Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39175Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39175Calligrapher h6, .stacks_in_39175Calligrapher h5, .stacks_in_39175Calligrapher h4, .stacks_in_39175Calligrapher h3, .stacks_in_39175Calligrapher h2, .stacks_in_39175Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39175Calligrapher, .stacks_in_39175Calligrapher h1, .stacks_in_39175Calligrapher h2, .stacks_in_39175Calligrapher h3, .stacks_in_39175Calligrapher h4, .stacks_in_39175Calligrapher h5, .stacks_in_39175Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39175targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39175Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39175Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39175Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39175Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39175 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39176 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39178 {
	line-height: 2em;
}
#stacks_in_39181{}#stacks_in_39181 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39181 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39181 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39181 > .jack.width-static{width:500px}#stacks_in_39181 > .jack.width-flexible{width:100%}#stacks_in_39181 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39181 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39181 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39181 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39181 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39181 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39181 > .jack::after{border-radius:15px}#stacks_in_39181 > .jack.border-detailed-radius,#stacks_in_39181 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39181 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39181 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39181 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39181 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39181 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39181 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39181 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39181 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39181 > .jack.bg-image:not(.glass){}#stacks_in_39181 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39181 > .jack.bg-image.glass.after,#stacks_in_39181 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39181 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39181 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39181 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39181 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39181 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39181 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39181 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39181 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39181 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39181 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39181 > .jack.bg-image.glass.after,#stacks_in_39181 > .glass.jack.bg-image::after{}#stacks_in_39181 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39181 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39181 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39181 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39181 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39181 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39181 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39181 > .jack.peek-shadow::before,#stacks_in_39181 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39181 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39181 > .jack{overflow:hidden;}#stacks_in_39181 > .jack.height-static{height:500px}#stacks_in_39181 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_39182 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_39182 {
		display: none !important;
	}
}
#stacks_in_39183 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39183 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39183 #jwresp_col2_stacks_in_39183{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39183 #jwresp_col1_stacks_in_39183,#stacks_in_39183 #jwresp_col2_stacks_in_39183{width:100%;float:none;display:block}#stacks_in_39183 #jwresp_col1_stacks_in_39183{margin-bottom:15px}}

#stacks_in_39183 {
	padding:  20px;
}
#stacks_in_39184 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39184 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39184 .fluid-image.unlimited img{width:100% !important}#stacks_in_39184 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39184 .fluid-image.align-left img{float:left}#stacks_in_39184 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39187Calligrapher{			font-size: 110% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39187Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39187Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39187Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39187Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39187Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39187Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39187Calligrapher h6, .stacks_in_39187Calligrapher h5, .stacks_in_39187Calligrapher h4, .stacks_in_39187Calligrapher h3, .stacks_in_39187Calligrapher h2, .stacks_in_39187Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39187Calligrapher, .stacks_in_39187Calligrapher h1, .stacks_in_39187Calligrapher h2, .stacks_in_39187Calligrapher h3, .stacks_in_39187Calligrapher h4, .stacks_in_39187Calligrapher h5, .stacks_in_39187Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39187targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39187Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39187Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39187Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39187Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39187 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39188 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39191 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39193 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39195Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39195Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39195Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39195Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39195Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39195Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39195Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39195Calligrapher h6, .stacks_in_39195Calligrapher h5, .stacks_in_39195Calligrapher h4, .stacks_in_39195Calligrapher h3, .stacks_in_39195Calligrapher h2, .stacks_in_39195Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39195Calligrapher, .stacks_in_39195Calligrapher h1, .stacks_in_39195Calligrapher h2, .stacks_in_39195Calligrapher h3, .stacks_in_39195Calligrapher h4, .stacks_in_39195Calligrapher h5, .stacks_in_39195Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39195targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39195Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39195Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39195Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39195Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39195 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39196 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39198 {
	line-height: 2em;
}
#stacks_in_39201{}#stacks_in_39201 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39201 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39201 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39201 > .jack.width-static{width:500px}#stacks_in_39201 > .jack.width-flexible{width:100%}#stacks_in_39201 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39201 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39201 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39201 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39201 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39201 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39201 > .jack::after{border-radius:15px}#stacks_in_39201 > .jack.border-detailed-radius,#stacks_in_39201 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39201 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39201 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39201 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39201 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39201 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39201 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39201 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39201 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39201 > .jack.bg-image:not(.glass){}#stacks_in_39201 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39201 > .jack.bg-image.glass.after,#stacks_in_39201 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39201 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39201 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39201 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39201 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39201 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39201 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39201 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39201 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39201 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39201 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39201 > .jack.bg-image.glass.after,#stacks_in_39201 > .glass.jack.bg-image::after{}#stacks_in_39201 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39201 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39201 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39201 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39201 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39201 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39201 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39201 > .jack.peek-shadow::before,#stacks_in_39201 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39201 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39201 > .jack{overflow:hidden;}#stacks_in_39201 > .jack.height-static{height:500px}#stacks_in_39201 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_39202 {
	height: 60.00px;
}




























@media print {
	#spacerStackstacks_in_39202 {
		display: none !important;
	}
}
#stacks_in_39203 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39203 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39203 #jwresp_col2_stacks_in_39203{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39203 #jwresp_col1_stacks_in_39203,#stacks_in_39203 #jwresp_col2_stacks_in_39203{width:100%;float:none;display:block}#stacks_in_39203 #jwresp_col1_stacks_in_39203{margin-bottom:15px}}

#stacks_in_39203 {
	padding:  20px;
}
#stacks_in_39204 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39204 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39204 .fluid-image.unlimited img{width:100% !important}#stacks_in_39204 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39204 .fluid-image.align-left img{float:left}#stacks_in_39204 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_39207 {
	height: 60.00px;
}




























@media print {
	#spacerStackstacks_in_39207 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39208Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39208Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39208Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39208Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39208Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39208Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39208Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39208Calligrapher h6, .stacks_in_39208Calligrapher h5, .stacks_in_39208Calligrapher h4, .stacks_in_39208Calligrapher h3, .stacks_in_39208Calligrapher h2, .stacks_in_39208Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39208Calligrapher, .stacks_in_39208Calligrapher h1, .stacks_in_39208Calligrapher h2, .stacks_in_39208Calligrapher h3, .stacks_in_39208Calligrapher h4, .stacks_in_39208Calligrapher h5, .stacks_in_39208Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39208targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39208Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39208Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39208Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39208Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39208 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39209 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39212 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39214Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39214Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39214Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39214Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39214Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39214Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39214Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39214Calligrapher h6, .stacks_in_39214Calligrapher h5, .stacks_in_39214Calligrapher h4, .stacks_in_39214Calligrapher h3, .stacks_in_39214Calligrapher h2, .stacks_in_39214Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39214Calligrapher, .stacks_in_39214Calligrapher h1, .stacks_in_39214Calligrapher h2, .stacks_in_39214Calligrapher h3, .stacks_in_39214Calligrapher h4, .stacks_in_39214Calligrapher h5, .stacks_in_39214Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39214targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39214Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39214Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39214Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39214Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39214 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39215 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39217 {
	line-height: 2em;
}
#stacks_in_39220{}#stacks_in_39220 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39220 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39220 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39220 > .jack.width-static{width:500px}#stacks_in_39220 > .jack.width-flexible{width:100%}#stacks_in_39220 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39220 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39220 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39220 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39220 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39220 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39220 > .jack::after{border-radius:15px}#stacks_in_39220 > .jack.border-detailed-radius,#stacks_in_39220 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39220 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39220 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39220 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39220 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39220 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39220 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39220 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39220 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39220 > .jack.bg-image:not(.glass){}#stacks_in_39220 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39220 > .jack.bg-image.glass.after,#stacks_in_39220 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39220 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39220 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39220 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39220 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39220 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39220 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39220 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39220 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39220 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39220 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39220 > .jack.bg-image.glass.after,#stacks_in_39220 > .glass.jack.bg-image::after{}#stacks_in_39220 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39220 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39220 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39220 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39220 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39220 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39220 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39220 > .jack.peek-shadow::before,#stacks_in_39220 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39220 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39220 > .jack{overflow:hidden;}#stacks_in_39220 > .jack.height-static{height:500px}#stacks_in_39220 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39221 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_39221 {
		display: none !important;
	}
}
#stacks_in_39222 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39222 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39222 #jwresp_col2_stacks_in_39222{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39222 #jwresp_col1_stacks_in_39222,#stacks_in_39222 #jwresp_col2_stacks_in_39222{width:100%;float:none;display:block}#stacks_in_39222 #jwresp_col1_stacks_in_39222{margin-bottom:15px}}

#stacks_in_39222 {
	padding:  20px;
}
#stacks_in_39223 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39223 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39223 .fluid-image.unlimited img{width:100% !important}#stacks_in_39223 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39223 .fluid-image.align-left img{float:left}#stacks_in_39223 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39226Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39226Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39226Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39226Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39226Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39226Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39226Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39226Calligrapher h6, .stacks_in_39226Calligrapher h5, .stacks_in_39226Calligrapher h4, .stacks_in_39226Calligrapher h3, .stacks_in_39226Calligrapher h2, .stacks_in_39226Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39226Calligrapher, .stacks_in_39226Calligrapher h1, .stacks_in_39226Calligrapher h2, .stacks_in_39226Calligrapher h3, .stacks_in_39226Calligrapher h4, .stacks_in_39226Calligrapher h5, .stacks_in_39226Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39226targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39226Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39226Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39226Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39226Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39226 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39227 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39230 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39232 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39234Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39234Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39234Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39234Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39234Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39234Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39234Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39234Calligrapher h6, .stacks_in_39234Calligrapher h5, .stacks_in_39234Calligrapher h4, .stacks_in_39234Calligrapher h3, .stacks_in_39234Calligrapher h2, .stacks_in_39234Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39234Calligrapher, .stacks_in_39234Calligrapher h1, .stacks_in_39234Calligrapher h2, .stacks_in_39234Calligrapher h3, .stacks_in_39234Calligrapher h4, .stacks_in_39234Calligrapher h5, .stacks_in_39234Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39234targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39234Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39234Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39234Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39234Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39234 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39237 {
	line-height: 2em;
}
#stacks_in_39240{}#stacks_in_39240 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39240 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39240 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39240 > .jack.width-static{width:500px}#stacks_in_39240 > .jack.width-flexible{width:100%}#stacks_in_39240 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39240 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39240 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39240 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39240 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39240 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39240 > .jack::after{border-radius:15px}#stacks_in_39240 > .jack.border-detailed-radius,#stacks_in_39240 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39240 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39240 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39240 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39240 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39240 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39240 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39240 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39240 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39240 > .jack.bg-image:not(.glass){}#stacks_in_39240 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39240 > .jack.bg-image.glass.after,#stacks_in_39240 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39240 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39240 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39240 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39240 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39240 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39240 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39240 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39240 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39240 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39240 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39240 > .jack.bg-image.glass.after,#stacks_in_39240 > .glass.jack.bg-image::after{}#stacks_in_39240 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39240 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39240 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39240 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39240 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39240 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39240 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39240 > .jack.peek-shadow::before,#stacks_in_39240 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39240 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39240 > .jack{overflow:hidden;}#stacks_in_39240 > .jack.height-static{height:500px}#stacks_in_39240 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39241 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_39241 {
		display: none !important;
	}
}
#stacks_in_39242 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39242 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39242 #jwresp_col2_stacks_in_39242{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39242 #jwresp_col1_stacks_in_39242,#stacks_in_39242 #jwresp_col2_stacks_in_39242{width:100%;float:none;display:block}#stacks_in_39242 #jwresp_col1_stacks_in_39242{margin-bottom:15px}}

#stacks_in_39242 {
	padding:  20px;
}
#stacks_in_39243 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39243 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39243 .fluid-image.unlimited img{width:100% !important}#stacks_in_39243 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39243 .fluid-image.align-left img{float:left}#stacks_in_39243 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_39246 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_39246 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39247Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39247Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39247Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39247Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39247Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39247Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39247Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39247Calligrapher h6, .stacks_in_39247Calligrapher h5, .stacks_in_39247Calligrapher h4, .stacks_in_39247Calligrapher h3, .stacks_in_39247Calligrapher h2, .stacks_in_39247Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39247Calligrapher, .stacks_in_39247Calligrapher h1, .stacks_in_39247Calligrapher h2, .stacks_in_39247Calligrapher h3, .stacks_in_39247Calligrapher h4, .stacks_in_39247Calligrapher h5, .stacks_in_39247Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39247targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39247Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39247Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39247Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39247Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39247 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39248 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39251 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39253Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39253Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39253Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39253Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39253Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39253Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39253Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39253Calligrapher h6, .stacks_in_39253Calligrapher h5, .stacks_in_39253Calligrapher h4, .stacks_in_39253Calligrapher h3, .stacks_in_39253Calligrapher h2, .stacks_in_39253Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39253Calligrapher, .stacks_in_39253Calligrapher h1, .stacks_in_39253Calligrapher h2, .stacks_in_39253Calligrapher h3, .stacks_in_39253Calligrapher h4, .stacks_in_39253Calligrapher h5, .stacks_in_39253Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39253targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39253Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39253Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39253Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39253Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39253 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39254 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39256 {
	line-height: 2em;
}
#stacks_in_39259{}#stacks_in_39259 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39259 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39259 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39259 > .jack.width-static{width:500px}#stacks_in_39259 > .jack.width-flexible{width:100%}#stacks_in_39259 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39259 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39259 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39259 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39259 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39259 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39259 > .jack::after{border-radius:15px}#stacks_in_39259 > .jack.border-detailed-radius,#stacks_in_39259 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39259 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39259 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39259 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39259 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39259 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39259 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39259 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39259 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39259 > .jack.bg-image:not(.glass){}#stacks_in_39259 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39259 > .jack.bg-image.glass.after,#stacks_in_39259 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39259 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39259 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39259 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39259 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39259 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39259 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39259 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39259 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39259 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39259 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39259 > .jack.bg-image.glass.after,#stacks_in_39259 > .glass.jack.bg-image::after{}#stacks_in_39259 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39259 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39259 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39259 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39259 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39259 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39259 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39259 > .jack.peek-shadow::before,#stacks_in_39259 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39259 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39259 > .jack{overflow:hidden;}#stacks_in_39259 > .jack.height-static{height:500px}#stacks_in_39259 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_39260 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_39260 {
		display: none !important;
	}
}
#stacks_in_39261 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39261 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39261 #jwresp_col2_stacks_in_39261{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39261 #jwresp_col1_stacks_in_39261,#stacks_in_39261 #jwresp_col2_stacks_in_39261{width:100%;float:none;display:block}#stacks_in_39261 #jwresp_col1_stacks_in_39261{margin-bottom:15px}}

#stacks_in_39261 {
	padding:  20px;
}
#stacks_in_39262 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39262 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39262 .fluid-image.unlimited img{width:100% !important}#stacks_in_39262 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39262 .fluid-image.align-left img{float:left}#stacks_in_39262 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_39265 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_39265 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39266Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39266Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39266Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39266Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39266Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39266Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39266Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39266Calligrapher h6, .stacks_in_39266Calligrapher h5, .stacks_in_39266Calligrapher h4, .stacks_in_39266Calligrapher h3, .stacks_in_39266Calligrapher h2, .stacks_in_39266Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39266Calligrapher, .stacks_in_39266Calligrapher h1, .stacks_in_39266Calligrapher h2, .stacks_in_39266Calligrapher h3, .stacks_in_39266Calligrapher h4, .stacks_in_39266Calligrapher h5, .stacks_in_39266Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39266targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39266Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39266Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39266Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39266Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39266 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39267 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39270 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39272 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39274Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39274Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39274Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39274Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39274Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39274Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39274Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39274Calligrapher h6, .stacks_in_39274Calligrapher h5, .stacks_in_39274Calligrapher h4, .stacks_in_39274Calligrapher h3, .stacks_in_39274Calligrapher h2, .stacks_in_39274Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39274Calligrapher, .stacks_in_39274Calligrapher h1, .stacks_in_39274Calligrapher h2, .stacks_in_39274Calligrapher h3, .stacks_in_39274Calligrapher h4, .stacks_in_39274Calligrapher h5, .stacks_in_39274Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39274targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39274Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39274Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39274Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39274Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39274 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39275 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39277 {
	line-height: 2em;
}
#stacks_in_39280{}#stacks_in_39280 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39280 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39280 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39280 > .jack.width-static{width:500px}#stacks_in_39280 > .jack.width-flexible{width:100%}#stacks_in_39280 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39280 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39280 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39280 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39280 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39280 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39280 > .jack::after{border-radius:15px}#stacks_in_39280 > .jack.border-detailed-radius,#stacks_in_39280 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39280 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39280 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39280 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39280 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39280 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39280 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39280 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39280 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39280 > .jack.bg-image:not(.glass){}#stacks_in_39280 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39280 > .jack.bg-image.glass.after,#stacks_in_39280 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39280 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39280 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39280 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39280 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39280 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39280 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39280 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39280 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39280 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39280 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39280 > .jack.bg-image.glass.after,#stacks_in_39280 > .glass.jack.bg-image::after{}#stacks_in_39280 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39280 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39280 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39280 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39280 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39280 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39280 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39280 > .jack.peek-shadow::before,#stacks_in_39280 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39280 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39280 > .jack{overflow:hidden;}#stacks_in_39280 > .jack.height-static{height:500px}#stacks_in_39280 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_39281 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_39281 {
		display: none !important;
	}
}
#stacks_in_39282 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39282 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39282 #jwresp_col2_stacks_in_39282{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39282 #jwresp_col1_stacks_in_39282,#stacks_in_39282 #jwresp_col2_stacks_in_39282{width:100%;float:none;display:block}#stacks_in_39282 #jwresp_col1_stacks_in_39282{margin-bottom:15px}}

#stacks_in_39282 {
	padding:  20px;
}
#stacks_in_39283 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39283 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39283 .fluid-image.unlimited img{width:100% !important}#stacks_in_39283 .fluid-image.define_max img{width:100% !important;max-width:250px !important}#stacks_in_39283 .fluid-image.align-left img{float:left}#stacks_in_39283 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_39286 {
	height: 120.00px;
}




























@media print {
	#spacerStackstacks_in_39286 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39287Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39287Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39287Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39287Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39287Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39287Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39287Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39287Calligrapher h6, .stacks_in_39287Calligrapher h5, .stacks_in_39287Calligrapher h4, .stacks_in_39287Calligrapher h3, .stacks_in_39287Calligrapher h2, .stacks_in_39287Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39287Calligrapher, .stacks_in_39287Calligrapher h1, .stacks_in_39287Calligrapher h2, .stacks_in_39287Calligrapher h3, .stacks_in_39287Calligrapher h4, .stacks_in_39287Calligrapher h5, .stacks_in_39287Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39287targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39287Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39287Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39287Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39287Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39287 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39288 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39291 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39293 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39295Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39295Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39295Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39295Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39295Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39295Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39295Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39295Calligrapher h6, .stacks_in_39295Calligrapher h5, .stacks_in_39295Calligrapher h4, .stacks_in_39295Calligrapher h3, .stacks_in_39295Calligrapher h2, .stacks_in_39295Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39295Calligrapher, .stacks_in_39295Calligrapher h1, .stacks_in_39295Calligrapher h2, .stacks_in_39295Calligrapher h3, .stacks_in_39295Calligrapher h4, .stacks_in_39295Calligrapher h5, .stacks_in_39295Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39295targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39295Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39295Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39295Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39295Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39295 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39296 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39298 {
	line-height: 2em;
}
#stacks_in_39301{}#stacks_in_39301 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39301 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39301 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39301 > .jack.width-static{width:500px}#stacks_in_39301 > .jack.width-flexible{width:100%}#stacks_in_39301 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39301 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39301 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39301 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39301 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39301 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39301 > .jack::after{border-radius:15px}#stacks_in_39301 > .jack.border-detailed-radius,#stacks_in_39301 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39301 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39301 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39301 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39301 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39301 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39301 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39301 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39301 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39301 > .jack.bg-image:not(.glass){}#stacks_in_39301 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39301 > .jack.bg-image.glass.after,#stacks_in_39301 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39301 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39301 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39301 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39301 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39301 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39301 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39301 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39301 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39301 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39301 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39301 > .jack.bg-image.glass.after,#stacks_in_39301 > .glass.jack.bg-image::after{}#stacks_in_39301 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39301 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39301 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39301 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39301 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39301 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39301 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39301 > .jack.peek-shadow::before,#stacks_in_39301 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39301 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39301 > .jack{overflow:hidden;}#stacks_in_39301 > .jack.height-static{height:500px}#stacks_in_39301 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_39302 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_39302 {
		display: none !important;
	}
}
#stacks_in_39303 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39303 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39303 #jwresp_col2_stacks_in_39303{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39303 #jwresp_col1_stacks_in_39303,#stacks_in_39303 #jwresp_col2_stacks_in_39303{width:100%;float:none;display:block}#stacks_in_39303 #jwresp_col1_stacks_in_39303{margin-bottom:15px}}

#stacks_in_39303 {
	padding:  20px;
}
#stacks_in_39304 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39304 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39304 .fluid-image.unlimited img{width:100% !important}#stacks_in_39304 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39304 .fluid-image.align-left img{float:left}#stacks_in_39304 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_39307 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_39307 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39308Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39308Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39308Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39308Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39308Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39308Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39308Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39308Calligrapher h6, .stacks_in_39308Calligrapher h5, .stacks_in_39308Calligrapher h4, .stacks_in_39308Calligrapher h3, .stacks_in_39308Calligrapher h2, .stacks_in_39308Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39308Calligrapher, .stacks_in_39308Calligrapher h1, .stacks_in_39308Calligrapher h2, .stacks_in_39308Calligrapher h3, .stacks_in_39308Calligrapher h4, .stacks_in_39308Calligrapher h5, .stacks_in_39308Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39308targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39308Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39308Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39308Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39308Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39308 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39309 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39312 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39314 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39316Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39316Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39316Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39316Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39316Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39316Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39316Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39316Calligrapher h6, .stacks_in_39316Calligrapher h5, .stacks_in_39316Calligrapher h4, .stacks_in_39316Calligrapher h3, .stacks_in_39316Calligrapher h2, .stacks_in_39316Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39316Calligrapher, .stacks_in_39316Calligrapher h1, .stacks_in_39316Calligrapher h2, .stacks_in_39316Calligrapher h3, .stacks_in_39316Calligrapher h4, .stacks_in_39316Calligrapher h5, .stacks_in_39316Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39316targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39316Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39316Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39316Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39316Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39316 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39317 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39319 {
	line-height: 2em;
}
#stacks_in_39322{}#stacks_in_39322 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39322 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39322 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39322 > .jack.width-static{width:500px}#stacks_in_39322 > .jack.width-flexible{width:100%}#stacks_in_39322 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39322 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39322 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39322 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39322 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39322 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39322 > .jack::after{border-radius:15px}#stacks_in_39322 > .jack.border-detailed-radius,#stacks_in_39322 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39322 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39322 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39322 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39322 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39322 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39322 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39322 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39322 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39322 > .jack.bg-image:not(.glass){}#stacks_in_39322 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39322 > .jack.bg-image.glass.after,#stacks_in_39322 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39322 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39322 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39322 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39322 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39322 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39322 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39322 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39322 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39322 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39322 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39322 > .jack.bg-image.glass.after,#stacks_in_39322 > .glass.jack.bg-image::after{}#stacks_in_39322 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39322 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39322 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39322 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39322 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39322 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39322 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39322 > .jack.peek-shadow::before,#stacks_in_39322 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39322 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39322 > .jack{overflow:hidden;}#stacks_in_39322 > .jack.height-static{height:500px}#stacks_in_39322 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39323 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_39323 {
		display: none !important;
	}
}
#stacks_in_39324 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39324 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39324 #jwresp_col2_stacks_in_39324{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39324 #jwresp_col1_stacks_in_39324,#stacks_in_39324 #jwresp_col2_stacks_in_39324{width:100%;float:none;display:block}#stacks_in_39324 #jwresp_col1_stacks_in_39324{margin-bottom:15px}}

#stacks_in_39324 {
	padding:  20px;
}
#stacks_in_39325 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39325 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39325 .fluid-image.unlimited img{width:100% !important}#stacks_in_39325 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39325 .fluid-image.align-left img{float:left}#stacks_in_39325 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39328Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39328Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39328Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39328Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39328Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39328Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39328Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39328Calligrapher h6, .stacks_in_39328Calligrapher h5, .stacks_in_39328Calligrapher h4, .stacks_in_39328Calligrapher h3, .stacks_in_39328Calligrapher h2, .stacks_in_39328Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39328Calligrapher, .stacks_in_39328Calligrapher h1, .stacks_in_39328Calligrapher h2, .stacks_in_39328Calligrapher h3, .stacks_in_39328Calligrapher h4, .stacks_in_39328Calligrapher h5, .stacks_in_39328Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39328targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39328Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39328Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39328Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39328Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39328 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39329 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39332 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39334 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39336Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39336Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39336Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39336Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39336Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39336Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39336Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39336Calligrapher h6, .stacks_in_39336Calligrapher h5, .stacks_in_39336Calligrapher h4, .stacks_in_39336Calligrapher h3, .stacks_in_39336Calligrapher h2, .stacks_in_39336Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39336Calligrapher, .stacks_in_39336Calligrapher h1, .stacks_in_39336Calligrapher h2, .stacks_in_39336Calligrapher h3, .stacks_in_39336Calligrapher h4, .stacks_in_39336Calligrapher h5, .stacks_in_39336Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39336targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39336Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39336Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39336Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39336Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39336 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39337 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39339 {
	line-height: 2em;
}
#stacks_in_39342{}#stacks_in_39342 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39342 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39342 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39342 > .jack.width-static{width:500px}#stacks_in_39342 > .jack.width-flexible{width:100%}#stacks_in_39342 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39342 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39342 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39342 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39342 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39342 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39342 > .jack::after{border-radius:15px}#stacks_in_39342 > .jack.border-detailed-radius,#stacks_in_39342 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39342 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39342 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39342 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39342 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39342 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39342 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39342 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39342 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39342 > .jack.bg-image:not(.glass){}#stacks_in_39342 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39342 > .jack.bg-image.glass.after,#stacks_in_39342 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39342 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39342 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39342 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39342 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39342 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39342 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39342 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39342 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39342 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39342 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39342 > .jack.bg-image.glass.after,#stacks_in_39342 > .glass.jack.bg-image::after{}#stacks_in_39342 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39342 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39342 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39342 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39342 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39342 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39342 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39342 > .jack.peek-shadow::before,#stacks_in_39342 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39342 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39342 > .jack{overflow:hidden;}#stacks_in_39342 > .jack.height-static{height:500px}#stacks_in_39342 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_39343 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_39343 {
		display: none !important;
	}
}
#stacks_in_39344 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39344 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39344 #jwresp_col2_stacks_in_39344{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39344 #jwresp_col1_stacks_in_39344,#stacks_in_39344 #jwresp_col2_stacks_in_39344{width:100%;float:none;display:block}#stacks_in_39344 #jwresp_col1_stacks_in_39344{margin-bottom:15px}}

#stacks_in_39344 {
	padding:  20px;
}
#stacks_in_38879 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38879 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38879 .fluid-image.unlimited img{width:100% !important}#stacks_in_38879 .fluid-image.define_max img{width:100% !important;max-width:250px !important}#stacks_in_38879 .fluid-image.align-left img{float:left}#stacks_in_38879 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 130.00px;
}

#spacerStackstacks_in_39347 {
	height: 130.00px;
}




























@media print {
	#spacerStackstacks_in_39347 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39348Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39348Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39348Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39348Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39348Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39348Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39348Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39348Calligrapher h6, .stacks_in_39348Calligrapher h5, .stacks_in_39348Calligrapher h4, .stacks_in_39348Calligrapher h3, .stacks_in_39348Calligrapher h2, .stacks_in_39348Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39348Calligrapher, .stacks_in_39348Calligrapher h1, .stacks_in_39348Calligrapher h2, .stacks_in_39348Calligrapher h3, .stacks_in_39348Calligrapher h4, .stacks_in_39348Calligrapher h5, .stacks_in_39348Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39348targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39348Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39348Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39348Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39348Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39348 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39349 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39352 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39354Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39354Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39354Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39354Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39354Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39354Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39354Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39354Calligrapher h6, .stacks_in_39354Calligrapher h5, .stacks_in_39354Calligrapher h4, .stacks_in_39354Calligrapher h3, .stacks_in_39354Calligrapher h2, .stacks_in_39354Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39354Calligrapher, .stacks_in_39354Calligrapher h1, .stacks_in_39354Calligrapher h2, .stacks_in_39354Calligrapher h3, .stacks_in_39354Calligrapher h4, .stacks_in_39354Calligrapher h5, .stacks_in_39354Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39354targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39354Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39354Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39354Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39354Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39354 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39355 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39357 {
	line-height: 2em;
}
#stacks_in_38880{padding-left:0px;padding-right:0px;}#stacks_in_38880 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38880 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38880 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38880 > .jack.width-static{width:500px}#stacks_in_38880 > .jack.width-flexible{width:100%}#stacks_in_38880 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38880 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38880 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38880 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38880 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38880 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38880 > .jack::after{border-radius:0px}#stacks_in_38880 > .jack.border-detailed-radius,#stacks_in_38880 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_38880 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38880 > .jack.bg-color{background-color:#89C5FF}#stacks_in_38880 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_38880 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38880 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38880 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38880 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38880 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38880 > .jack.bg-image:not(.glass){}#stacks_in_38880 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38880 > .jack.bg-image.glass.after,#stacks_in_38880 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38880 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38880 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38880 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38880 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38880 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38880 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38880 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38880 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38880 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38880 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38880 > .jack.bg-image.glass.after,#stacks_in_38880 > .glass.jack.bg-image::after{}#stacks_in_38880 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38880 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38880 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_38880 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_38880 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_38880 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38880 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38880 > .jack.peek-shadow::before,#stacks_in_38880 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_38880 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38880 > .jack{overflow:visible;}#stacks_in_38880 > .jack.height-static{height:100px}#stacks_in_38880 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39360{}#stacks_in_39360 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39360 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39360 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39360 > .jack.width-static{width:500px}#stacks_in_39360 > .jack.width-flexible{width:100%}#stacks_in_39360 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39360 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39360 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39360 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39360 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39360 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39360 > .jack::after{border-radius:15px}#stacks_in_39360 > .jack.border-detailed-radius,#stacks_in_39360 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_39360 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39360 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39360 > .jack.bg-gradient{background-color:#AFE9BB}#stacks_in_39360 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39360 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39360 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39360 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39360 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39360 > .jack.bg-image:not(.glass){}#stacks_in_39360 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39360 > .jack.bg-image.glass.after,#stacks_in_39360 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39360 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39360 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39360 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39360 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39360 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39360 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39360 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39360 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39360 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39360 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39360 > .jack.bg-image.glass.after,#stacks_in_39360 > .glass.jack.bg-image::after{}#stacks_in_39360 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39360 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39360 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39360 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39360 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39360 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39360 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39360 > .jack.peek-shadow::before,#stacks_in_39360 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39360 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39360 > .jack{overflow:hidden;}#stacks_in_39360 > .jack.height-static{height:100px}#stacks_in_39360 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39362Calligrapher{			font-size: 100% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39362Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39362Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39362Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39362Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39362Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39362Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39362Calligrapher h6, .stacks_in_39362Calligrapher h5, .stacks_in_39362Calligrapher h4, .stacks_in_39362Calligrapher h3, .stacks_in_39362Calligrapher h2, .stacks_in_39362Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39362Calligrapher, .stacks_in_39362Calligrapher h1, .stacks_in_39362Calligrapher h2, .stacks_in_39362Calligrapher h3, .stacks_in_39362Calligrapher h4, .stacks_in_39362Calligrapher h5, .stacks_in_39362Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_39362Calligrapher, .stacks_in_39362Calligrapher h1, .stacks_in_39362Calligrapher h2, .stacks_in_39362Calligrapher h3, .stacks_in_39362Calligrapher h4, .stacks_in_39362Calligrapher h5, .stacks_in_39362Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39362targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39362Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39362Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39362Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39362Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39362 {
	padding: 0px 15px 0px 15px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39363Calligrapher{			font-size: 130% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39363Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39363Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39363Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39363Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39363Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39363Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39363Calligrapher h6, .stacks_in_39363Calligrapher h5, .stacks_in_39363Calligrapher h4, .stacks_in_39363Calligrapher h3, .stacks_in_39363Calligrapher h2, .stacks_in_39363Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39363Calligrapher, .stacks_in_39363Calligrapher h1, .stacks_in_39363Calligrapher h2, .stacks_in_39363Calligrapher h3, .stacks_in_39363Calligrapher h4, .stacks_in_39363Calligrapher h5, .stacks_in_39363Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_39363Calligrapher, .stacks_in_39363Calligrapher h1, .stacks_in_39363Calligrapher h2, .stacks_in_39363Calligrapher h3, .stacks_in_39363Calligrapher h4, .stacks_in_39363Calligrapher h5, .stacks_in_39363Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39363targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39363Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39363Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39363Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39363Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39363 {
	padding: 0px 20px 0px 20px;
}
/* Start dooHeader X stack CSS code */.stacks_in_39364x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_39364x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_39364x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_39365 {
	display:inline-block; width:100%; line-height: 0.750000em;
	font-weight: lighter;
}
#stacks_in_39751{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_39751 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_39751{visibility:hidden}#stacks_in_39751 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_39751 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_39751 .cycler_nav{cursor:pointer;z-index:101;display:block;width:20px;height:20px;position:absolute;background:url(../ueberblick_buecher_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:30%;}#stacks_in_39751 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_39751 .cycler_nav.prev:hover{background-position:0px -20px}#stacks_in_39751 .cycler_nav.prev:active{background-position:0px -40px}#stacks_in_39751 .cycler_nav.next{right:0px;background-position:0px -60px}#stacks_in_39751 .cycler_nav.next:hover{background-position:0px -80px}#stacks_in_39751 .cycler_nav.next:active{background-position:0px -100px}
#stacks_in_39752{}#stacks_in_39752 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39752 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39752 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39752 > .jack.width-static{width:500px}#stacks_in_39752 > .jack.width-flexible{width:100%}#stacks_in_39752 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39752 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39752 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39752 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39752 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39752 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39752 > .jack::after{border-radius:15px}#stacks_in_39752 > .jack.border-detailed-radius,#stacks_in_39752 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39752 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39752 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39752 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39752 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39752 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39752 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39752 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39752 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39752 > .jack.bg-image:not(.glass){}#stacks_in_39752 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39752 > .jack.bg-image.glass.after,#stacks_in_39752 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39752 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39752 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39752 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39752 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39752 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39752 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39752 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39752 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39752 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39752 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39752 > .jack.bg-image.glass.after,#stacks_in_39752 > .glass.jack.bg-image::after{}#stacks_in_39752 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39752 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39752 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39752 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39752 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39752 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39752 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39752 > .jack.peek-shadow::before,#stacks_in_39752 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39752 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39752 > .jack{overflow:hidden;}#stacks_in_39752 > .jack.height-static{height:100px}#stacks_in_39752 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39754 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39754 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39754 .fluid-image.unlimited img{width:100% !important}#stacks_in_39754 .fluid-image.define_max img{width:100% !important;max-width:400px !important}#stacks_in_39754 .fluid-image.align-left img{float:left}#stacks_in_39754 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39757Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39757Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39757Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39757Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39757Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39757Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39757Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39757Calligrapher h6, .stacks_in_39757Calligrapher h5, .stacks_in_39757Calligrapher h4, .stacks_in_39757Calligrapher h3, .stacks_in_39757Calligrapher h2, .stacks_in_39757Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39757Calligrapher, .stacks_in_39757Calligrapher h1, .stacks_in_39757Calligrapher h2, .stacks_in_39757Calligrapher h3, .stacks_in_39757Calligrapher h4, .stacks_in_39757Calligrapher h5, .stacks_in_39757Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39757targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39757Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39757Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39757Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39757Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39757 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39758 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39761 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39763 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39765Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39765Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39765Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39765Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39765Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39765Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39765Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39765Calligrapher h6, .stacks_in_39765Calligrapher h5, .stacks_in_39765Calligrapher h4, .stacks_in_39765Calligrapher h3, .stacks_in_39765Calligrapher h2, .stacks_in_39765Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39765Calligrapher, .stacks_in_39765Calligrapher h1, .stacks_in_39765Calligrapher h2, .stacks_in_39765Calligrapher h3, .stacks_in_39765Calligrapher h4, .stacks_in_39765Calligrapher h5, .stacks_in_39765Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39765targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39765Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39765Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39765Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39765Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39765 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39768 {
	line-height: 2em;
}
#stacks_in_39769{}#stacks_in_39769 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39769 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39769 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39769 > .jack.width-static{width:500px}#stacks_in_39769 > .jack.width-flexible{width:100%}#stacks_in_39769 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39769 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39769 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39769 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39769 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39769 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39769 > .jack::after{border-radius:15px}#stacks_in_39769 > .jack.border-detailed-radius,#stacks_in_39769 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39769 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39769 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39769 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39769 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39769 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39769 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39769 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39769 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39769 > .jack.bg-image:not(.glass){}#stacks_in_39769 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39769 > .jack.bg-image.glass.after,#stacks_in_39769 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39769 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39769 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39769 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39769 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39769 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39769 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39769 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39769 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39769 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39769 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39769 > .jack.bg-image.glass.after,#stacks_in_39769 > .glass.jack.bg-image::after{}#stacks_in_39769 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39769 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39769 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39769 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39769 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39769 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39769 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39769 > .jack.peek-shadow::before,#stacks_in_39769 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39769 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39769 > .jack{overflow:hidden;}#stacks_in_39769 > .jack.height-static{height:100px}#stacks_in_39769 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39770 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39770 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39770 .fluid-image.unlimited img{width:100% !important}#stacks_in_39770 .fluid-image.define_max img{width:100% !important;max-width:400px !important}#stacks_in_39770 .fluid-image.align-left img{float:left}#stacks_in_39770 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39773Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39773Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39773Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39773Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39773Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39773Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39773Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39773Calligrapher h6, .stacks_in_39773Calligrapher h5, .stacks_in_39773Calligrapher h4, .stacks_in_39773Calligrapher h3, .stacks_in_39773Calligrapher h2, .stacks_in_39773Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39773Calligrapher, .stacks_in_39773Calligrapher h1, .stacks_in_39773Calligrapher h2, .stacks_in_39773Calligrapher h3, .stacks_in_39773Calligrapher h4, .stacks_in_39773Calligrapher h5, .stacks_in_39773Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39773targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39773Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39773Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39773Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39773Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39773 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39774 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39777 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39781Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39781Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39781Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39781Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39781Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39781Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39781Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39781Calligrapher h6, .stacks_in_39781Calligrapher h5, .stacks_in_39781Calligrapher h4, .stacks_in_39781Calligrapher h3, .stacks_in_39781Calligrapher h2, .stacks_in_39781Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39781Calligrapher, .stacks_in_39781Calligrapher h1, .stacks_in_39781Calligrapher h2, .stacks_in_39781Calligrapher h3, .stacks_in_39781Calligrapher h4, .stacks_in_39781Calligrapher h5, .stacks_in_39781Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39781targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39781Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39781Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39781Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39781Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39781 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39784 {
	line-height: 2em;
}
#stacks_in_39785{}#stacks_in_39785 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39785 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39785 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39785 > .jack.width-static{width:500px}#stacks_in_39785 > .jack.width-flexible{width:100%}#stacks_in_39785 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39785 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39785 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39785 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39785 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39785 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39785 > .jack::after{border-radius:15px}#stacks_in_39785 > .jack.border-detailed-radius,#stacks_in_39785 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39785 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39785 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39785 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39785 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39785 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39785 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39785 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39785 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39785 > .jack.bg-image:not(.glass){}#stacks_in_39785 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39785 > .jack.bg-image.glass.after,#stacks_in_39785 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39785 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39785 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39785 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39785 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39785 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39785 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39785 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39785 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39785 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39785 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39785 > .jack.bg-image.glass.after,#stacks_in_39785 > .glass.jack.bg-image::after{}#stacks_in_39785 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39785 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39785 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39785 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39785 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39785 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39785 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39785 > .jack.peek-shadow::before,#stacks_in_39785 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39785 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39785 > .jack{overflow:hidden;}#stacks_in_39785 > .jack.height-static{height:100px}#stacks_in_39785 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39786 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39786 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39786 .fluid-image.unlimited img{width:100% !important}#stacks_in_39786 .fluid-image.define_max img{width:100% !important;max-width:600px !important}#stacks_in_39786 .fluid-image.align-left img{float:left}#stacks_in_39786 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39789Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39789Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39789Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39789Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39789Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39789Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39789Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39789Calligrapher h6, .stacks_in_39789Calligrapher h5, .stacks_in_39789Calligrapher h4, .stacks_in_39789Calligrapher h3, .stacks_in_39789Calligrapher h2, .stacks_in_39789Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39789Calligrapher, .stacks_in_39789Calligrapher h1, .stacks_in_39789Calligrapher h2, .stacks_in_39789Calligrapher h3, .stacks_in_39789Calligrapher h4, .stacks_in_39789Calligrapher h5, .stacks_in_39789Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39789targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39789Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39789Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39789Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39789Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39789 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39790 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39793 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39797Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39797Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39797Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39797Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39797Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39797Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39797Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39797Calligrapher h6, .stacks_in_39797Calligrapher h5, .stacks_in_39797Calligrapher h4, .stacks_in_39797Calligrapher h3, .stacks_in_39797Calligrapher h2, .stacks_in_39797Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39797Calligrapher, .stacks_in_39797Calligrapher h1, .stacks_in_39797Calligrapher h2, .stacks_in_39797Calligrapher h3, .stacks_in_39797Calligrapher h4, .stacks_in_39797Calligrapher h5, .stacks_in_39797Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39797targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39797Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39797Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39797Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39797Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39797 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39800 {
	line-height: 2em;
}
#stacks_in_39801{}#stacks_in_39801 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39801 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39801 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39801 > .jack.width-static{width:500px}#stacks_in_39801 > .jack.width-flexible{width:100%}#stacks_in_39801 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39801 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39801 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39801 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39801 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39801 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39801 > .jack::after{border-radius:15px}#stacks_in_39801 > .jack.border-detailed-radius,#stacks_in_39801 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39801 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39801 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39801 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39801 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39801 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39801 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39801 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39801 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39801 > .jack.bg-image:not(.glass){}#stacks_in_39801 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39801 > .jack.bg-image.glass.after,#stacks_in_39801 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39801 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39801 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39801 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39801 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39801 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39801 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39801 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39801 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39801 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39801 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39801 > .jack.bg-image.glass.after,#stacks_in_39801 > .glass.jack.bg-image::after{}#stacks_in_39801 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39801 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39801 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39801 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39801 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39801 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39801 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39801 > .jack.peek-shadow::before,#stacks_in_39801 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39801 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39801 > .jack{overflow:hidden;}#stacks_in_39801 > .jack.height-static{height:500px}#stacks_in_39801 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39802Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39802Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39802Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39802Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39802Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39802Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39802Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39802Calligrapher h6, .stacks_in_39802Calligrapher h5, .stacks_in_39802Calligrapher h4, .stacks_in_39802Calligrapher h3, .stacks_in_39802Calligrapher h2, .stacks_in_39802Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39802Calligrapher, .stacks_in_39802Calligrapher h1, .stacks_in_39802Calligrapher h2, .stacks_in_39802Calligrapher h3, .stacks_in_39802Calligrapher h4, .stacks_in_39802Calligrapher h5, .stacks_in_39802Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39802targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39802Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39802Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39802Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39802Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39802 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39803 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39806 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39810Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39810Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39810Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39810Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39810Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39810Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39810Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39810Calligrapher h6, .stacks_in_39810Calligrapher h5, .stacks_in_39810Calligrapher h4, .stacks_in_39810Calligrapher h3, .stacks_in_39810Calligrapher h2, .stacks_in_39810Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39810Calligrapher, .stacks_in_39810Calligrapher h1, .stacks_in_39810Calligrapher h2, .stacks_in_39810Calligrapher h3, .stacks_in_39810Calligrapher h4, .stacks_in_39810Calligrapher h5, .stacks_in_39810Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39810targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39810Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39810Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39810Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39810Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39810 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39813 {
	line-height: 2em;
}
#stacks_in_39815{}#stacks_in_39815 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39815 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39815 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39815 > .jack.width-static{width:500px}#stacks_in_39815 > .jack.width-flexible{width:100%}#stacks_in_39815 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39815 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39815 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39815 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39815 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39815 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39815 > .jack::after{border-radius:15px}#stacks_in_39815 > .jack.border-detailed-radius,#stacks_in_39815 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39815 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39815 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39815 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39815 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39815 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39815 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39815 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39815 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39815 > .jack.bg-image:not(.glass){}#stacks_in_39815 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39815 > .jack.bg-image.glass.after,#stacks_in_39815 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39815 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39815 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39815 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39815 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39815 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39815 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39815 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39815 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39815 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39815 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39815 > .jack.bg-image.glass.after,#stacks_in_39815 > .glass.jack.bg-image::after{}#stacks_in_39815 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39815 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39815 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39815 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39815 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39815 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39815 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39815 > .jack.peek-shadow::before,#stacks_in_39815 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39815 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39815 > .jack{overflow:hidden;}#stacks_in_39815 > .jack.height-static{height:100px}#stacks_in_39815 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39816 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39816 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39816 .fluid-image.unlimited img{width:100% !important}#stacks_in_39816 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39816 .fluid-image.align-left img{float:left}#stacks_in_39816 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39819Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39819Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39819Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39819Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39819Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39819Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39819Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39819Calligrapher h6, .stacks_in_39819Calligrapher h5, .stacks_in_39819Calligrapher h4, .stacks_in_39819Calligrapher h3, .stacks_in_39819Calligrapher h2, .stacks_in_39819Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39819Calligrapher, .stacks_in_39819Calligrapher h1, .stacks_in_39819Calligrapher h2, .stacks_in_39819Calligrapher h3, .stacks_in_39819Calligrapher h4, .stacks_in_39819Calligrapher h5, .stacks_in_39819Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39819targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39819Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39819Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39819Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39819Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39819 {
	margin: 30px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_39820 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39823 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39827Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39827Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39827Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39827Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39827Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39827Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39827Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39827Calligrapher h6, .stacks_in_39827Calligrapher h5, .stacks_in_39827Calligrapher h4, .stacks_in_39827Calligrapher h3, .stacks_in_39827Calligrapher h2, .stacks_in_39827Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39827Calligrapher, .stacks_in_39827Calligrapher h1, .stacks_in_39827Calligrapher h2, .stacks_in_39827Calligrapher h3, .stacks_in_39827Calligrapher h4, .stacks_in_39827Calligrapher h5, .stacks_in_39827Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39827targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39827Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39827Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39827Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39827Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39827 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39830 {
	line-height: 2em;
}
#stacks_in_39831{}#stacks_in_39831 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39831 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39831 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39831 > .jack.width-static{width:500px}#stacks_in_39831 > .jack.width-flexible{width:100%}#stacks_in_39831 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39831 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39831 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39831 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39831 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39831 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39831 > .jack::after{border-radius:15px}#stacks_in_39831 > .jack.border-detailed-radius,#stacks_in_39831 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39831 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39831 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39831 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39831 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39831 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39831 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39831 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39831 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39831 > .jack.bg-image:not(.glass){}#stacks_in_39831 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39831 > .jack.bg-image.glass.after,#stacks_in_39831 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39831 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39831 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39831 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39831 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39831 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39831 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39831 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39831 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39831 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39831 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39831 > .jack.bg-image.glass.after,#stacks_in_39831 > .glass.jack.bg-image::after{}#stacks_in_39831 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39831 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39831 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39831 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39831 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39831 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39831 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39831 > .jack.peek-shadow::before,#stacks_in_39831 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39831 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39831 > .jack{overflow:hidden;}#stacks_in_39831 > .jack.height-static{height:100px}#stacks_in_39831 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39832 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39832 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39832 .fluid-image.unlimited img{width:100% !important}#stacks_in_39832 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39832 .fluid-image.align-left img{float:left}#stacks_in_39832 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39835Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39835Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39835Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39835Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39835Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39835Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39835Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39835Calligrapher h6, .stacks_in_39835Calligrapher h5, .stacks_in_39835Calligrapher h4, .stacks_in_39835Calligrapher h3, .stacks_in_39835Calligrapher h2, .stacks_in_39835Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39835Calligrapher, .stacks_in_39835Calligrapher h1, .stacks_in_39835Calligrapher h2, .stacks_in_39835Calligrapher h3, .stacks_in_39835Calligrapher h4, .stacks_in_39835Calligrapher h5, .stacks_in_39835Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39835targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39835Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39835Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39835Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39835Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39835 {
	margin: 30px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_39836 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39839 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39841 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39843 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39847Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39847Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39847Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39847Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39847Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39847Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39847Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39847Calligrapher h6, .stacks_in_39847Calligrapher h5, .stacks_in_39847Calligrapher h4, .stacks_in_39847Calligrapher h3, .stacks_in_39847Calligrapher h2, .stacks_in_39847Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39847Calligrapher, .stacks_in_39847Calligrapher h1, .stacks_in_39847Calligrapher h2, .stacks_in_39847Calligrapher h3, .stacks_in_39847Calligrapher h4, .stacks_in_39847Calligrapher h5, .stacks_in_39847Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39847targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39847Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39847Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39847Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39847Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39847 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39850 {
	line-height: 2em;
}
#stacks_in_39851{}#stacks_in_39851 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39851 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39851 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39851 > .jack.width-static{width:500px}#stacks_in_39851 > .jack.width-flexible{width:100%}#stacks_in_39851 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39851 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39851 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39851 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39851 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39851 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39851 > .jack::after{border-radius:15px}#stacks_in_39851 > .jack.border-detailed-radius,#stacks_in_39851 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39851 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39851 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39851 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39851 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39851 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39851 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39851 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39851 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39851 > .jack.bg-image:not(.glass){}#stacks_in_39851 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39851 > .jack.bg-image.glass.after,#stacks_in_39851 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39851 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39851 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39851 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39851 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39851 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39851 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39851 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39851 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39851 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39851 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39851 > .jack.bg-image.glass.after,#stacks_in_39851 > .glass.jack.bg-image::after{}#stacks_in_39851 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39851 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39851 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39851 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39851 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39851 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39851 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39851 > .jack.peek-shadow::before,#stacks_in_39851 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39851 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39851 > .jack{overflow:hidden;}#stacks_in_39851 > .jack.height-static{height:100px}#stacks_in_39851 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39852 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39852 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39852 .fluid-image.unlimited img{width:100% !important}#stacks_in_39852 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39852 .fluid-image.align-left img{float:left}#stacks_in_39852 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39855Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39855Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39855Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39855Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39855Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39855Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39855Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39855Calligrapher h6, .stacks_in_39855Calligrapher h5, .stacks_in_39855Calligrapher h4, .stacks_in_39855Calligrapher h3, .stacks_in_39855Calligrapher h2, .stacks_in_39855Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39855Calligrapher, .stacks_in_39855Calligrapher h1, .stacks_in_39855Calligrapher h2, .stacks_in_39855Calligrapher h3, .stacks_in_39855Calligrapher h4, .stacks_in_39855Calligrapher h5, .stacks_in_39855Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39855targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39855Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39855Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39855Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39855Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39855 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39856 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39859 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39863Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39863Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39863Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39863Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39863Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39863Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39863Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39863Calligrapher h6, .stacks_in_39863Calligrapher h5, .stacks_in_39863Calligrapher h4, .stacks_in_39863Calligrapher h3, .stacks_in_39863Calligrapher h2, .stacks_in_39863Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39863Calligrapher, .stacks_in_39863Calligrapher h1, .stacks_in_39863Calligrapher h2, .stacks_in_39863Calligrapher h3, .stacks_in_39863Calligrapher h4, .stacks_in_39863Calligrapher h5, .stacks_in_39863Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39863targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39863Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39863Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39863Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39863Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39863 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39866 {
	line-height: 2em;
}
#stacks_in_39867{}#stacks_in_39867 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39867 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39867 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39867 > .jack.width-static{width:500px}#stacks_in_39867 > .jack.width-flexible{width:100%}#stacks_in_39867 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39867 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39867 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39867 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39867 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39867 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39867 > .jack::after{border-radius:15px}#stacks_in_39867 > .jack.border-detailed-radius,#stacks_in_39867 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39867 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39867 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39867 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39867 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39867 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39867 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39867 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39867 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39867 > .jack.bg-image:not(.glass){}#stacks_in_39867 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39867 > .jack.bg-image.glass.after,#stacks_in_39867 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39867 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39867 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39867 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39867 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39867 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39867 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39867 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39867 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39867 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39867 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39867 > .jack.bg-image.glass.after,#stacks_in_39867 > .glass.jack.bg-image::after{}#stacks_in_39867 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39867 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39867 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39867 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39867 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39867 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39867 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39867 > .jack.peek-shadow::before,#stacks_in_39867 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39867 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39867 > .jack{overflow:hidden;}#stacks_in_39867 > .jack.height-static{height:100px}#stacks_in_39867 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39868 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39868 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39868 .fluid-image.unlimited img{width:100% !important}#stacks_in_39868 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39868 .fluid-image.align-left img{float:left}#stacks_in_39868 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39871Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39871Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39871Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39871Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39871Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39871Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39871Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39871Calligrapher h6, .stacks_in_39871Calligrapher h5, .stacks_in_39871Calligrapher h4, .stacks_in_39871Calligrapher h3, .stacks_in_39871Calligrapher h2, .stacks_in_39871Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39871Calligrapher, .stacks_in_39871Calligrapher h1, .stacks_in_39871Calligrapher h2, .stacks_in_39871Calligrapher h3, .stacks_in_39871Calligrapher h4, .stacks_in_39871Calligrapher h5, .stacks_in_39871Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39871targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39871Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39871Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39871Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39871Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39871 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39872 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39875 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39879Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39879Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39879Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39879Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39879Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39879Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39879Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39879Calligrapher h6, .stacks_in_39879Calligrapher h5, .stacks_in_39879Calligrapher h4, .stacks_in_39879Calligrapher h3, .stacks_in_39879Calligrapher h2, .stacks_in_39879Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39879Calligrapher, .stacks_in_39879Calligrapher h1, .stacks_in_39879Calligrapher h2, .stacks_in_39879Calligrapher h3, .stacks_in_39879Calligrapher h4, .stacks_in_39879Calligrapher h5, .stacks_in_39879Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39879targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39879Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39879Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39879Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39879Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39879 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39882 {
	line-height: 2em;
}
#stacks_in_39883{}#stacks_in_39883 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39883 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39883 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39883 > .jack.width-static{width:500px}#stacks_in_39883 > .jack.width-flexible{width:100%}#stacks_in_39883 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39883 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39883 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39883 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39883 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39883 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39883 > .jack::after{border-radius:15px}#stacks_in_39883 > .jack.border-detailed-radius,#stacks_in_39883 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39883 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39883 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39883 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39883 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39883 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39883 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39883 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39883 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39883 > .jack.bg-image:not(.glass){}#stacks_in_39883 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39883 > .jack.bg-image.glass.after,#stacks_in_39883 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39883 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39883 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39883 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39883 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39883 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39883 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39883 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39883 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39883 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39883 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39883 > .jack.bg-image.glass.after,#stacks_in_39883 > .glass.jack.bg-image::after{}#stacks_in_39883 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39883 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39883 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39883 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39883 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39883 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39883 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39883 > .jack.peek-shadow::before,#stacks_in_39883 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39883 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39883 > .jack{overflow:hidden;}#stacks_in_39883 > .jack.height-static{height:100px}#stacks_in_39883 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39884 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39884 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39884 .fluid-image.unlimited img{width:100% !important}#stacks_in_39884 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39884 .fluid-image.align-left img{float:left}#stacks_in_39884 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39887Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39887Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39887Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39887Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39887Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39887Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39887Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39887Calligrapher h6, .stacks_in_39887Calligrapher h5, .stacks_in_39887Calligrapher h4, .stacks_in_39887Calligrapher h3, .stacks_in_39887Calligrapher h2, .stacks_in_39887Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39887Calligrapher, .stacks_in_39887Calligrapher h1, .stacks_in_39887Calligrapher h2, .stacks_in_39887Calligrapher h3, .stacks_in_39887Calligrapher h4, .stacks_in_39887Calligrapher h5, .stacks_in_39887Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39887targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39887Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39887Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39887Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39887Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39887 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39888 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39891 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39895Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39895Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39895Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39895Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39895Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39895Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39895Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39895Calligrapher h6, .stacks_in_39895Calligrapher h5, .stacks_in_39895Calligrapher h4, .stacks_in_39895Calligrapher h3, .stacks_in_39895Calligrapher h2, .stacks_in_39895Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39895Calligrapher, .stacks_in_39895Calligrapher h1, .stacks_in_39895Calligrapher h2, .stacks_in_39895Calligrapher h3, .stacks_in_39895Calligrapher h4, .stacks_in_39895Calligrapher h5, .stacks_in_39895Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39895targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39895Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39895Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39895Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39895Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39895 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39898 {
	line-height: 2em;
}
#stacks_in_39899{}#stacks_in_39899 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39899 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39899 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39899 > .jack.width-static{width:500px}#stacks_in_39899 > .jack.width-flexible{width:100%}#stacks_in_39899 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39899 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39899 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39899 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39899 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39899 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39899 > .jack::after{border-radius:15px}#stacks_in_39899 > .jack.border-detailed-radius,#stacks_in_39899 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39899 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39899 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39899 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39899 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39899 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39899 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39899 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39899 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39899 > .jack.bg-image:not(.glass){}#stacks_in_39899 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39899 > .jack.bg-image.glass.after,#stacks_in_39899 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39899 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39899 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39899 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39899 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39899 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39899 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39899 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39899 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39899 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39899 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39899 > .jack.bg-image.glass.after,#stacks_in_39899 > .glass.jack.bg-image::after{}#stacks_in_39899 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39899 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39899 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39899 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39899 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39899 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39899 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39899 > .jack.peek-shadow::before,#stacks_in_39899 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39899 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39899 > .jack{overflow:hidden;}#stacks_in_39899 > .jack.height-static{height:100px}#stacks_in_39899 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39900 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39900 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39900 .fluid-image.unlimited img{width:100% !important}#stacks_in_39900 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39900 .fluid-image.align-left img{float:left}#stacks_in_39900 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39903Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39903Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39903Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39903Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39903Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39903Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39903Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39903Calligrapher h6, .stacks_in_39903Calligrapher h5, .stacks_in_39903Calligrapher h4, .stacks_in_39903Calligrapher h3, .stacks_in_39903Calligrapher h2, .stacks_in_39903Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39903Calligrapher, .stacks_in_39903Calligrapher h1, .stacks_in_39903Calligrapher h2, .stacks_in_39903Calligrapher h3, .stacks_in_39903Calligrapher h4, .stacks_in_39903Calligrapher h5, .stacks_in_39903Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39903targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39903Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39903Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39903Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39903Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39903 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39904 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39907 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39911Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39911Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39911Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39911Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39911Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39911Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39911Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39911Calligrapher h6, .stacks_in_39911Calligrapher h5, .stacks_in_39911Calligrapher h4, .stacks_in_39911Calligrapher h3, .stacks_in_39911Calligrapher h2, .stacks_in_39911Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39911Calligrapher, .stacks_in_39911Calligrapher h1, .stacks_in_39911Calligrapher h2, .stacks_in_39911Calligrapher h3, .stacks_in_39911Calligrapher h4, .stacks_in_39911Calligrapher h5, .stacks_in_39911Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39911targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39911Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39911Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39911Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39911Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39911 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39912 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39914 {
	line-height: 2em;
}
#stacks_in_39915{}#stacks_in_39915 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39915 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39915 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39915 > .jack.width-static{width:500px}#stacks_in_39915 > .jack.width-flexible{width:100%}#stacks_in_39915 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39915 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39915 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39915 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39915 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39915 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39915 > .jack::after{border-radius:15px}#stacks_in_39915 > .jack.border-detailed-radius,#stacks_in_39915 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39915 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39915 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39915 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39915 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39915 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39915 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39915 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39915 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39915 > .jack.bg-image:not(.glass){}#stacks_in_39915 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39915 > .jack.bg-image.glass.after,#stacks_in_39915 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39915 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39915 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39915 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39915 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39915 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39915 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39915 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39915 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39915 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39915 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39915 > .jack.bg-image.glass.after,#stacks_in_39915 > .glass.jack.bg-image::after{}#stacks_in_39915 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39915 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39915 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39915 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39915 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39915 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39915 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39915 > .jack.peek-shadow::before,#stacks_in_39915 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39915 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39915 > .jack{overflow:hidden;}#stacks_in_39915 > .jack.height-static{height:100px}#stacks_in_39915 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39916 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39916 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39916 .fluid-image.unlimited img{width:100% !important}#stacks_in_39916 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39916 .fluid-image.align-left img{float:left}#stacks_in_39916 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39919Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39919Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39919Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39919Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39919Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39919Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39919Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39919Calligrapher h6, .stacks_in_39919Calligrapher h5, .stacks_in_39919Calligrapher h4, .stacks_in_39919Calligrapher h3, .stacks_in_39919Calligrapher h2, .stacks_in_39919Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39919Calligrapher, .stacks_in_39919Calligrapher h1, .stacks_in_39919Calligrapher h2, .stacks_in_39919Calligrapher h3, .stacks_in_39919Calligrapher h4, .stacks_in_39919Calligrapher h5, .stacks_in_39919Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39919targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39919Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39919Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39919Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39919Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39919 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39920 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39923 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39927Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39927Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39927Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39927Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39927Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39927Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39927Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39927Calligrapher h6, .stacks_in_39927Calligrapher h5, .stacks_in_39927Calligrapher h4, .stacks_in_39927Calligrapher h3, .stacks_in_39927Calligrapher h2, .stacks_in_39927Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39927Calligrapher, .stacks_in_39927Calligrapher h1, .stacks_in_39927Calligrapher h2, .stacks_in_39927Calligrapher h3, .stacks_in_39927Calligrapher h4, .stacks_in_39927Calligrapher h5, .stacks_in_39927Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39927targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39927Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39927Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39927Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39927Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39927 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39928 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39930 {
	line-height: 2em;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_39931 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_39931 {
		display: none !important;
	}
}
#stacks_in_39932{}#stacks_in_39932 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39932 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39932 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39932 > .jack.width-static{width:500px}#stacks_in_39932 > .jack.width-flexible{width:100%}#stacks_in_39932 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39932 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39932 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39932 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39932 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39932 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39932 > .jack::after{border-radius:15px}#stacks_in_39932 > .jack.border-detailed-radius,#stacks_in_39932 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39932 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39932 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39932 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39932 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39932 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39932 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39932 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39932 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39932 > .jack.bg-image:not(.glass){}#stacks_in_39932 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39932 > .jack.bg-image.glass.after,#stacks_in_39932 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39932 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39932 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39932 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39932 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39932 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39932 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39932 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39932 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39932 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39932 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39932 > .jack.bg-image.glass.after,#stacks_in_39932 > .glass.jack.bg-image::after{}#stacks_in_39932 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39932 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39932 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39932 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39932 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39932 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39932 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39932 > .jack.peek-shadow::before,#stacks_in_39932 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39932 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39932 > .jack{overflow:hidden;}#stacks_in_39932 > .jack.height-static{height:100px}#stacks_in_39932 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39933 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39933 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39933 .fluid-image.unlimited img{width:100% !important}#stacks_in_39933 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39933 .fluid-image.align-left img{float:left}#stacks_in_39933 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39936Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39936Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39936Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39936Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39936Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39936Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39936Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39936Calligrapher h6, .stacks_in_39936Calligrapher h5, .stacks_in_39936Calligrapher h4, .stacks_in_39936Calligrapher h3, .stacks_in_39936Calligrapher h2, .stacks_in_39936Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39936Calligrapher, .stacks_in_39936Calligrapher h1, .stacks_in_39936Calligrapher h2, .stacks_in_39936Calligrapher h3, .stacks_in_39936Calligrapher h4, .stacks_in_39936Calligrapher h5, .stacks_in_39936Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39936targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39936Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39936Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39936Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39936Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39936 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39937 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39940 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39944Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39944Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39944Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39944Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39944Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39944Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39944Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39944Calligrapher h6, .stacks_in_39944Calligrapher h5, .stacks_in_39944Calligrapher h4, .stacks_in_39944Calligrapher h3, .stacks_in_39944Calligrapher h2, .stacks_in_39944Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39944Calligrapher, .stacks_in_39944Calligrapher h1, .stacks_in_39944Calligrapher h2, .stacks_in_39944Calligrapher h3, .stacks_in_39944Calligrapher h4, .stacks_in_39944Calligrapher h5, .stacks_in_39944Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39944targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39944Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39944Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39944Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39944Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39944 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39945 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39947 {
	line-height: 2em;
}
#stacks_in_39948{}#stacks_in_39948 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39948 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39948 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39948 > .jack.width-static{width:500px}#stacks_in_39948 > .jack.width-flexible{width:100%}#stacks_in_39948 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39948 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39948 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39948 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39948 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39948 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39948 > .jack::after{border-radius:15px}#stacks_in_39948 > .jack.border-detailed-radius,#stacks_in_39948 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39948 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39948 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39948 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39948 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39948 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39948 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39948 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39948 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39948 > .jack.bg-image:not(.glass){}#stacks_in_39948 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39948 > .jack.bg-image.glass.after,#stacks_in_39948 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39948 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39948 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39948 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39948 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39948 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39948 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39948 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39948 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39948 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39948 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39948 > .jack.bg-image.glass.after,#stacks_in_39948 > .glass.jack.bg-image::after{}#stacks_in_39948 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39948 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39948 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39948 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39948 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39948 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39948 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39948 > .jack.peek-shadow::before,#stacks_in_39948 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39948 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39948 > .jack{overflow:hidden;}#stacks_in_39948 > .jack.height-static{height:100px}#stacks_in_39948 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39949 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39949 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39949 .fluid-image.unlimited img{width:100% !important}#stacks_in_39949 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39949 .fluid-image.align-left img{float:left}#stacks_in_39949 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39952Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39952Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39952Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39952Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39952Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39952Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39952Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39952Calligrapher h6, .stacks_in_39952Calligrapher h5, .stacks_in_39952Calligrapher h4, .stacks_in_39952Calligrapher h3, .stacks_in_39952Calligrapher h2, .stacks_in_39952Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39952Calligrapher, .stacks_in_39952Calligrapher h1, .stacks_in_39952Calligrapher h2, .stacks_in_39952Calligrapher h3, .stacks_in_39952Calligrapher h4, .stacks_in_39952Calligrapher h5, .stacks_in_39952Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39952targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39952Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39952Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39952Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39952Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39952 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39953 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39956 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39958Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39958Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39958Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39958Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39958Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39958Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39958Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39958Calligrapher h6, .stacks_in_39958Calligrapher h5, .stacks_in_39958Calligrapher h4, .stacks_in_39958Calligrapher h3, .stacks_in_39958Calligrapher h2, .stacks_in_39958Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39958Calligrapher, .stacks_in_39958Calligrapher h1, .stacks_in_39958Calligrapher h2, .stacks_in_39958Calligrapher h3, .stacks_in_39958Calligrapher h4, .stacks_in_39958Calligrapher h5, .stacks_in_39958Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39958targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39958Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39958Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39958Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39958Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39958 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39959 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39961 {
	line-height: 2em;
}
#stacks_in_39962{}#stacks_in_39962 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39962 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39962 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39962 > .jack.width-static{width:500px}#stacks_in_39962 > .jack.width-flexible{width:100%}#stacks_in_39962 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39962 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39962 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39962 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39962 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39962 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39962 > .jack::after{border-radius:15px}#stacks_in_39962 > .jack.border-detailed-radius,#stacks_in_39962 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39962 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39962 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39962 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39962 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39962 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39962 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39962 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39962 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39962 > .jack.bg-image:not(.glass){}#stacks_in_39962 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39962 > .jack.bg-image.glass.after,#stacks_in_39962 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39962 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39962 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39962 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39962 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39962 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39962 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39962 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39962 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39962 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39962 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39962 > .jack.bg-image.glass.after,#stacks_in_39962 > .glass.jack.bg-image::after{}#stacks_in_39962 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39962 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39962 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39962 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39962 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39962 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39962 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39962 > .jack.peek-shadow::before,#stacks_in_39962 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39962 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39962 > .jack{overflow:hidden;}#stacks_in_39962 > .jack.height-static{height:100px}#stacks_in_39962 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39963 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39963 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39963 .fluid-image.unlimited img{width:100% !important}#stacks_in_39963 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39963 .fluid-image.align-left img{float:left}#stacks_in_39963 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39966Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39966Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39966Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39966Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39966Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39966Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39966Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39966Calligrapher h6, .stacks_in_39966Calligrapher h5, .stacks_in_39966Calligrapher h4, .stacks_in_39966Calligrapher h3, .stacks_in_39966Calligrapher h2, .stacks_in_39966Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39966Calligrapher, .stacks_in_39966Calligrapher h1, .stacks_in_39966Calligrapher h2, .stacks_in_39966Calligrapher h3, .stacks_in_39966Calligrapher h4, .stacks_in_39966Calligrapher h5, .stacks_in_39966Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39966targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39966Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39966Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39966Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39966Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39966 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39967 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39970 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39972 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39974Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39974Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39974Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39974Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39974Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39974Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39974Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39974Calligrapher h6, .stacks_in_39974Calligrapher h5, .stacks_in_39974Calligrapher h4, .stacks_in_39974Calligrapher h3, .stacks_in_39974Calligrapher h2, .stacks_in_39974Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39974Calligrapher, .stacks_in_39974Calligrapher h1, .stacks_in_39974Calligrapher h2, .stacks_in_39974Calligrapher h3, .stacks_in_39974Calligrapher h4, .stacks_in_39974Calligrapher h5, .stacks_in_39974Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39974targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39974Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39974Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39974Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39974Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39974 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39975 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39977 {
	line-height: 2em;
}
#stacks_in_39978{}#stacks_in_39978 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39978 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39978 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39978 > .jack.width-static{width:500px}#stacks_in_39978 > .jack.width-flexible{width:100%}#stacks_in_39978 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39978 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39978 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39978 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39978 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39978 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39978 > .jack::after{border-radius:15px}#stacks_in_39978 > .jack.border-detailed-radius,#stacks_in_39978 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39978 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39978 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39978 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39978 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39978 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39978 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39978 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39978 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39978 > .jack.bg-image:not(.glass){}#stacks_in_39978 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39978 > .jack.bg-image.glass.after,#stacks_in_39978 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39978 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39978 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39978 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39978 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39978 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39978 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39978 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39978 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39978 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39978 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39978 > .jack.bg-image.glass.after,#stacks_in_39978 > .glass.jack.bg-image::after{}#stacks_in_39978 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39978 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39978 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39978 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39978 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39978 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39978 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39978 > .jack.peek-shadow::before,#stacks_in_39978 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39978 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39978 > .jack{overflow:hidden;}#stacks_in_39978 > .jack.height-static{height:100px}#stacks_in_39978 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39979 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39979 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39979 .fluid-image.unlimited img{width:100% !important}#stacks_in_39979 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39979 .fluid-image.align-left img{float:left}#stacks_in_39979 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39982Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39982Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39982Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39982Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39982Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39982Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39982Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39982Calligrapher h6, .stacks_in_39982Calligrapher h5, .stacks_in_39982Calligrapher h4, .stacks_in_39982Calligrapher h3, .stacks_in_39982Calligrapher h2, .stacks_in_39982Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39982Calligrapher, .stacks_in_39982Calligrapher h1, .stacks_in_39982Calligrapher h2, .stacks_in_39982Calligrapher h3, .stacks_in_39982Calligrapher h4, .stacks_in_39982Calligrapher h5, .stacks_in_39982Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39982targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39982Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39982Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39982Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39982Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39982 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39983 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39986 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39988 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39990Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39990Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39990Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39990Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39990Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39990Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39990Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39990Calligrapher h6, .stacks_in_39990Calligrapher h5, .stacks_in_39990Calligrapher h4, .stacks_in_39990Calligrapher h3, .stacks_in_39990Calligrapher h2, .stacks_in_39990Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39990Calligrapher, .stacks_in_39990Calligrapher h1, .stacks_in_39990Calligrapher h2, .stacks_in_39990Calligrapher h3, .stacks_in_39990Calligrapher h4, .stacks_in_39990Calligrapher h5, .stacks_in_39990Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39990targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39990Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39990Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39990Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39990Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39990 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39991 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39993 {
	line-height: 2em;
}
#stacks_in_39994{}#stacks_in_39994 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39994 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39994 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39994 > .jack.width-static{width:500px}#stacks_in_39994 > .jack.width-flexible{width:100%}#stacks_in_39994 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39994 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39994 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39994 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39994 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39994 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39994 > .jack::after{border-radius:15px}#stacks_in_39994 > .jack.border-detailed-radius,#stacks_in_39994 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39994 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39994 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39994 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39994 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39994 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39994 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39994 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39994 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39994 > .jack.bg-image:not(.glass){}#stacks_in_39994 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39994 > .jack.bg-image.glass.after,#stacks_in_39994 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39994 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39994 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39994 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39994 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39994 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39994 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39994 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39994 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39994 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39994 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39994 > .jack.bg-image.glass.after,#stacks_in_39994 > .glass.jack.bg-image::after{}#stacks_in_39994 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39994 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39994 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39994 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39994 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39994 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39994 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39994 > .jack.peek-shadow::before,#stacks_in_39994 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39994 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39994 > .jack{overflow:hidden;}#stacks_in_39994 > .jack.height-static{height:100px}#stacks_in_39994 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39995 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39995 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39995 .fluid-image.unlimited img{width:100% !important}#stacks_in_39995 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39995 .fluid-image.align-left img{float:left}#stacks_in_39995 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39998Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39998Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39998Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39998Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39998Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39998Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39998Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39998Calligrapher h6, .stacks_in_39998Calligrapher h5, .stacks_in_39998Calligrapher h4, .stacks_in_39998Calligrapher h3, .stacks_in_39998Calligrapher h2, .stacks_in_39998Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39998Calligrapher, .stacks_in_39998Calligrapher h1, .stacks_in_39998Calligrapher h2, .stacks_in_39998Calligrapher h3, .stacks_in_39998Calligrapher h4, .stacks_in_39998Calligrapher h5, .stacks_in_39998Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39998targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39998Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39998Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39998Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39998Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39998 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39999 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40002 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40004 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40006Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40006Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40006Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40006Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40006Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40006Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40006Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40006Calligrapher h6, .stacks_in_40006Calligrapher h5, .stacks_in_40006Calligrapher h4, .stacks_in_40006Calligrapher h3, .stacks_in_40006Calligrapher h2, .stacks_in_40006Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40006Calligrapher, .stacks_in_40006Calligrapher h1, .stacks_in_40006Calligrapher h2, .stacks_in_40006Calligrapher h3, .stacks_in_40006Calligrapher h4, .stacks_in_40006Calligrapher h5, .stacks_in_40006Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40006targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40006Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40006Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40006Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40006Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40006 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40007 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40009 {
	line-height: 2em;
}
#stacks_in_40010{}#stacks_in_40010 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_40010 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40010 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40010 > .jack.width-static{width:500px}#stacks_in_40010 > .jack.width-flexible{width:100%}#stacks_in_40010 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40010 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40010 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40010 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40010 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40010 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40010 > .jack::after{border-radius:15px}#stacks_in_40010 > .jack.border-detailed-radius,#stacks_in_40010 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40010 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40010 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40010 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40010 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40010 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40010 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40010 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40010 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40010 > .jack.bg-image:not(.glass){}#stacks_in_40010 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40010 > .jack.bg-image.glass.after,#stacks_in_40010 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40010 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40010 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40010 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40010 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40010 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40010 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40010 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40010 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40010 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40010 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40010 > .jack.bg-image.glass.after,#stacks_in_40010 > .glass.jack.bg-image::after{}#stacks_in_40010 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40010 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40010 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_40010 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40010 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40010 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_40010 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_40010 > .jack.peek-shadow::before,#stacks_in_40010 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_40010 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40010 > .jack{overflow:hidden;}#stacks_in_40010 > .jack.height-static{height:100px}#stacks_in_40010 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40011 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_40011 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40011 .fluid-image.unlimited img{width:100% !important}#stacks_in_40011 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40011 .fluid-image.align-left img{float:left}#stacks_in_40011 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40014Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40014Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40014Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40014Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40014Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40014Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40014Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40014Calligrapher h6, .stacks_in_40014Calligrapher h5, .stacks_in_40014Calligrapher h4, .stacks_in_40014Calligrapher h3, .stacks_in_40014Calligrapher h2, .stacks_in_40014Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40014Calligrapher, .stacks_in_40014Calligrapher h1, .stacks_in_40014Calligrapher h2, .stacks_in_40014Calligrapher h3, .stacks_in_40014Calligrapher h4, .stacks_in_40014Calligrapher h5, .stacks_in_40014Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40014targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40014Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40014Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40014Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40014Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40014 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40015 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40018 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40020Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40020Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40020Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40020Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40020Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40020Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40020Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40020Calligrapher h6, .stacks_in_40020Calligrapher h5, .stacks_in_40020Calligrapher h4, .stacks_in_40020Calligrapher h3, .stacks_in_40020Calligrapher h2, .stacks_in_40020Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40020Calligrapher, .stacks_in_40020Calligrapher h1, .stacks_in_40020Calligrapher h2, .stacks_in_40020Calligrapher h3, .stacks_in_40020Calligrapher h4, .stacks_in_40020Calligrapher h5, .stacks_in_40020Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40020targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40020Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40020Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40020Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40020Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40020 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40021 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40023 {
	line-height: 2em;
}
#stacks_in_40024{}#stacks_in_40024 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_40024 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40024 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40024 > .jack.width-static{width:500px}#stacks_in_40024 > .jack.width-flexible{width:100%}#stacks_in_40024 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40024 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40024 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40024 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40024 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40024 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40024 > .jack::after{border-radius:15px}#stacks_in_40024 > .jack.border-detailed-radius,#stacks_in_40024 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40024 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40024 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40024 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40024 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40024 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40024 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40024 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40024 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40024 > .jack.bg-image:not(.glass){}#stacks_in_40024 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40024 > .jack.bg-image.glass.after,#stacks_in_40024 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40024 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40024 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40024 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40024 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40024 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40024 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40024 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40024 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40024 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40024 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40024 > .jack.bg-image.glass.after,#stacks_in_40024 > .glass.jack.bg-image::after{}#stacks_in_40024 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40024 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40024 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_40024 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40024 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40024 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_40024 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_40024 > .jack.peek-shadow::before,#stacks_in_40024 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_40024 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40024 > .jack{overflow:hidden;}#stacks_in_40024 > .jack.height-static{height:100px}#stacks_in_40024 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40025 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_40025 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40025 .fluid-image.unlimited img{width:100% !important}#stacks_in_40025 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40025 .fluid-image.align-left img{float:left}#stacks_in_40025 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40028Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40028Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40028Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40028Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40028Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40028Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40028Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40028Calligrapher h6, .stacks_in_40028Calligrapher h5, .stacks_in_40028Calligrapher h4, .stacks_in_40028Calligrapher h3, .stacks_in_40028Calligrapher h2, .stacks_in_40028Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40028Calligrapher, .stacks_in_40028Calligrapher h1, .stacks_in_40028Calligrapher h2, .stacks_in_40028Calligrapher h3, .stacks_in_40028Calligrapher h4, .stacks_in_40028Calligrapher h5, .stacks_in_40028Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40028targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40028Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40028Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40028Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40028Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40028 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40029 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40032 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40034 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40036Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40036Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40036Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40036Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40036Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40036Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40036Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40036Calligrapher h6, .stacks_in_40036Calligrapher h5, .stacks_in_40036Calligrapher h4, .stacks_in_40036Calligrapher h3, .stacks_in_40036Calligrapher h2, .stacks_in_40036Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40036Calligrapher, .stacks_in_40036Calligrapher h1, .stacks_in_40036Calligrapher h2, .stacks_in_40036Calligrapher h3, .stacks_in_40036Calligrapher h4, .stacks_in_40036Calligrapher h5, .stacks_in_40036Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40036targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40036Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40036Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40036Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40036Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40036 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40037 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40039 {
	line-height: 2em;
}
#stacks_in_40040{}#stacks_in_40040 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_40040 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40040 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40040 > .jack.width-static{width:500px}#stacks_in_40040 > .jack.width-flexible{width:100%}#stacks_in_40040 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40040 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40040 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40040 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40040 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40040 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40040 > .jack::after{border-radius:15px}#stacks_in_40040 > .jack.border-detailed-radius,#stacks_in_40040 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40040 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40040 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40040 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40040 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40040 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40040 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40040 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40040 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40040 > .jack.bg-image:not(.glass){}#stacks_in_40040 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40040 > .jack.bg-image.glass.after,#stacks_in_40040 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40040 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40040 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40040 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40040 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40040 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40040 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40040 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40040 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40040 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40040 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40040 > .jack.bg-image.glass.after,#stacks_in_40040 > .glass.jack.bg-image::after{}#stacks_in_40040 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40040 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40040 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_40040 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40040 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40040 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_40040 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_40040 > .jack.peek-shadow::before,#stacks_in_40040 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_40040 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40040 > .jack{overflow:hidden;}#stacks_in_40040 > .jack.height-static{height:100px}#stacks_in_40040 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40041 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_40041 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40041 .fluid-image.unlimited img{width:100% !important}#stacks_in_40041 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40041 .fluid-image.align-left img{float:left}#stacks_in_40041 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40044Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40044Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40044Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40044Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40044Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40044Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40044Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40044Calligrapher h6, .stacks_in_40044Calligrapher h5, .stacks_in_40044Calligrapher h4, .stacks_in_40044Calligrapher h3, .stacks_in_40044Calligrapher h2, .stacks_in_40044Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40044Calligrapher, .stacks_in_40044Calligrapher h1, .stacks_in_40044Calligrapher h2, .stacks_in_40044Calligrapher h3, .stacks_in_40044Calligrapher h4, .stacks_in_40044Calligrapher h5, .stacks_in_40044Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40044targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40044Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40044Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40044Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40044Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40044 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40045 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40048 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40050Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40050Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40050Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40050Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40050Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40050Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40050Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40050Calligrapher h6, .stacks_in_40050Calligrapher h5, .stacks_in_40050Calligrapher h4, .stacks_in_40050Calligrapher h3, .stacks_in_40050Calligrapher h2, .stacks_in_40050Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40050Calligrapher, .stacks_in_40050Calligrapher h1, .stacks_in_40050Calligrapher h2, .stacks_in_40050Calligrapher h3, .stacks_in_40050Calligrapher h4, .stacks_in_40050Calligrapher h5, .stacks_in_40050Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40050targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40050Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40050Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40050Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40050Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40050 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40051 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40053 {
	line-height: 2em;
}
#stacks_in_40054{}#stacks_in_40054 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_40054 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40054 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40054 > .jack.width-static{width:500px}#stacks_in_40054 > .jack.width-flexible{width:100%}#stacks_in_40054 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40054 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40054 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40054 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40054 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40054 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40054 > .jack::after{border-radius:15px}#stacks_in_40054 > .jack.border-detailed-radius,#stacks_in_40054 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40054 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40054 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40054 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40054 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40054 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40054 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40054 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40054 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40054 > .jack.bg-image:not(.glass){}#stacks_in_40054 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40054 > .jack.bg-image.glass.after,#stacks_in_40054 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40054 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40054 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40054 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40054 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40054 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40054 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40054 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40054 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40054 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40054 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40054 > .jack.bg-image.glass.after,#stacks_in_40054 > .glass.jack.bg-image::after{}#stacks_in_40054 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40054 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40054 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_40054 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40054 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40054 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_40054 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_40054 > .jack.peek-shadow::before,#stacks_in_40054 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_40054 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40054 > .jack{overflow:hidden;}#stacks_in_40054 > .jack.height-static{height:100px}#stacks_in_40054 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40055 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_40055 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40055 .fluid-image.unlimited img{width:100% !important}#stacks_in_40055 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40055 .fluid-image.align-left img{float:left}#stacks_in_40055 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40058Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40058Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40058Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40058Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40058Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40058Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40058Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40058Calligrapher h6, .stacks_in_40058Calligrapher h5, .stacks_in_40058Calligrapher h4, .stacks_in_40058Calligrapher h3, .stacks_in_40058Calligrapher h2, .stacks_in_40058Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40058Calligrapher, .stacks_in_40058Calligrapher h1, .stacks_in_40058Calligrapher h2, .stacks_in_40058Calligrapher h3, .stacks_in_40058Calligrapher h4, .stacks_in_40058Calligrapher h5, .stacks_in_40058Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40058targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40058Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40058Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40058Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40058Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40058 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40059 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40062 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40064 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40066Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40066Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40066Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40066Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40066Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40066Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40066Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40066Calligrapher h6, .stacks_in_40066Calligrapher h5, .stacks_in_40066Calligrapher h4, .stacks_in_40066Calligrapher h3, .stacks_in_40066Calligrapher h2, .stacks_in_40066Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40066Calligrapher, .stacks_in_40066Calligrapher h1, .stacks_in_40066Calligrapher h2, .stacks_in_40066Calligrapher h3, .stacks_in_40066Calligrapher h4, .stacks_in_40066Calligrapher h5, .stacks_in_40066Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40066targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40066Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40066Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40066Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40066Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40066 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40067 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40069 {
	line-height: 2em;
}
#stacks_in_40070{}#stacks_in_40070 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_40070 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40070 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40070 > .jack.width-static{width:500px}#stacks_in_40070 > .jack.width-flexible{width:100%}#stacks_in_40070 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40070 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40070 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40070 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40070 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40070 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40070 > .jack::after{border-radius:15px}#stacks_in_40070 > .jack.border-detailed-radius,#stacks_in_40070 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40070 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40070 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40070 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40070 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40070 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40070 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40070 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40070 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40070 > .jack.bg-image:not(.glass){}#stacks_in_40070 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40070 > .jack.bg-image.glass.after,#stacks_in_40070 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40070 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40070 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40070 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40070 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40070 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40070 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40070 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40070 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40070 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40070 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40070 > .jack.bg-image.glass.after,#stacks_in_40070 > .glass.jack.bg-image::after{}#stacks_in_40070 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40070 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40070 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_40070 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40070 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40070 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_40070 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_40070 > .jack.peek-shadow::before,#stacks_in_40070 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_40070 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40070 > .jack{overflow:hidden;}#stacks_in_40070 > .jack.height-static{height:100px}#stacks_in_40070 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40071 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_40071 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40071 .fluid-image.unlimited img{width:100% !important}#stacks_in_40071 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40071 .fluid-image.align-left img{float:left}#stacks_in_40071 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40074Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40074Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40074Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40074Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40074Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40074Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40074Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40074Calligrapher h6, .stacks_in_40074Calligrapher h5, .stacks_in_40074Calligrapher h4, .stacks_in_40074Calligrapher h3, .stacks_in_40074Calligrapher h2, .stacks_in_40074Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40074Calligrapher, .stacks_in_40074Calligrapher h1, .stacks_in_40074Calligrapher h2, .stacks_in_40074Calligrapher h3, .stacks_in_40074Calligrapher h4, .stacks_in_40074Calligrapher h5, .stacks_in_40074Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40074targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40074Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40074Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40074Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40074Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40074 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40075 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40078 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40080 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40082Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40082Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40082Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40082Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40082Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40082Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40082Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40082Calligrapher h6, .stacks_in_40082Calligrapher h5, .stacks_in_40082Calligrapher h4, .stacks_in_40082Calligrapher h3, .stacks_in_40082Calligrapher h2, .stacks_in_40082Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40082Calligrapher, .stacks_in_40082Calligrapher h1, .stacks_in_40082Calligrapher h2, .stacks_in_40082Calligrapher h3, .stacks_in_40082Calligrapher h4, .stacks_in_40082Calligrapher h5, .stacks_in_40082Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40082targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40082Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40082Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40082Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40082Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40082 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40083 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40085 {
	line-height: 2em;
}
#stacks_in_40086{}#stacks_in_40086 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_40086 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40086 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40086 > .jack.width-static{width:500px}#stacks_in_40086 > .jack.width-flexible{width:100%}#stacks_in_40086 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40086 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40086 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40086 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40086 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40086 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40086 > .jack::after{border-radius:15px}#stacks_in_40086 > .jack.border-detailed-radius,#stacks_in_40086 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40086 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40086 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40086 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40086 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40086 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40086 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40086 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40086 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40086 > .jack.bg-image:not(.glass){}#stacks_in_40086 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40086 > .jack.bg-image.glass.after,#stacks_in_40086 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40086 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40086 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40086 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40086 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40086 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40086 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40086 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40086 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40086 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40086 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40086 > .jack.bg-image.glass.after,#stacks_in_40086 > .glass.jack.bg-image::after{}#stacks_in_40086 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40086 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40086 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_40086 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40086 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40086 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_40086 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_40086 > .jack.peek-shadow::before,#stacks_in_40086 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_40086 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40086 > .jack{overflow:hidden;}#stacks_in_40086 > .jack.height-static{height:100px}#stacks_in_40086 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40087 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_40087 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40087 .fluid-image.unlimited img{width:100% !important}#stacks_in_40087 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40087 .fluid-image.align-left img{float:left}#stacks_in_40087 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40090Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40090Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40090Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40090Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40090Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40090Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40090Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40090Calligrapher h6, .stacks_in_40090Calligrapher h5, .stacks_in_40090Calligrapher h4, .stacks_in_40090Calligrapher h3, .stacks_in_40090Calligrapher h2, .stacks_in_40090Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40090Calligrapher, .stacks_in_40090Calligrapher h1, .stacks_in_40090Calligrapher h2, .stacks_in_40090Calligrapher h3, .stacks_in_40090Calligrapher h4, .stacks_in_40090Calligrapher h5, .stacks_in_40090Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40090targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40090Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40090Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40090Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40090Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40090 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40091 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40094 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40096 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40098Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40098Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40098Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40098Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40098Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40098Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40098Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40098Calligrapher h6, .stacks_in_40098Calligrapher h5, .stacks_in_40098Calligrapher h4, .stacks_in_40098Calligrapher h3, .stacks_in_40098Calligrapher h2, .stacks_in_40098Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40098Calligrapher, .stacks_in_40098Calligrapher h1, .stacks_in_40098Calligrapher h2, .stacks_in_40098Calligrapher h3, .stacks_in_40098Calligrapher h4, .stacks_in_40098Calligrapher h5, .stacks_in_40098Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40098targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40098Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40098Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40098Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40098Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40098 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40099 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40101 {
	line-height: 2em;
}
#stacks_in_40102{}#stacks_in_40102 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_40102 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40102 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40102 > .jack.width-static{width:500px}#stacks_in_40102 > .jack.width-flexible{width:100%}#stacks_in_40102 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40102 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40102 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40102 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40102 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40102 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40102 > .jack::after{border-radius:15px}#stacks_in_40102 > .jack.border-detailed-radius,#stacks_in_40102 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40102 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40102 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40102 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40102 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40102 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40102 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40102 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40102 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40102 > .jack.bg-image:not(.glass){}#stacks_in_40102 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40102 > .jack.bg-image.glass.after,#stacks_in_40102 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40102 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40102 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40102 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40102 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40102 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40102 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40102 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40102 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40102 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40102 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40102 > .jack.bg-image.glass.after,#stacks_in_40102 > .glass.jack.bg-image::after{}#stacks_in_40102 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40102 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40102 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_40102 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40102 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40102 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_40102 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_40102 > .jack.peek-shadow::before,#stacks_in_40102 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_40102 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40102 > .jack{overflow:hidden;}#stacks_in_40102 > .jack.height-static{height:100px}#stacks_in_40102 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40103 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_40103 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40103 .fluid-image.unlimited img{width:100% !important}#stacks_in_40103 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40103 .fluid-image.align-left img{float:left}#stacks_in_40103 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40106Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40106Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40106Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40106Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40106Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40106Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40106Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40106Calligrapher h6, .stacks_in_40106Calligrapher h5, .stacks_in_40106Calligrapher h4, .stacks_in_40106Calligrapher h3, .stacks_in_40106Calligrapher h2, .stacks_in_40106Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40106Calligrapher, .stacks_in_40106Calligrapher h1, .stacks_in_40106Calligrapher h2, .stacks_in_40106Calligrapher h3, .stacks_in_40106Calligrapher h4, .stacks_in_40106Calligrapher h5, .stacks_in_40106Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40106targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40106Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40106Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40106Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40106Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40106 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40107 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40110 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40112 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40114Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40114Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40114Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40114Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40114Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40114Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40114Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40114Calligrapher h6, .stacks_in_40114Calligrapher h5, .stacks_in_40114Calligrapher h4, .stacks_in_40114Calligrapher h3, .stacks_in_40114Calligrapher h2, .stacks_in_40114Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40114Calligrapher, .stacks_in_40114Calligrapher h1, .stacks_in_40114Calligrapher h2, .stacks_in_40114Calligrapher h3, .stacks_in_40114Calligrapher h4, .stacks_in_40114Calligrapher h5, .stacks_in_40114Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40114targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40114Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40114Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40114Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40114Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40114 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40115 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40117 {
	line-height: 2em;
}
#stacks_in_40118{}#stacks_in_40118 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_40118 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40118 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40118 > .jack.width-static{width:500px}#stacks_in_40118 > .jack.width-flexible{width:100%}#stacks_in_40118 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40118 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40118 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40118 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40118 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40118 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40118 > .jack::after{border-radius:15px}#stacks_in_40118 > .jack.border-detailed-radius,#stacks_in_40118 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40118 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40118 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40118 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40118 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40118 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40118 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40118 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40118 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40118 > .jack.bg-image:not(.glass){}#stacks_in_40118 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40118 > .jack.bg-image.glass.after,#stacks_in_40118 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40118 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40118 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40118 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40118 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40118 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40118 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40118 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40118 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40118 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40118 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40118 > .jack.bg-image.glass.after,#stacks_in_40118 > .glass.jack.bg-image::after{}#stacks_in_40118 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40118 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40118 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_40118 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40118 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_40118 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_40118 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_40118 > .jack.peek-shadow::before,#stacks_in_40118 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_40118 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40118 > .jack{overflow:hidden;}#stacks_in_40118 > .jack.height-static{height:100px}#stacks_in_40118 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40119 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_40119 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40119 .fluid-image.unlimited img{width:100% !important}#stacks_in_40119 .fluid-image.define_max img{width:100% !important;max-width:300px !important}#stacks_in_40119 .fluid-image.align-left img{float:left}#stacks_in_40119 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40122Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40122Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40122Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40122Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40122Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40122Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40122Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40122Calligrapher h6, .stacks_in_40122Calligrapher h5, .stacks_in_40122Calligrapher h4, .stacks_in_40122Calligrapher h3, .stacks_in_40122Calligrapher h2, .stacks_in_40122Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40122Calligrapher, .stacks_in_40122Calligrapher h1, .stacks_in_40122Calligrapher h2, .stacks_in_40122Calligrapher h3, .stacks_in_40122Calligrapher h4, .stacks_in_40122Calligrapher h5, .stacks_in_40122Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40122targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40122Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40122Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40122Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40122Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40122 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40123 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40126 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40128Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_40128Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40128Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40128Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40128Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40128Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40128Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40128Calligrapher h6, .stacks_in_40128Calligrapher h5, .stacks_in_40128Calligrapher h4, .stacks_in_40128Calligrapher h3, .stacks_in_40128Calligrapher h2, .stacks_in_40128Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40128Calligrapher, .stacks_in_40128Calligrapher h1, .stacks_in_40128Calligrapher h2, .stacks_in_40128Calligrapher h3, .stacks_in_40128Calligrapher h4, .stacks_in_40128Calligrapher h5, .stacks_in_40128Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40128targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40128Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40128Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40128Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40128Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40128 {
	padding: 0px 20px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40129Calligrapher{			line-height: normal !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40129Calligrapher, .stacks_in_40129Calligrapher h1, .stacks_in_40129Calligrapher h2, .stacks_in_40129Calligrapher h3, .stacks_in_40129Calligrapher h4, .stacks_in_40129Calligrapher h5, .stacks_in_40129Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40129targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Calligrapher stack CSS code */
#stacks_in_40130 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40132 {
	line-height: 2em;
}
#stacks_in_31115{padding-left:0px;padding-right:0px;}#stacks_in_31115 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31115 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31115 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31115 > .jack.width-static{width:500px}#stacks_in_31115 > .jack.width-flexible{width:100%}#stacks_in_31115 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31115 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31115 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31115 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31115 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31115 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31115 > .jack::after{border-radius:0px}#stacks_in_31115 > .jack.border-detailed-radius,#stacks_in_31115 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31115 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31115 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31115 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31115 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31115 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31115 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31115 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31115 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31115 > .jack.bg-image:not(.glass){}#stacks_in_31115 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31115 > .jack.bg-image.glass.after,#stacks_in_31115 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31115 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31115 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31115 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31115 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31115 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31115 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31115 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31115 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31115 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31115 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31115 > .jack.bg-image.glass.after,#stacks_in_31115 > .glass.jack.bg-image::after{}#stacks_in_31115 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31115 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31115 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_31115 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31115 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31115 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31115 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31115 > .jack.peek-shadow::before,#stacks_in_31115 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_31115 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31115 > .jack{overflow:visible;}#stacks_in_31115 > .jack.height-static{height:100px}#stacks_in_31115 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_31116 .jwresp_wrapper{width:100%;overflow:auto;position:relative}#stacks_in_31116 .jwresp_col{overflow:hidden;margin:0 0%; width:20%; float:none}#stacks_in_31116 #jwresp_col1_stacks_in_31116,#stacks_in_31116 #jwresp_col2_stacks_in_31116{float:left}#stacks_in_31116 #jwresp_col4_stacks_in_31116,#stacks_in_31116 #jwresp_col5_stacks_in_31116{float:right}#stacks_in_31116 #jwresp_col1_stacks_in_31116{margin-left:0}#stacks_in_31116 #jwresp_col5_stacks_in_31116{margin-right:0}#stacks_in_31116 #jwresp_col3_stacks_in_31116{margin:0 auto;float:none}#stacks_in_31116 .jwresp_clear{display:none} @media screen and (max-width:1030px){#stacks_in_31116 .jwresp_clear{display:block;clear:both;height:0}#stacks_in_31116 #jwresp_col1_stacks_in_31116,#stacks_in_31116 #jwresp_col2_stacks_in_31116,#stacks_in_31116 #jwresp_col3_stacks_in_31116,#stacks_in_31116 #jwresp_col4_stacks_in_31116{margin:0}#stacks_in_31116 #jwresp_col5_stacks_in_31116{position:relative;margin:0 auto;float:none;width:34%}#stacks_in_31116 #jwresp_col1_stacks_in_31116,#stacks_in_31116 #jwresp_col2_stacks_in_31116{width:33%}#stacks_in_31116 #jwresp_col1_stacks_in_31116,#stacks_in_31116 #jwresp_col4_stacks_in_31116{float:left}#stacks_in_31116 #jwresp_col2_stacks_in_31116,#stacks_in_31116 #jwresp_col3_stacks_in_31116{float:right}#stacks_in_31116 #jwresp_col4_stacks_in_31116,#stacks_in_31116 #jwresp_col3_stacks_in_31116{width:50%;margin-top:15px}}  @media screen and (max-width:500px){#stacks_in_31116 #jwresp_col1_stacks_in_31116,#stacks_in_31116 #jwresp_col2_stacks_in_31116,#stacks_in_31116 #jwresp_col3_stacks_in_31116,#stacks_in_31116 #jwresp_col4_stacks_in_31116,#stacks_in_31116 #jwresp_col5_stacks_in_31116{width:100%;display:block;margin:0}#stacks_in_31116 #jwresp_col1_stacks_in_31116,#stacks_in_31116 #jwresp_col2_stacks_in_31116,#stacks_in_31116 #jwresp_col4_stacks_in_31116,#stacks_in_31116 #jwresp_col5_stacks_in_31116{margin-bottom:15px}}

#stacks_in_31116 {
	margin: 10px 0px 20px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31117 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31117 .borderbuttonthing, #stacks_in_31117 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31117 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31119 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31119 .borderbuttonthing, #stacks_in_31119 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31119 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31121 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31121 .borderbuttonthing, #stacks_in_31121 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31121 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31123 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31123 .borderbuttonthing, #stacks_in_31123 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31123 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31125 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31125 .borderbuttonthing, #stacks_in_31125 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31125 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_31127{padding-left:0px;padding-right:0px;}#stacks_in_31127 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31127 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31127 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31127 > .jack.width-static{width:500px}#stacks_in_31127 > .jack.width-flexible{width:100%}#stacks_in_31127 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31127 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31127 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31127 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31127 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31127 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31127 > .jack::after{border-radius:0px}#stacks_in_31127 > .jack.border-detailed-radius,#stacks_in_31127 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31127 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31127 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31127 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31127 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31127 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31127 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31127 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31127 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31127 > .jack.bg-image:not(.glass){}#stacks_in_31127 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31127 > .jack.bg-image.glass.after,#stacks_in_31127 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31127 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31127 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31127 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31127 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31127 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31127 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31127 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31127 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31127 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31127 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31127 > .jack.bg-image.glass.after,#stacks_in_31127 > .glass.jack.bg-image::after{}#stacks_in_31127 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31127 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31127 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_31127 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31127 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31127 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31127 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31127 > .jack.peek-shadow::before,#stacks_in_31127 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_31127 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31127 > .jack{overflow:visible;}#stacks_in_31127 > .jack.height-static{height:100px}#stacks_in_31127 > .jack.height-minmax{min-height:100px;max-height:800px}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31129 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31129 .borderbuttonthing, #stacks_in_31129 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31129 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31129 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31130 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31130 .borderbuttonthing, #stacks_in_31130 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31130 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31130 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31131 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31131 .borderbuttonthing, #stacks_in_31131 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31131 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31131 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31132 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31132 .borderbuttonthing, #stacks_in_31132 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31132 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31132 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31133 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31133 .borderbuttonthing, #stacks_in_31133 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 16px;
	border: 2px solid #043631;
	color: #043631;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31133 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31133 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_30471{padding-left:0px;padding-right:0px;}#stacks_in_30471 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_30471 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30471 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30471 > .jack.width-static{width:500px}#stacks_in_30471 > .jack.width-flexible{width:100%}#stacks_in_30471 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30471 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30471 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30471 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30471 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30471 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30471 > .jack::after{border-radius:0px}#stacks_in_30471 > .jack.border-detailed-radius,#stacks_in_30471 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30471 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30471 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30471 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30471 > .jack.bg-image:not(.glass){background-image:url(../ueberblick_buecher_files/bgImage-30471.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30471 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30471 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30471 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_30471 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30471 > .jack.bg-image:not(.glass){}#stacks_in_30471 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30471 > .jack.bg-image.glass.after,#stacks_in_30471 > .glass.jack.bg-image::after{opacity:0.80;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../ueberblick_buecher_files/bgImage-30471.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30471 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30471 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30471 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30471 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30471 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30471 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30471 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30471 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_30471 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30471 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30471 > .jack.bg-image.glass.after,#stacks_in_30471 > .glass.jack.bg-image::after{}#stacks_in_30471 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30471 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30471 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_30471 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_30471 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_30471 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_30471 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_30471 > .jack.peek-shadow::before,#stacks_in_30471 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_30471 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30471 > .jack{overflow:hidden;}#stacks_in_30471 > .jack.height-static{height:50px}#stacks_in_30471 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_33686{padding-left:0px;padding-right:0px;}#stacks_in_33686 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33686 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33686 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33686 > .jack.width-static{width:500px}#stacks_in_33686 > .jack.width-flexible{width:100%}#stacks_in_33686 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33686 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33686 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33686 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33686 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33686 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33686 > .jack::after{border-radius:0px}#stacks_in_33686 > .jack.border-detailed-radius,#stacks_in_33686 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_33686 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33686 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33686 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_33686 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33686 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33686 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33686 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33686 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33686 > .jack.bg-image:not(.glass){}#stacks_in_33686 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33686 > .jack.bg-image.glass.after,#stacks_in_33686 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33686 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33686 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33686 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33686 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33686 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33686 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33686 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33686 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33686 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33686 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33686 > .jack.bg-image.glass.after,#stacks_in_33686 > .glass.jack.bg-image::after{}#stacks_in_33686 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33686 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33686 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33686 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33686 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33686 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33686 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33686 > .jack.peek-shadow::before,#stacks_in_33686 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33686 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33686 > .jack{overflow:visible;}#stacks_in_33686 > .jack.height-static{height:100px}#stacks_in_33686 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_33687{padding-left:0px;padding-right:0px;}#stacks_in_33687 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33687 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33687 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33687 > .jack.width-static{width:500px}#stacks_in_33687 > .jack.width-flexible{width:100%}#stacks_in_33687 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33687 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33687 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33687 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33687 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33687 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33687 > .jack::after{border-radius:0px}#stacks_in_33687 > .jack.border-detailed-radius,#stacks_in_33687 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_33687 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33687 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33687 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_33687 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33687 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33687 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33687 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33687 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33687 > .jack.bg-image:not(.glass){}#stacks_in_33687 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33687 > .jack.bg-image.glass.after,#stacks_in_33687 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33687 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33687 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33687 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33687 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33687 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33687 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33687 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33687 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33687 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33687 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33687 > .jack.bg-image.glass.after,#stacks_in_33687 > .glass.jack.bg-image::after{}#stacks_in_33687 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33687 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33687 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33687 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33687 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33687 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33687 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33687 > .jack.peek-shadow::before,#stacks_in_33687 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33687 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33687 > .jack{overflow:visible;}#stacks_in_33687 > .jack.height-static{height:100px}#stacks_in_33687 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_34320{}#stacks_in_34320 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_34320 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_34320 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_34320 > .jack.width-static{width:500px}#stacks_in_34320 > .jack.width-flexible{width:100%}#stacks_in_34320 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_34320 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34320 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_34320 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_34320 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_34320 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_34320 > .jack::after{border-radius:15px}#stacks_in_34320 > .jack.border-detailed-radius,#stacks_in_34320 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_34320 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_34320 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_34320 > .jack.bg-gradient{background-color:#AFE9BB}#stacks_in_34320 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34320 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_34320 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_34320 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_34320 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34320 > .jack.bg-image:not(.glass){}#stacks_in_34320 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_34320 > .jack.bg-image.glass.after,#stacks_in_34320 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34320 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_34320 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34320 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_34320 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_34320 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_34320 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_34320 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34320 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_34320 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_34320 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34320 > .jack.bg-image.glass.after,#stacks_in_34320 > .glass.jack.bg-image::after{}#stacks_in_34320 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34320 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_34320 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_34320 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34320 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34320 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_34320 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_34320 > .jack.peek-shadow::before,#stacks_in_34320 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_34320 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_34320 > .jack{overflow:hidden;}#stacks_in_34320 > .jack.height-static{height:100px}#stacks_in_34320 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_34322Calligrapher{			font-size: 100% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_34322Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_34322Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_34322Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_34322Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_34322Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_34322Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_34322Calligrapher h6, .stacks_in_34322Calligrapher h5, .stacks_in_34322Calligrapher h4, .stacks_in_34322Calligrapher h3, .stacks_in_34322Calligrapher h2, .stacks_in_34322Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_34322Calligrapher, .stacks_in_34322Calligrapher h1, .stacks_in_34322Calligrapher h2, .stacks_in_34322Calligrapher h3, .stacks_in_34322Calligrapher h4, .stacks_in_34322Calligrapher h5, .stacks_in_34322Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_34322Calligrapher, .stacks_in_34322Calligrapher h1, .stacks_in_34322Calligrapher h2, .stacks_in_34322Calligrapher h3, .stacks_in_34322Calligrapher h4, .stacks_in_34322Calligrapher h5, .stacks_in_34322Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_34322targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_34322Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_34322Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_34322Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_34322Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_34322 {
	padding: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_34323x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_34323x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_34323x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_34321 {
	font-weight: lighter;
}
#stacks_in_38002{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_38002 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_38002{visibility:hidden}#stacks_in_38002 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_38002 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_38002 .cycler_nav{cursor:pointer;z-index:101;display:block;display:none;width:50px;height:50px;position:absolute;background:url(../ueberblick_buecher_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:40%;}#stacks_in_38002 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_38002 .cycler_nav.prev:hover{background-position:0px -50px}#stacks_in_38002 .cycler_nav.prev:active{background-position:0px -100px}#stacks_in_38002 .cycler_nav.next{right:0px;background-position:0px -150px}#stacks_in_38002 .cycler_nav.next:hover{background-position:0px -200px}#stacks_in_38002 .cycler_nav.next:active{background-position:0px -250px}
#stacks_in_38003{}#stacks_in_38003 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38003 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38003 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38003 > .jack.width-static{width:500px}#stacks_in_38003 > .jack.width-flexible{width:100%}#stacks_in_38003 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38003 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38003 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38003 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38003 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38003 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38003 > .jack::after{border-radius:15px}#stacks_in_38003 > .jack.border-detailed-radius,#stacks_in_38003 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38003 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38003 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38003 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38003 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38003 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38003 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38003 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38003 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38003 > .jack.bg-image:not(.glass){}#stacks_in_38003 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38003 > .jack.bg-image.glass.after,#stacks_in_38003 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38003 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38003 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38003 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38003 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38003 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38003 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38003 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38003 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38003 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38003 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38003 > .jack.bg-image.glass.after,#stacks_in_38003 > .glass.jack.bg-image::after{}#stacks_in_38003 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38003 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38003 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38003 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38003 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38003 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38003 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38003 > .jack.peek-shadow::before,#stacks_in_38003 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38003 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38003 > .jack{overflow:hidden;}#stacks_in_38003 > .jack.height-static{height:500px}#stacks_in_38003 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_38005 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_38005 {
		display: none !important;
	}
}
#stacks_in_38006 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38006 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38006 #jwresp_col2_stacks_in_38006{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38006 #jwresp_col1_stacks_in_38006,#stacks_in_38006 #jwresp_col2_stacks_in_38006{width:100%;float:none;display:block}#stacks_in_38006 #jwresp_col1_stacks_in_38006{margin-bottom:15px}}

#stacks_in_38006 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_38007 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_38007 {
		display: none !important;
	}
}
#stacks_in_38008 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38008 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38008 .fluid-image.unlimited img{width:100% !important}#stacks_in_38008 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38008 .fluid-image.align-left img{float:left}#stacks_in_38008 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38011Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38011Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38011Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38011Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38011Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38011Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38011Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38011Calligrapher h6, .stacks_in_38011Calligrapher h5, .stacks_in_38011Calligrapher h4, .stacks_in_38011Calligrapher h3, .stacks_in_38011Calligrapher h2, .stacks_in_38011Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38011Calligrapher, .stacks_in_38011Calligrapher h1, .stacks_in_38011Calligrapher h2, .stacks_in_38011Calligrapher h3, .stacks_in_38011Calligrapher h4, .stacks_in_38011Calligrapher h5, .stacks_in_38011Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38011targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38011Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38011Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38011Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38011Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38011 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_38013 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38016 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38018 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38020Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38020Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38020Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38020Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38020Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38020Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38020Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38020Calligrapher h6, .stacks_in_38020Calligrapher h5, .stacks_in_38020Calligrapher h4, .stacks_in_38020Calligrapher h3, .stacks_in_38020Calligrapher h2, .stacks_in_38020Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38020Calligrapher, .stacks_in_38020Calligrapher h1, .stacks_in_38020Calligrapher h2, .stacks_in_38020Calligrapher h3, .stacks_in_38020Calligrapher h4, .stacks_in_38020Calligrapher h5, .stacks_in_38020Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38020targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38020Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38020Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38020Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38020Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38020 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38023 {
	line-height: 2em;
}
#stacks_in_38026{}#stacks_in_38026 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38026 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38026 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38026 > .jack.width-static{width:500px}#stacks_in_38026 > .jack.width-flexible{width:100%}#stacks_in_38026 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38026 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38026 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38026 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38026 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38026 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38026 > .jack::after{border-radius:15px}#stacks_in_38026 > .jack.border-detailed-radius,#stacks_in_38026 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38026 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38026 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38026 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38026 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38026 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38026 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38026 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38026 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38026 > .jack.bg-image:not(.glass){}#stacks_in_38026 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38026 > .jack.bg-image.glass.after,#stacks_in_38026 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38026 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38026 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38026 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38026 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38026 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38026 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38026 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38026 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38026 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38026 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38026 > .jack.bg-image.glass.after,#stacks_in_38026 > .glass.jack.bg-image::after{}#stacks_in_38026 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38026 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38026 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38026 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38026 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38026 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38026 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38026 > .jack.peek-shadow::before,#stacks_in_38026 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38026 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38026 > .jack{overflow:hidden;}#stacks_in_38026 > .jack.height-static{height:500px}#stacks_in_38026 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_38027 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_38027 {
		display: none !important;
	}
}
#stacks_in_38028 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38028 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38028 #jwresp_col2_stacks_in_38028{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38028 #jwresp_col1_stacks_in_38028,#stacks_in_38028 #jwresp_col2_stacks_in_38028{width:100%;float:none;display:block}#stacks_in_38028 #jwresp_col1_stacks_in_38028{margin-bottom:15px}}

#stacks_in_38028 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_38029 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_38029 {
		display: none !important;
	}
}
#stacks_in_38030 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38030 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38030 .fluid-image.unlimited img{width:100% !important}#stacks_in_38030 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38030 .fluid-image.align-left img{float:left}#stacks_in_38030 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38033Calligrapher{			font-size: 110% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38033Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38033Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38033Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38033Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38033Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38033Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38033Calligrapher h6, .stacks_in_38033Calligrapher h5, .stacks_in_38033Calligrapher h4, .stacks_in_38033Calligrapher h3, .stacks_in_38033Calligrapher h2, .stacks_in_38033Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38033Calligrapher, .stacks_in_38033Calligrapher h1, .stacks_in_38033Calligrapher h2, .stacks_in_38033Calligrapher h3, .stacks_in_38033Calligrapher h4, .stacks_in_38033Calligrapher h5, .stacks_in_38033Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38033targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38033Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38033Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38033Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38033Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38033 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_38034 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38037 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38041Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38041Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38041Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38041Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38041Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38041Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38041Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38041Calligrapher h6, .stacks_in_38041Calligrapher h5, .stacks_in_38041Calligrapher h4, .stacks_in_38041Calligrapher h3, .stacks_in_38041Calligrapher h2, .stacks_in_38041Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38041Calligrapher, .stacks_in_38041Calligrapher h1, .stacks_in_38041Calligrapher h2, .stacks_in_38041Calligrapher h3, .stacks_in_38041Calligrapher h4, .stacks_in_38041Calligrapher h5, .stacks_in_38041Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38041targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38041Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38041Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38041Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38041Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38041 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38044 {
	line-height: 2em;
}
#stacks_in_38047{}#stacks_in_38047 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38047 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38047 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38047 > .jack.width-static{width:500px}#stacks_in_38047 > .jack.width-flexible{width:100%}#stacks_in_38047 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38047 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38047 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38047 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38047 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38047 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38047 > .jack::after{border-radius:15px}#stacks_in_38047 > .jack.border-detailed-radius,#stacks_in_38047 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38047 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38047 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38047 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38047 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38047 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38047 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38047 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38047 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38047 > .jack.bg-image:not(.glass){}#stacks_in_38047 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38047 > .jack.bg-image.glass.after,#stacks_in_38047 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38047 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38047 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38047 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38047 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38047 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38047 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38047 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38047 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38047 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38047 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38047 > .jack.bg-image.glass.after,#stacks_in_38047 > .glass.jack.bg-image::after{}#stacks_in_38047 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38047 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38047 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38047 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38047 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38047 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38047 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38047 > .jack.peek-shadow::before,#stacks_in_38047 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38047 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38047 > .jack{overflow:hidden;}#stacks_in_38047 > .jack.height-static{height:500px}#stacks_in_38047 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_38048 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_38048 {
		display: none !important;
	}
}
#stacks_in_38049 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38049 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38049 #jwresp_col2_stacks_in_38049{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38049 #jwresp_col1_stacks_in_38049,#stacks_in_38049 #jwresp_col2_stacks_in_38049{width:100%;float:none;display:block}#stacks_in_38049 #jwresp_col1_stacks_in_38049{margin-bottom:15px}}

#stacks_in_38049 {
	padding:  20px;
}

.spacerStack {
	height: 55.00px;
}

#spacerStackstacks_in_38050 {
	height: 55.00px;
}




























@media print {
	#spacerStackstacks_in_38050 {
		display: none !important;
	}
}
#stacks_in_38051 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38051 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38051 .fluid-image.unlimited img{width:100% !important}#stacks_in_38051 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38051 .fluid-image.align-left img{float:left}#stacks_in_38051 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38054Calligrapher{			font-size: 110% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38054Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38054Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38054Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38054Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38054Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38054Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38054Calligrapher h6, .stacks_in_38054Calligrapher h5, .stacks_in_38054Calligrapher h4, .stacks_in_38054Calligrapher h3, .stacks_in_38054Calligrapher h2, .stacks_in_38054Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38054Calligrapher, .stacks_in_38054Calligrapher h1, .stacks_in_38054Calligrapher h2, .stacks_in_38054Calligrapher h3, .stacks_in_38054Calligrapher h4, .stacks_in_38054Calligrapher h5, .stacks_in_38054Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38054targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38054Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38054Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38054Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38054Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38054 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_38055 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38058 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38062Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38062Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h6, .stacks_in_38062Calligrapher h5, .stacks_in_38062Calligrapher h4, .stacks_in_38062Calligrapher h3, .stacks_in_38062Calligrapher h2, .stacks_in_38062Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38062Calligrapher, .stacks_in_38062Calligrapher h1, .stacks_in_38062Calligrapher h2, .stacks_in_38062Calligrapher h3, .stacks_in_38062Calligrapher h4, .stacks_in_38062Calligrapher h5, .stacks_in_38062Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38062targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38062Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38062Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38062Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38062Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38062 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38065 {
	line-height: 2em;
}
#stacks_in_38068{}#stacks_in_38068 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38068 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38068 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38068 > .jack.width-static{width:500px}#stacks_in_38068 > .jack.width-flexible{width:100%}#stacks_in_38068 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38068 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38068 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38068 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38068 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38068 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38068 > .jack::after{border-radius:15px}#stacks_in_38068 > .jack.border-detailed-radius,#stacks_in_38068 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38068 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38068 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38068 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38068 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38068 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38068 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38068 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38068 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38068 > .jack.bg-image:not(.glass){}#stacks_in_38068 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38068 > .jack.bg-image.glass.after,#stacks_in_38068 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38068 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38068 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38068 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38068 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38068 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38068 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38068 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38068 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38068 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38068 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38068 > .jack.bg-image.glass.after,#stacks_in_38068 > .glass.jack.bg-image::after{}#stacks_in_38068 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38068 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38068 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38068 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38068 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38068 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38068 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38068 > .jack.peek-shadow::before,#stacks_in_38068 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38068 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38068 > .jack{overflow:hidden;}#stacks_in_38068 > .jack.height-static{height:500px}#stacks_in_38068 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38069 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38069 {
		display: none !important;
	}
}
#stacks_in_38070 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38070 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38070 #jwresp_col2_stacks_in_38070{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38070 #jwresp_col1_stacks_in_38070,#stacks_in_38070 #jwresp_col2_stacks_in_38070{width:100%;float:none;display:block}#stacks_in_38070 #jwresp_col1_stacks_in_38070{margin-bottom:15px}}

#stacks_in_38070 {
	padding:  20px;
}
#stacks_in_38071 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38071 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38071 .fluid-image.unlimited img{width:100% !important}#stacks_in_38071 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38071 .fluid-image.align-left img{float:left}#stacks_in_38071 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_38074 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_38074 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38075Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38075Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38075Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38075Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38075Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38075Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38075Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38075Calligrapher h6, .stacks_in_38075Calligrapher h5, .stacks_in_38075Calligrapher h4, .stacks_in_38075Calligrapher h3, .stacks_in_38075Calligrapher h2, .stacks_in_38075Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38075Calligrapher, .stacks_in_38075Calligrapher h1, .stacks_in_38075Calligrapher h2, .stacks_in_38075Calligrapher h3, .stacks_in_38075Calligrapher h4, .stacks_in_38075Calligrapher h5, .stacks_in_38075Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38075targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38075Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38075Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38075Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38075Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38075 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38076 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38079 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38083Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38083Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38083Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38083Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38083Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38083Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38083Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38083Calligrapher h6, .stacks_in_38083Calligrapher h5, .stacks_in_38083Calligrapher h4, .stacks_in_38083Calligrapher h3, .stacks_in_38083Calligrapher h2, .stacks_in_38083Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38083Calligrapher, .stacks_in_38083Calligrapher h1, .stacks_in_38083Calligrapher h2, .stacks_in_38083Calligrapher h3, .stacks_in_38083Calligrapher h4, .stacks_in_38083Calligrapher h5, .stacks_in_38083Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38083targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38083Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38083Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38083Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38083Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38083 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38086 {
	line-height: 2em;
}
#stacks_in_38089{}#stacks_in_38089 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38089 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38089 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38089 > .jack.width-static{width:500px}#stacks_in_38089 > .jack.width-flexible{width:100%}#stacks_in_38089 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38089 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38089 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38089 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38089 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38089 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38089 > .jack::after{border-radius:15px}#stacks_in_38089 > .jack.border-detailed-radius,#stacks_in_38089 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38089 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38089 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38089 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38089 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38089 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38089 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38089 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38089 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38089 > .jack.bg-image:not(.glass){}#stacks_in_38089 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38089 > .jack.bg-image.glass.after,#stacks_in_38089 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38089 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38089 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38089 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38089 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38089 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38089 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38089 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38089 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38089 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38089 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38089 > .jack.bg-image.glass.after,#stacks_in_38089 > .glass.jack.bg-image::after{}#stacks_in_38089 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38089 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38089 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38089 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38089 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38089 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38089 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38089 > .jack.peek-shadow::before,#stacks_in_38089 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38089 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38089 > .jack{overflow:hidden;}#stacks_in_38089 > .jack.height-static{height:500px}#stacks_in_38089 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_38090 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_38090 {
		display: none !important;
	}
}
#stacks_in_38091 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38091 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38091 #jwresp_col2_stacks_in_38091{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38091 #jwresp_col1_stacks_in_38091,#stacks_in_38091 #jwresp_col2_stacks_in_38091{width:100%;float:none;display:block}#stacks_in_38091 #jwresp_col1_stacks_in_38091{margin-bottom:15px}}

#stacks_in_38091 {
	padding:  20px;
}
#stacks_in_38092 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38092 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38092 .fluid-image.unlimited img{width:100% !important}#stacks_in_38092 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38092 .fluid-image.align-left img{float:left}#stacks_in_38092 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38095Calligrapher{			font-size: 110% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38095Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38095Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38095Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38095Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38095Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38095Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38095Calligrapher h6, .stacks_in_38095Calligrapher h5, .stacks_in_38095Calligrapher h4, .stacks_in_38095Calligrapher h3, .stacks_in_38095Calligrapher h2, .stacks_in_38095Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38095Calligrapher, .stacks_in_38095Calligrapher h1, .stacks_in_38095Calligrapher h2, .stacks_in_38095Calligrapher h3, .stacks_in_38095Calligrapher h4, .stacks_in_38095Calligrapher h5, .stacks_in_38095Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38095targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38095Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38095Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38095Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38095Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38095 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_38096 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38099 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38101 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38103 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38107Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38107Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38107Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38107Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38107Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38107Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38107Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38107Calligrapher h6, .stacks_in_38107Calligrapher h5, .stacks_in_38107Calligrapher h4, .stacks_in_38107Calligrapher h3, .stacks_in_38107Calligrapher h2, .stacks_in_38107Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38107Calligrapher, .stacks_in_38107Calligrapher h1, .stacks_in_38107Calligrapher h2, .stacks_in_38107Calligrapher h3, .stacks_in_38107Calligrapher h4, .stacks_in_38107Calligrapher h5, .stacks_in_38107Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38107targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38107Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38107Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38107Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38107Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38107 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38110 {
	line-height: 2em;
}
#stacks_in_38113{}#stacks_in_38113 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38113 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38113 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38113 > .jack.width-static{width:500px}#stacks_in_38113 > .jack.width-flexible{width:100%}#stacks_in_38113 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38113 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38113 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38113 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38113 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38113 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38113 > .jack::after{border-radius:15px}#stacks_in_38113 > .jack.border-detailed-radius,#stacks_in_38113 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38113 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38113 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38113 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38113 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38113 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38113 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38113 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38113 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38113 > .jack.bg-image:not(.glass){}#stacks_in_38113 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38113 > .jack.bg-image.glass.after,#stacks_in_38113 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38113 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38113 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38113 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38113 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38113 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38113 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38113 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38113 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38113 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38113 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38113 > .jack.bg-image.glass.after,#stacks_in_38113 > .glass.jack.bg-image::after{}#stacks_in_38113 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38113 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38113 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38113 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38113 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38113 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38113 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38113 > .jack.peek-shadow::before,#stacks_in_38113 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38113 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38113 > .jack{overflow:hidden;}#stacks_in_38113 > .jack.height-static{height:500px}#stacks_in_38113 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38114 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38114 {
		display: none !important;
	}
}
#stacks_in_38115 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38115 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38115 #jwresp_col2_stacks_in_38115{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38115 #jwresp_col1_stacks_in_38115,#stacks_in_38115 #jwresp_col2_stacks_in_38115{width:100%;float:none;display:block}#stacks_in_38115 #jwresp_col1_stacks_in_38115{margin-bottom:15px}}

#stacks_in_38115 {
	padding:  20px;
}
#stacks_in_38116 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38116 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38116 .fluid-image.unlimited img{width:100% !important}#stacks_in_38116 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38116 .fluid-image.align-left img{float:left}#stacks_in_38116 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_38119 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_38119 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38120Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38120Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38120Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38120Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38120Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38120Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38120Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38120Calligrapher h6, .stacks_in_38120Calligrapher h5, .stacks_in_38120Calligrapher h4, .stacks_in_38120Calligrapher h3, .stacks_in_38120Calligrapher h2, .stacks_in_38120Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38120Calligrapher, .stacks_in_38120Calligrapher h1, .stacks_in_38120Calligrapher h2, .stacks_in_38120Calligrapher h3, .stacks_in_38120Calligrapher h4, .stacks_in_38120Calligrapher h5, .stacks_in_38120Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38120targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38120Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38120Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38120Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38120Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38120 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38121 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38124 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38128Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38128Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38128Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38128Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38128Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38128Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38128Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38128Calligrapher h6, .stacks_in_38128Calligrapher h5, .stacks_in_38128Calligrapher h4, .stacks_in_38128Calligrapher h3, .stacks_in_38128Calligrapher h2, .stacks_in_38128Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38128Calligrapher, .stacks_in_38128Calligrapher h1, .stacks_in_38128Calligrapher h2, .stacks_in_38128Calligrapher h3, .stacks_in_38128Calligrapher h4, .stacks_in_38128Calligrapher h5, .stacks_in_38128Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38128targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38128Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38128Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38128Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38128Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38128 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38131 {
	line-height: 2em;
}
#stacks_in_38134{}#stacks_in_38134 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38134 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38134 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38134 > .jack.width-static{width:500px}#stacks_in_38134 > .jack.width-flexible{width:100%}#stacks_in_38134 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38134 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38134 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38134 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38134 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38134 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38134 > .jack::after{border-radius:15px}#stacks_in_38134 > .jack.border-detailed-radius,#stacks_in_38134 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38134 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38134 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38134 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38134 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38134 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38134 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38134 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38134 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38134 > .jack.bg-image:not(.glass){}#stacks_in_38134 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38134 > .jack.bg-image.glass.after,#stacks_in_38134 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38134 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38134 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38134 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38134 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38134 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38134 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38134 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38134 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38134 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38134 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38134 > .jack.bg-image.glass.after,#stacks_in_38134 > .glass.jack.bg-image::after{}#stacks_in_38134 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38134 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38134 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38134 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38134 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38134 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38134 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38134 > .jack.peek-shadow::before,#stacks_in_38134 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38134 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38134 > .jack{overflow:hidden;}#stacks_in_38134 > .jack.height-static{height:500px}#stacks_in_38134 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38135 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38135 {
		display: none !important;
	}
}
#stacks_in_38136 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38136 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38136 #jwresp_col2_stacks_in_38136{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38136 #jwresp_col1_stacks_in_38136,#stacks_in_38136 #jwresp_col2_stacks_in_38136{width:100%;float:none;display:block}#stacks_in_38136 #jwresp_col1_stacks_in_38136{margin-bottom:15px}}

#stacks_in_38136 {
	padding:  20px;
}
#stacks_in_38137 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38137 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38137 .fluid-image.unlimited img{width:100% !important}#stacks_in_38137 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38137 .fluid-image.align-left img{float:left}#stacks_in_38137 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_38140 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_38140 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38141Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38141Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38141Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38141Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38141Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38141Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38141Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38141Calligrapher h6, .stacks_in_38141Calligrapher h5, .stacks_in_38141Calligrapher h4, .stacks_in_38141Calligrapher h3, .stacks_in_38141Calligrapher h2, .stacks_in_38141Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38141Calligrapher, .stacks_in_38141Calligrapher h1, .stacks_in_38141Calligrapher h2, .stacks_in_38141Calligrapher h3, .stacks_in_38141Calligrapher h4, .stacks_in_38141Calligrapher h5, .stacks_in_38141Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38141targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38141Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38141Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38141Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38141Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38141 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38142 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38145 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38149Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38149Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38149Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38149Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38149Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38149Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38149Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38149Calligrapher h6, .stacks_in_38149Calligrapher h5, .stacks_in_38149Calligrapher h4, .stacks_in_38149Calligrapher h3, .stacks_in_38149Calligrapher h2, .stacks_in_38149Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38149Calligrapher, .stacks_in_38149Calligrapher h1, .stacks_in_38149Calligrapher h2, .stacks_in_38149Calligrapher h3, .stacks_in_38149Calligrapher h4, .stacks_in_38149Calligrapher h5, .stacks_in_38149Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38149targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38149Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38149Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38149Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38149Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38149 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38152 {
	line-height: 2em;
}
#stacks_in_38155{}#stacks_in_38155 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38155 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38155 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38155 > .jack.width-static{width:500px}#stacks_in_38155 > .jack.width-flexible{width:100%}#stacks_in_38155 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38155 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38155 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38155 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38155 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38155 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38155 > .jack::after{border-radius:15px}#stacks_in_38155 > .jack.border-detailed-radius,#stacks_in_38155 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38155 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38155 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38155 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38155 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38155 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38155 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38155 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38155 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38155 > .jack.bg-image:not(.glass){}#stacks_in_38155 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38155 > .jack.bg-image.glass.after,#stacks_in_38155 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38155 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38155 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38155 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38155 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38155 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38155 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38155 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38155 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38155 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38155 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38155 > .jack.bg-image.glass.after,#stacks_in_38155 > .glass.jack.bg-image::after{}#stacks_in_38155 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38155 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38155 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38155 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38155 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38155 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38155 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38155 > .jack.peek-shadow::before,#stacks_in_38155 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38155 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38155 > .jack{overflow:hidden;}#stacks_in_38155 > .jack.height-static{height:500px}#stacks_in_38155 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 95.00px;
}

#spacerStackstacks_in_38156 {
	height: 95.00px;
}




























@media print {
	#spacerStackstacks_in_38156 {
		display: none !important;
	}
}
#stacks_in_38157 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38157 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38157 #jwresp_col2_stacks_in_38157{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38157 #jwresp_col1_stacks_in_38157,#stacks_in_38157 #jwresp_col2_stacks_in_38157{width:100%;float:none;display:block}#stacks_in_38157 #jwresp_col1_stacks_in_38157{margin-bottom:15px}}

#stacks_in_38157 {
	padding:  18px;
}
#stacks_in_38158 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38158 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38158 .fluid-image.unlimited img{width:100% !important}#stacks_in_38158 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38158 .fluid-image.align-left img{float:left}#stacks_in_38158 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38161Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38161Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38161Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38161Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38161Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38161Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38161Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38161Calligrapher h6, .stacks_in_38161Calligrapher h5, .stacks_in_38161Calligrapher h4, .stacks_in_38161Calligrapher h3, .stacks_in_38161Calligrapher h2, .stacks_in_38161Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38161Calligrapher, .stacks_in_38161Calligrapher h1, .stacks_in_38161Calligrapher h2, .stacks_in_38161Calligrapher h3, .stacks_in_38161Calligrapher h4, .stacks_in_38161Calligrapher h5, .stacks_in_38161Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38161targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38161Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38161Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38161Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38161Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38161 {
	padding: 0px 20px 0px 20px;
}

#stacks_in_38162 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38165 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38169Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38169Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38169Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38169Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38169Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38169Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38169Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38169Calligrapher h6, .stacks_in_38169Calligrapher h5, .stacks_in_38169Calligrapher h4, .stacks_in_38169Calligrapher h3, .stacks_in_38169Calligrapher h2, .stacks_in_38169Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38169Calligrapher, .stacks_in_38169Calligrapher h1, .stacks_in_38169Calligrapher h2, .stacks_in_38169Calligrapher h3, .stacks_in_38169Calligrapher h4, .stacks_in_38169Calligrapher h5, .stacks_in_38169Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38169targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38169Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38169Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38169Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38169Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38169 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38172 {
	line-height: 2em;
}
#stacks_in_38175{}#stacks_in_38175 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38175 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38175 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38175 > .jack.width-static{width:500px}#stacks_in_38175 > .jack.width-flexible{width:100%}#stacks_in_38175 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38175 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38175 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38175 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38175 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38175 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38175 > .jack::after{border-radius:15px}#stacks_in_38175 > .jack.border-detailed-radius,#stacks_in_38175 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38175 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38175 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38175 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38175 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38175 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38175 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38175 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38175 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38175 > .jack.bg-image:not(.glass){}#stacks_in_38175 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38175 > .jack.bg-image.glass.after,#stacks_in_38175 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38175 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38175 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38175 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38175 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38175 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38175 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38175 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38175 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38175 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38175 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38175 > .jack.bg-image.glass.after,#stacks_in_38175 > .glass.jack.bg-image::after{}#stacks_in_38175 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38175 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38175 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38175 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38175 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38175 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38175 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38175 > .jack.peek-shadow::before,#stacks_in_38175 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38175 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38175 > .jack{overflow:hidden;}#stacks_in_38175 > .jack.height-static{height:500px}#stacks_in_38175 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 35.00px;
}

#spacerStackstacks_in_38176 {
	height: 35.00px;
}




























@media print {
	#spacerStackstacks_in_38176 {
		display: none !important;
	}
}
#stacks_in_38177 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38177 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38177 #jwresp_col2_stacks_in_38177{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38177 #jwresp_col1_stacks_in_38177,#stacks_in_38177 #jwresp_col2_stacks_in_38177{width:100%;float:none;display:block}#stacks_in_38177 #jwresp_col1_stacks_in_38177{margin-bottom:15px}}

#stacks_in_38177 {
	padding:  20px;
}
#stacks_in_38178 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38178 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38178 .fluid-image.unlimited img{width:100% !important}#stacks_in_38178 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38178 .fluid-image.align-left img{float:left}#stacks_in_38178 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_38181 {
	height: 120.00px;
}




























@media print {
	#spacerStackstacks_in_38181 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38182Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38182Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38182Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38182Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38182Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38182Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38182Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38182Calligrapher h6, .stacks_in_38182Calligrapher h5, .stacks_in_38182Calligrapher h4, .stacks_in_38182Calligrapher h3, .stacks_in_38182Calligrapher h2, .stacks_in_38182Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38182Calligrapher, .stacks_in_38182Calligrapher h1, .stacks_in_38182Calligrapher h2, .stacks_in_38182Calligrapher h3, .stacks_in_38182Calligrapher h4, .stacks_in_38182Calligrapher h5, .stacks_in_38182Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38182targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38182Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38182Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38182Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38182Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38182 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38183 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38186 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38190Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38190Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38190Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38190Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38190Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38190Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38190Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38190Calligrapher h6, .stacks_in_38190Calligrapher h5, .stacks_in_38190Calligrapher h4, .stacks_in_38190Calligrapher h3, .stacks_in_38190Calligrapher h2, .stacks_in_38190Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38190Calligrapher, .stacks_in_38190Calligrapher h1, .stacks_in_38190Calligrapher h2, .stacks_in_38190Calligrapher h3, .stacks_in_38190Calligrapher h4, .stacks_in_38190Calligrapher h5, .stacks_in_38190Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38190targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38190Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38190Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38190Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38190Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38191 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38193 {
	line-height: 2em;
}
#stacks_in_38196{}#stacks_in_38196 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38196 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38196 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38196 > .jack.width-static{width:500px}#stacks_in_38196 > .jack.width-flexible{width:100%}#stacks_in_38196 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38196 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38196 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38196 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38196 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38196 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38196 > .jack::after{border-radius:15px}#stacks_in_38196 > .jack.border-detailed-radius,#stacks_in_38196 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38196 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38196 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38196 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38196 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38196 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38196 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38196 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38196 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38196 > .jack.bg-image:not(.glass){}#stacks_in_38196 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38196 > .jack.bg-image.glass.after,#stacks_in_38196 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38196 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38196 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38196 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38196 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38196 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38196 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38196 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38196 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38196 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38196 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38196 > .jack.bg-image.glass.after,#stacks_in_38196 > .glass.jack.bg-image::after{}#stacks_in_38196 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38196 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38196 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38196 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38196 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38196 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38196 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38196 > .jack.peek-shadow::before,#stacks_in_38196 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38196 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38196 > .jack{overflow:hidden;}#stacks_in_38196 > .jack.height-static{height:500px}#stacks_in_38196 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_38197 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_38197 {
		display: none !important;
	}
}
#stacks_in_38198 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38198 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38198 #jwresp_col2_stacks_in_38198{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38198 #jwresp_col1_stacks_in_38198,#stacks_in_38198 #jwresp_col2_stacks_in_38198{width:100%;float:none;display:block}#stacks_in_38198 #jwresp_col1_stacks_in_38198{margin-bottom:15px}}

#stacks_in_38198 {
	padding:  20px;
}
#stacks_in_38199 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38199 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38199 .fluid-image.unlimited img{width:100% !important}#stacks_in_38199 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38199 .fluid-image.align-left img{float:left}#stacks_in_38199 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_38202 {
	height: 70.00px;
}




























@media print {
	#spacerStackstacks_in_38202 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38203Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38203Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38203Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38203Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38203Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38203Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38203Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38203Calligrapher h6, .stacks_in_38203Calligrapher h5, .stacks_in_38203Calligrapher h4, .stacks_in_38203Calligrapher h3, .stacks_in_38203Calligrapher h2, .stacks_in_38203Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38203Calligrapher, .stacks_in_38203Calligrapher h1, .stacks_in_38203Calligrapher h2, .stacks_in_38203Calligrapher h3, .stacks_in_38203Calligrapher h4, .stacks_in_38203Calligrapher h5, .stacks_in_38203Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38203targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38203Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38203Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38203Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38203Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38203 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38204 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38207 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38211Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38211Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38211Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38211Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38211Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38211Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38211Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38211Calligrapher h6, .stacks_in_38211Calligrapher h5, .stacks_in_38211Calligrapher h4, .stacks_in_38211Calligrapher h3, .stacks_in_38211Calligrapher h2, .stacks_in_38211Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38211Calligrapher, .stacks_in_38211Calligrapher h1, .stacks_in_38211Calligrapher h2, .stacks_in_38211Calligrapher h3, .stacks_in_38211Calligrapher h4, .stacks_in_38211Calligrapher h5, .stacks_in_38211Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38211targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38211Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38211Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38211Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38211Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38211 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38212 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38214 {
	line-height: 2em;
}
#stacks_in_38217{}#stacks_in_38217 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38217 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38217 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38217 > .jack.width-static{width:500px}#stacks_in_38217 > .jack.width-flexible{width:100%}#stacks_in_38217 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38217 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38217 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38217 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38217 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38217 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38217 > .jack::after{border-radius:15px}#stacks_in_38217 > .jack.border-detailed-radius,#stacks_in_38217 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38217 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38217 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38217 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38217 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38217 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38217 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38217 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38217 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38217 > .jack.bg-image:not(.glass){}#stacks_in_38217 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38217 > .jack.bg-image.glass.after,#stacks_in_38217 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38217 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38217 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38217 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38217 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38217 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38217 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38217 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38217 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38217 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38217 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38217 > .jack.bg-image.glass.after,#stacks_in_38217 > .glass.jack.bg-image::after{}#stacks_in_38217 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38217 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38217 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38217 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38217 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38217 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38217 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38217 > .jack.peek-shadow::before,#stacks_in_38217 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38217 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38217 > .jack{overflow:hidden;}#stacks_in_38217 > .jack.height-static{height:500px}#stacks_in_38217 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_38218 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_38218 {
		display: none !important;
	}
}
#stacks_in_38219 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38219 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38219 #jwresp_col2_stacks_in_38219{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38219 #jwresp_col1_stacks_in_38219,#stacks_in_38219 #jwresp_col2_stacks_in_38219{width:100%;float:none;display:block}#stacks_in_38219 #jwresp_col1_stacks_in_38219{margin-bottom:15px}}

#stacks_in_38219 {
	padding:  20px;
}
#stacks_in_38220 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38220 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38220 .fluid-image.unlimited img{width:100% !important}#stacks_in_38220 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38220 .fluid-image.align-left img{float:left}#stacks_in_38220 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_38223 {
	height: 70.00px;
}




























@media print {
	#spacerStackstacks_in_38223 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38224Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38224Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38224Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38224Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38224Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38224Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38224Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38224Calligrapher h6, .stacks_in_38224Calligrapher h5, .stacks_in_38224Calligrapher h4, .stacks_in_38224Calligrapher h3, .stacks_in_38224Calligrapher h2, .stacks_in_38224Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38224Calligrapher, .stacks_in_38224Calligrapher h1, .stacks_in_38224Calligrapher h2, .stacks_in_38224Calligrapher h3, .stacks_in_38224Calligrapher h4, .stacks_in_38224Calligrapher h5, .stacks_in_38224Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38224targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38224Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38224Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38224Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38224Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38224 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38225 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38228 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38232Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38232Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38232Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38232Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38232Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38232Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38232Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38232Calligrapher h6, .stacks_in_38232Calligrapher h5, .stacks_in_38232Calligrapher h4, .stacks_in_38232Calligrapher h3, .stacks_in_38232Calligrapher h2, .stacks_in_38232Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38232Calligrapher, .stacks_in_38232Calligrapher h1, .stacks_in_38232Calligrapher h2, .stacks_in_38232Calligrapher h3, .stacks_in_38232Calligrapher h4, .stacks_in_38232Calligrapher h5, .stacks_in_38232Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38232targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38232Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38232Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38232Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38232Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38232 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38233 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38235 {
	line-height: 2em;
}
#stacks_in_38238{}#stacks_in_38238 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38238 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38238 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38238 > .jack.width-static{width:500px}#stacks_in_38238 > .jack.width-flexible{width:100%}#stacks_in_38238 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38238 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38238 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38238 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38238 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38238 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38238 > .jack::after{border-radius:15px}#stacks_in_38238 > .jack.border-detailed-radius,#stacks_in_38238 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38238 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38238 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38238 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38238 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38238 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38238 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38238 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38238 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38238 > .jack.bg-image:not(.glass){}#stacks_in_38238 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38238 > .jack.bg-image.glass.after,#stacks_in_38238 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38238 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38238 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38238 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38238 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38238 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38238 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38238 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38238 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38238 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38238 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38238 > .jack.bg-image.glass.after,#stacks_in_38238 > .glass.jack.bg-image::after{}#stacks_in_38238 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38238 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38238 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38238 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38238 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38238 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38238 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38238 > .jack.peek-shadow::before,#stacks_in_38238 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38238 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38238 > .jack{overflow:hidden;}#stacks_in_38238 > .jack.height-static{height:500px}#stacks_in_38238 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_38239 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_38239 {
		display: none !important;
	}
}
#stacks_in_38240 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38240 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38240 #jwresp_col2_stacks_in_38240{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38240 #jwresp_col1_stacks_in_38240,#stacks_in_38240 #jwresp_col2_stacks_in_38240{width:100%;float:none;display:block}#stacks_in_38240 #jwresp_col1_stacks_in_38240{margin-bottom:15px}}

#stacks_in_38240 {
	padding:  20px;
}
#stacks_in_38241 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38241 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38241 .fluid-image.unlimited img{width:100% !important}#stacks_in_38241 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38241 .fluid-image.align-left img{float:left}#stacks_in_38241 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_38244 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_38244 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38245Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38245Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38245Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38245Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38245Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38245Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38245Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38245Calligrapher h6, .stacks_in_38245Calligrapher h5, .stacks_in_38245Calligrapher h4, .stacks_in_38245Calligrapher h3, .stacks_in_38245Calligrapher h2, .stacks_in_38245Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38245Calligrapher, .stacks_in_38245Calligrapher h1, .stacks_in_38245Calligrapher h2, .stacks_in_38245Calligrapher h3, .stacks_in_38245Calligrapher h4, .stacks_in_38245Calligrapher h5, .stacks_in_38245Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38245targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38245Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38245Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38245Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38245Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38245 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38246 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38249 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38251Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38251Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38251Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38251Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38251Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38251Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38251Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38251Calligrapher h6, .stacks_in_38251Calligrapher h5, .stacks_in_38251Calligrapher h4, .stacks_in_38251Calligrapher h3, .stacks_in_38251Calligrapher h2, .stacks_in_38251Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38251Calligrapher, .stacks_in_38251Calligrapher h1, .stacks_in_38251Calligrapher h2, .stacks_in_38251Calligrapher h3, .stacks_in_38251Calligrapher h4, .stacks_in_38251Calligrapher h5, .stacks_in_38251Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38251targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38251Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38251Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38251Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38251Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38251 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38252 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38254 {
	line-height: 2em;
}
#stacks_in_38257{}#stacks_in_38257 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38257 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38257 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38257 > .jack.width-static{width:500px}#stacks_in_38257 > .jack.width-flexible{width:100%}#stacks_in_38257 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38257 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38257 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38257 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38257 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38257 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38257 > .jack::after{border-radius:15px}#stacks_in_38257 > .jack.border-detailed-radius,#stacks_in_38257 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38257 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38257 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38257 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38257 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38257 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38257 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38257 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38257 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38257 > .jack.bg-image:not(.glass){}#stacks_in_38257 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38257 > .jack.bg-image.glass.after,#stacks_in_38257 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38257 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38257 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38257 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38257 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38257 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38257 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38257 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38257 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38257 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38257 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38257 > .jack.bg-image.glass.after,#stacks_in_38257 > .glass.jack.bg-image::after{}#stacks_in_38257 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38257 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38257 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38257 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38257 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38257 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38257 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38257 > .jack.peek-shadow::before,#stacks_in_38257 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38257 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38257 > .jack{overflow:hidden;}#stacks_in_38257 > .jack.height-static{height:500px}#stacks_in_38257 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38258 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38258 {
		display: none !important;
	}
}
#stacks_in_38259 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38259 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38259 #jwresp_col2_stacks_in_38259{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38259 #jwresp_col1_stacks_in_38259,#stacks_in_38259 #jwresp_col2_stacks_in_38259{width:100%;float:none;display:block}#stacks_in_38259 #jwresp_col1_stacks_in_38259{margin-bottom:15px}}

#stacks_in_38259 {
	padding:  20px;
}
#stacks_in_38260 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38260 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38260 .fluid-image.unlimited img{width:100% !important}#stacks_in_38260 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38260 .fluid-image.align-left img{float:left}#stacks_in_38260 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_38263 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_38263 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38264Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38264Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38264Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38264Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38264Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38264Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38264Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38264Calligrapher h6, .stacks_in_38264Calligrapher h5, .stacks_in_38264Calligrapher h4, .stacks_in_38264Calligrapher h3, .stacks_in_38264Calligrapher h2, .stacks_in_38264Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38264Calligrapher, .stacks_in_38264Calligrapher h1, .stacks_in_38264Calligrapher h2, .stacks_in_38264Calligrapher h3, .stacks_in_38264Calligrapher h4, .stacks_in_38264Calligrapher h5, .stacks_in_38264Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38264targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38264Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38264Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38264Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38264Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38264 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38265 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38268 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38270 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38272Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38272Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38272Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38272Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38272Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38272Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38272Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38272Calligrapher h6, .stacks_in_38272Calligrapher h5, .stacks_in_38272Calligrapher h4, .stacks_in_38272Calligrapher h3, .stacks_in_38272Calligrapher h2, .stacks_in_38272Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38272Calligrapher, .stacks_in_38272Calligrapher h1, .stacks_in_38272Calligrapher h2, .stacks_in_38272Calligrapher h3, .stacks_in_38272Calligrapher h4, .stacks_in_38272Calligrapher h5, .stacks_in_38272Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38272targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38272Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38272Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38272Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38272Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38273 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38275 {
	line-height: 2em;
}
#stacks_in_38278{}#stacks_in_38278 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38278 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38278 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38278 > .jack.width-static{width:500px}#stacks_in_38278 > .jack.width-flexible{width:100%}#stacks_in_38278 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38278 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38278 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38278 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38278 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38278 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38278 > .jack::after{border-radius:15px}#stacks_in_38278 > .jack.border-detailed-radius,#stacks_in_38278 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38278 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38278 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38278 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38278 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38278 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38278 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38278 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38278 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38278 > .jack.bg-image:not(.glass){}#stacks_in_38278 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38278 > .jack.bg-image.glass.after,#stacks_in_38278 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38278 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38278 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38278 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38278 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38278 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38278 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38278 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38278 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38278 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38278 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38278 > .jack.bg-image.glass.after,#stacks_in_38278 > .glass.jack.bg-image::after{}#stacks_in_38278 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38278 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38278 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38278 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38278 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38278 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38278 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38278 > .jack.peek-shadow::before,#stacks_in_38278 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38278 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38278 > .jack{overflow:hidden;}#stacks_in_38278 > .jack.height-static{height:500px}#stacks_in_38278 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_38279 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_38279 {
		display: none !important;
	}
}
#stacks_in_38280 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38280 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38280 #jwresp_col2_stacks_in_38280{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38280 #jwresp_col1_stacks_in_38280,#stacks_in_38280 #jwresp_col2_stacks_in_38280{width:100%;float:none;display:block}#stacks_in_38280 #jwresp_col1_stacks_in_38280{margin-bottom:15px}}

#stacks_in_38280 {
	padding:  20px;
}
#stacks_in_38281 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38281 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38281 .fluid-image.unlimited img{width:100% !important}#stacks_in_38281 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38281 .fluid-image.align-left img{float:left}#stacks_in_38281 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_38284 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_38284 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38285Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38285Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38285Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38285Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38285Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38285Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38285Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38285Calligrapher h6, .stacks_in_38285Calligrapher h5, .stacks_in_38285Calligrapher h4, .stacks_in_38285Calligrapher h3, .stacks_in_38285Calligrapher h2, .stacks_in_38285Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38285Calligrapher, .stacks_in_38285Calligrapher h1, .stacks_in_38285Calligrapher h2, .stacks_in_38285Calligrapher h3, .stacks_in_38285Calligrapher h4, .stacks_in_38285Calligrapher h5, .stacks_in_38285Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38285targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38285Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38285Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38285Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38285Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38285 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38286 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38289 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38291 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38293Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38293Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38293Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38293Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38293Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38293Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38293Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38293Calligrapher h6, .stacks_in_38293Calligrapher h5, .stacks_in_38293Calligrapher h4, .stacks_in_38293Calligrapher h3, .stacks_in_38293Calligrapher h2, .stacks_in_38293Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38293Calligrapher, .stacks_in_38293Calligrapher h1, .stacks_in_38293Calligrapher h2, .stacks_in_38293Calligrapher h3, .stacks_in_38293Calligrapher h4, .stacks_in_38293Calligrapher h5, .stacks_in_38293Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38293targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38293Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38293Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38293Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38293Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38293 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38294 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38296 {
	line-height: 2em;
}
#stacks_in_38299{}#stacks_in_38299 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38299 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38299 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38299 > .jack.width-static{width:500px}#stacks_in_38299 > .jack.width-flexible{width:100%}#stacks_in_38299 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38299 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38299 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38299 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38299 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38299 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38299 > .jack::after{border-radius:15px}#stacks_in_38299 > .jack.border-detailed-radius,#stacks_in_38299 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38299 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38299 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38299 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38299 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38299 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38299 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38299 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38299 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38299 > .jack.bg-image:not(.glass){}#stacks_in_38299 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38299 > .jack.bg-image.glass.after,#stacks_in_38299 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38299 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38299 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38299 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38299 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38299 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38299 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38299 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38299 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38299 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38299 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38299 > .jack.bg-image.glass.after,#stacks_in_38299 > .glass.jack.bg-image::after{}#stacks_in_38299 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38299 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38299 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38299 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38299 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38299 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38299 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38299 > .jack.peek-shadow::before,#stacks_in_38299 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38299 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38299 > .jack{overflow:hidden;}#stacks_in_38299 > .jack.height-static{height:500px}#stacks_in_38299 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_38300 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_38300 {
		display: none !important;
	}
}
#stacks_in_38301 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38301 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38301 #jwresp_col2_stacks_in_38301{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38301 #jwresp_col1_stacks_in_38301,#stacks_in_38301 #jwresp_col2_stacks_in_38301{width:100%;float:none;display:block}#stacks_in_38301 #jwresp_col1_stacks_in_38301{margin-bottom:15px}}

#stacks_in_38301 {
	padding:  20px;
}
#stacks_in_38302 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38302 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38302 .fluid-image.unlimited img{width:100% !important}#stacks_in_38302 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38302 .fluid-image.align-left img{float:left}#stacks_in_38302 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38305Calligrapher{			font-size: 110% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38305Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38305Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38305Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38305Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38305Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38305Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38305Calligrapher h6, .stacks_in_38305Calligrapher h5, .stacks_in_38305Calligrapher h4, .stacks_in_38305Calligrapher h3, .stacks_in_38305Calligrapher h2, .stacks_in_38305Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38305Calligrapher, .stacks_in_38305Calligrapher h1, .stacks_in_38305Calligrapher h2, .stacks_in_38305Calligrapher h3, .stacks_in_38305Calligrapher h4, .stacks_in_38305Calligrapher h5, .stacks_in_38305Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38305targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38305Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38305Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38305Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38305Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38305 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38306 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38309 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38311 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38313Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38313Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38313Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38313Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38313Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38313Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38313Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38313Calligrapher h6, .stacks_in_38313Calligrapher h5, .stacks_in_38313Calligrapher h4, .stacks_in_38313Calligrapher h3, .stacks_in_38313Calligrapher h2, .stacks_in_38313Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38313Calligrapher, .stacks_in_38313Calligrapher h1, .stacks_in_38313Calligrapher h2, .stacks_in_38313Calligrapher h3, .stacks_in_38313Calligrapher h4, .stacks_in_38313Calligrapher h5, .stacks_in_38313Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38313targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38313Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38313Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38313Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38313Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38313 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38314 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38316 {
	line-height: 2em;
}
#stacks_in_38319{}#stacks_in_38319 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38319 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38319 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38319 > .jack.width-static{width:500px}#stacks_in_38319 > .jack.width-flexible{width:100%}#stacks_in_38319 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38319 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38319 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38319 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38319 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38319 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38319 > .jack::after{border-radius:15px}#stacks_in_38319 > .jack.border-detailed-radius,#stacks_in_38319 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38319 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38319 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38319 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38319 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38319 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38319 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38319 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38319 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38319 > .jack.bg-image:not(.glass){}#stacks_in_38319 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38319 > .jack.bg-image.glass.after,#stacks_in_38319 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38319 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38319 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38319 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38319 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38319 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38319 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38319 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38319 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38319 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38319 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38319 > .jack.bg-image.glass.after,#stacks_in_38319 > .glass.jack.bg-image::after{}#stacks_in_38319 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38319 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38319 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38319 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38319 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38319 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38319 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38319 > .jack.peek-shadow::before,#stacks_in_38319 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38319 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38319 > .jack{overflow:hidden;}#stacks_in_38319 > .jack.height-static{height:500px}#stacks_in_38319 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_38320 {
	height: 60.00px;
}




























@media print {
	#spacerStackstacks_in_38320 {
		display: none !important;
	}
}
#stacks_in_38321 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38321 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38321 #jwresp_col2_stacks_in_38321{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38321 #jwresp_col1_stacks_in_38321,#stacks_in_38321 #jwresp_col2_stacks_in_38321{width:100%;float:none;display:block}#stacks_in_38321 #jwresp_col1_stacks_in_38321{margin-bottom:15px}}

#stacks_in_38321 {
	padding:  20px;
}
#stacks_in_38322 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38322 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38322 .fluid-image.unlimited img{width:100% !important}#stacks_in_38322 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38322 .fluid-image.align-left img{float:left}#stacks_in_38322 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_38325 {
	height: 60.00px;
}




























@media print {
	#spacerStackstacks_in_38325 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38326Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38326Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38326Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38326Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38326Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38326Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38326Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38326Calligrapher h6, .stacks_in_38326Calligrapher h5, .stacks_in_38326Calligrapher h4, .stacks_in_38326Calligrapher h3, .stacks_in_38326Calligrapher h2, .stacks_in_38326Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38326Calligrapher, .stacks_in_38326Calligrapher h1, .stacks_in_38326Calligrapher h2, .stacks_in_38326Calligrapher h3, .stacks_in_38326Calligrapher h4, .stacks_in_38326Calligrapher h5, .stacks_in_38326Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38326targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38326Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38326Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38326Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38326Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38326 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38327 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38330 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38332Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38332Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38332Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38332Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38332Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38332Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38332Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38332Calligrapher h6, .stacks_in_38332Calligrapher h5, .stacks_in_38332Calligrapher h4, .stacks_in_38332Calligrapher h3, .stacks_in_38332Calligrapher h2, .stacks_in_38332Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38332Calligrapher, .stacks_in_38332Calligrapher h1, .stacks_in_38332Calligrapher h2, .stacks_in_38332Calligrapher h3, .stacks_in_38332Calligrapher h4, .stacks_in_38332Calligrapher h5, .stacks_in_38332Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38332targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38332Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38332Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38332Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38332Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38332 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38333 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38335 {
	line-height: 2em;
}
#stacks_in_38338{}#stacks_in_38338 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38338 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38338 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38338 > .jack.width-static{width:500px}#stacks_in_38338 > .jack.width-flexible{width:100%}#stacks_in_38338 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38338 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38338 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38338 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38338 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38338 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38338 > .jack::after{border-radius:15px}#stacks_in_38338 > .jack.border-detailed-radius,#stacks_in_38338 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38338 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38338 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38338 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38338 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38338 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38338 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38338 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38338 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38338 > .jack.bg-image:not(.glass){}#stacks_in_38338 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38338 > .jack.bg-image.glass.after,#stacks_in_38338 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38338 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38338 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38338 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38338 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38338 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38338 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38338 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38338 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38338 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38338 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38338 > .jack.bg-image.glass.after,#stacks_in_38338 > .glass.jack.bg-image::after{}#stacks_in_38338 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38338 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38338 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38338 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38338 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38338 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38338 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38338 > .jack.peek-shadow::before,#stacks_in_38338 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38338 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38338 > .jack{overflow:hidden;}#stacks_in_38338 > .jack.height-static{height:500px}#stacks_in_38338 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38339 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38339 {
		display: none !important;
	}
}
#stacks_in_38340 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38340 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38340 #jwresp_col2_stacks_in_38340{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38340 #jwresp_col1_stacks_in_38340,#stacks_in_38340 #jwresp_col2_stacks_in_38340{width:100%;float:none;display:block}#stacks_in_38340 #jwresp_col1_stacks_in_38340{margin-bottom:15px}}

#stacks_in_38340 {
	padding:  20px;
}
#stacks_in_38341 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38341 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38341 .fluid-image.unlimited img{width:100% !important}#stacks_in_38341 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38341 .fluid-image.align-left img{float:left}#stacks_in_38341 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38344Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38344Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38344Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38344Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38344Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38344Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38344Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38344Calligrapher h6, .stacks_in_38344Calligrapher h5, .stacks_in_38344Calligrapher h4, .stacks_in_38344Calligrapher h3, .stacks_in_38344Calligrapher h2, .stacks_in_38344Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38344Calligrapher, .stacks_in_38344Calligrapher h1, .stacks_in_38344Calligrapher h2, .stacks_in_38344Calligrapher h3, .stacks_in_38344Calligrapher h4, .stacks_in_38344Calligrapher h5, .stacks_in_38344Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38344targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38344Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38344Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38344Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38344Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38344 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38345 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38348 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38350 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38352Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38352Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38352Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38352Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38352Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38352Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38352Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38352Calligrapher h6, .stacks_in_38352Calligrapher h5, .stacks_in_38352Calligrapher h4, .stacks_in_38352Calligrapher h3, .stacks_in_38352Calligrapher h2, .stacks_in_38352Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38352Calligrapher, .stacks_in_38352Calligrapher h1, .stacks_in_38352Calligrapher h2, .stacks_in_38352Calligrapher h3, .stacks_in_38352Calligrapher h4, .stacks_in_38352Calligrapher h5, .stacks_in_38352Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38352targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38352Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38352Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38352Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38352Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38352 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38355 {
	line-height: 2em;
}
#stacks_in_38358{}#stacks_in_38358 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38358 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38358 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38358 > .jack.width-static{width:500px}#stacks_in_38358 > .jack.width-flexible{width:100%}#stacks_in_38358 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38358 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38358 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38358 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38358 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38358 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38358 > .jack::after{border-radius:15px}#stacks_in_38358 > .jack.border-detailed-radius,#stacks_in_38358 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38358 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38358 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38358 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38358 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38358 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38358 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38358 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38358 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38358 > .jack.bg-image:not(.glass){}#stacks_in_38358 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38358 > .jack.bg-image.glass.after,#stacks_in_38358 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38358 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38358 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38358 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38358 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38358 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38358 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38358 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38358 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38358 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38358 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38358 > .jack.bg-image.glass.after,#stacks_in_38358 > .glass.jack.bg-image::after{}#stacks_in_38358 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38358 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38358 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38358 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38358 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38358 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38358 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38358 > .jack.peek-shadow::before,#stacks_in_38358 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38358 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38358 > .jack{overflow:hidden;}#stacks_in_38358 > .jack.height-static{height:500px}#stacks_in_38358 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38359 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38359 {
		display: none !important;
	}
}
#stacks_in_38360 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38360 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38360 #jwresp_col2_stacks_in_38360{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38360 #jwresp_col1_stacks_in_38360,#stacks_in_38360 #jwresp_col2_stacks_in_38360{width:100%;float:none;display:block}#stacks_in_38360 #jwresp_col1_stacks_in_38360{margin-bottom:15px}}

#stacks_in_38360 {
	padding:  20px;
}
#stacks_in_38361 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38361 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38361 .fluid-image.unlimited img{width:100% !important}#stacks_in_38361 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38361 .fluid-image.align-left img{float:left}#stacks_in_38361 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_38364 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_38364 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38365Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38365Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38365Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38365Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38365Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38365Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38365Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38365Calligrapher h6, .stacks_in_38365Calligrapher h5, .stacks_in_38365Calligrapher h4, .stacks_in_38365Calligrapher h3, .stacks_in_38365Calligrapher h2, .stacks_in_38365Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38365Calligrapher, .stacks_in_38365Calligrapher h1, .stacks_in_38365Calligrapher h2, .stacks_in_38365Calligrapher h3, .stacks_in_38365Calligrapher h4, .stacks_in_38365Calligrapher h5, .stacks_in_38365Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38365targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38365Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38365Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38365Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38365Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38365 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38366 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38369 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38371Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38371Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38371Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38371Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38371Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38371Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38371Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38371Calligrapher h6, .stacks_in_38371Calligrapher h5, .stacks_in_38371Calligrapher h4, .stacks_in_38371Calligrapher h3, .stacks_in_38371Calligrapher h2, .stacks_in_38371Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38371Calligrapher, .stacks_in_38371Calligrapher h1, .stacks_in_38371Calligrapher h2, .stacks_in_38371Calligrapher h3, .stacks_in_38371Calligrapher h4, .stacks_in_38371Calligrapher h5, .stacks_in_38371Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38371targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38371Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38371Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38371Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38371Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38371 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38372 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38374 {
	line-height: 2em;
}
#stacks_in_38377{}#stacks_in_38377 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38377 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38377 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38377 > .jack.width-static{width:500px}#stacks_in_38377 > .jack.width-flexible{width:100%}#stacks_in_38377 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38377 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38377 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38377 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38377 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38377 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38377 > .jack::after{border-radius:15px}#stacks_in_38377 > .jack.border-detailed-radius,#stacks_in_38377 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38377 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38377 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38377 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38377 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38377 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38377 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38377 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38377 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38377 > .jack.bg-image:not(.glass){}#stacks_in_38377 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38377 > .jack.bg-image.glass.after,#stacks_in_38377 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38377 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38377 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38377 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38377 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38377 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38377 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38377 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38377 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38377 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38377 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38377 > .jack.bg-image.glass.after,#stacks_in_38377 > .glass.jack.bg-image::after{}#stacks_in_38377 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38377 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38377 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38377 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38377 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38377 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38377 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38377 > .jack.peek-shadow::before,#stacks_in_38377 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38377 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38377 > .jack{overflow:hidden;}#stacks_in_38377 > .jack.height-static{height:500px}#stacks_in_38377 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_38378 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_38378 {
		display: none !important;
	}
}
#stacks_in_38379 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38379 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38379 #jwresp_col2_stacks_in_38379{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38379 #jwresp_col1_stacks_in_38379,#stacks_in_38379 #jwresp_col2_stacks_in_38379{width:100%;float:none;display:block}#stacks_in_38379 #jwresp_col1_stacks_in_38379{margin-bottom:15px}}

#stacks_in_38379 {
	padding:  20px;
}
#stacks_in_38380 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38380 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38380 .fluid-image.unlimited img{width:100% !important}#stacks_in_38380 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38380 .fluid-image.align-left img{float:left}#stacks_in_38380 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_38383 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_38383 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38384Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38384Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38384Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38384Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38384Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38384Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38384Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38384Calligrapher h6, .stacks_in_38384Calligrapher h5, .stacks_in_38384Calligrapher h4, .stacks_in_38384Calligrapher h3, .stacks_in_38384Calligrapher h2, .stacks_in_38384Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38384Calligrapher, .stacks_in_38384Calligrapher h1, .stacks_in_38384Calligrapher h2, .stacks_in_38384Calligrapher h3, .stacks_in_38384Calligrapher h4, .stacks_in_38384Calligrapher h5, .stacks_in_38384Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38384targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38384Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38384Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38384Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38384Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38384 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38385 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38388 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38390 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38392Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38392Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38392Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38392Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38392Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38392Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38392Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38392Calligrapher h6, .stacks_in_38392Calligrapher h5, .stacks_in_38392Calligrapher h4, .stacks_in_38392Calligrapher h3, .stacks_in_38392Calligrapher h2, .stacks_in_38392Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38392Calligrapher, .stacks_in_38392Calligrapher h1, .stacks_in_38392Calligrapher h2, .stacks_in_38392Calligrapher h3, .stacks_in_38392Calligrapher h4, .stacks_in_38392Calligrapher h5, .stacks_in_38392Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38392targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38392Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38392Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38392Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38392Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38392 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38393 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38395 {
	line-height: 2em;
}
#stacks_in_38398{}#stacks_in_38398 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38398 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38398 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38398 > .jack.width-static{width:500px}#stacks_in_38398 > .jack.width-flexible{width:100%}#stacks_in_38398 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38398 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38398 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38398 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38398 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38398 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38398 > .jack::after{border-radius:15px}#stacks_in_38398 > .jack.border-detailed-radius,#stacks_in_38398 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38398 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38398 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38398 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38398 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38398 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38398 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38398 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38398 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38398 > .jack.bg-image:not(.glass){}#stacks_in_38398 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38398 > .jack.bg-image.glass.after,#stacks_in_38398 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38398 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38398 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38398 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38398 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38398 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38398 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38398 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38398 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38398 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38398 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38398 > .jack.bg-image.glass.after,#stacks_in_38398 > .glass.jack.bg-image::after{}#stacks_in_38398 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38398 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38398 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38398 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38398 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38398 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38398 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38398 > .jack.peek-shadow::before,#stacks_in_38398 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38398 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38398 > .jack{overflow:hidden;}#stacks_in_38398 > .jack.height-static{height:500px}#stacks_in_38398 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_38399 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_38399 {
		display: none !important;
	}
}
#stacks_in_38400 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38400 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38400 #jwresp_col2_stacks_in_38400{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38400 #jwresp_col1_stacks_in_38400,#stacks_in_38400 #jwresp_col2_stacks_in_38400{width:100%;float:none;display:block}#stacks_in_38400 #jwresp_col1_stacks_in_38400{margin-bottom:15px}}

#stacks_in_38400 {
	padding:  20px;
}
#stacks_in_38401 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38401 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38401 .fluid-image.unlimited img{width:100% !important}#stacks_in_38401 .fluid-image.define_max img{width:100% !important;max-width:250px !important}#stacks_in_38401 .fluid-image.align-left img{float:left}#stacks_in_38401 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_38404 {
	height: 120.00px;
}




























@media print {
	#spacerStackstacks_in_38404 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38405Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38405Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38405Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38405Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38405Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38405Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38405Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38405Calligrapher h6, .stacks_in_38405Calligrapher h5, .stacks_in_38405Calligrapher h4, .stacks_in_38405Calligrapher h3, .stacks_in_38405Calligrapher h2, .stacks_in_38405Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38405Calligrapher, .stacks_in_38405Calligrapher h1, .stacks_in_38405Calligrapher h2, .stacks_in_38405Calligrapher h3, .stacks_in_38405Calligrapher h4, .stacks_in_38405Calligrapher h5, .stacks_in_38405Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38405targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38405Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38405Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38405Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38405Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38405 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38406 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38409 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38411 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38413Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38413Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38413Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38413Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38413Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38413Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38413Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38413Calligrapher h6, .stacks_in_38413Calligrapher h5, .stacks_in_38413Calligrapher h4, .stacks_in_38413Calligrapher h3, .stacks_in_38413Calligrapher h2, .stacks_in_38413Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38413Calligrapher, .stacks_in_38413Calligrapher h1, .stacks_in_38413Calligrapher h2, .stacks_in_38413Calligrapher h3, .stacks_in_38413Calligrapher h4, .stacks_in_38413Calligrapher h5, .stacks_in_38413Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38413targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38413Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38413Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38413Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38413Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38413 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38414 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38416 {
	line-height: 2em;
}
#stacks_in_38419{}#stacks_in_38419 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38419 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38419 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38419 > .jack.width-static{width:500px}#stacks_in_38419 > .jack.width-flexible{width:100%}#stacks_in_38419 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38419 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38419 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38419 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38419 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38419 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38419 > .jack::after{border-radius:15px}#stacks_in_38419 > .jack.border-detailed-radius,#stacks_in_38419 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38419 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38419 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38419 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38419 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38419 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38419 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38419 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38419 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38419 > .jack.bg-image:not(.glass){}#stacks_in_38419 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38419 > .jack.bg-image.glass.after,#stacks_in_38419 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38419 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38419 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38419 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38419 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38419 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38419 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38419 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38419 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38419 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38419 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38419 > .jack.bg-image.glass.after,#stacks_in_38419 > .glass.jack.bg-image::after{}#stacks_in_38419 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38419 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38419 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38419 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38419 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38419 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38419 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38419 > .jack.peek-shadow::before,#stacks_in_38419 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38419 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38419 > .jack{overflow:hidden;}#stacks_in_38419 > .jack.height-static{height:500px}#stacks_in_38419 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_38420 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_38420 {
		display: none !important;
	}
}
#stacks_in_38421 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38421 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38421 #jwresp_col2_stacks_in_38421{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38421 #jwresp_col1_stacks_in_38421,#stacks_in_38421 #jwresp_col2_stacks_in_38421{width:100%;float:none;display:block}#stacks_in_38421 #jwresp_col1_stacks_in_38421{margin-bottom:15px}}

#stacks_in_38421 {
	padding:  20px;
}
#stacks_in_38422 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38422 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38422 .fluid-image.unlimited img{width:100% !important}#stacks_in_38422 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38422 .fluid-image.align-left img{float:left}#stacks_in_38422 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_38425 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_38425 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38426Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38426Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38426Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38426Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38426Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38426Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38426Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38426Calligrapher h6, .stacks_in_38426Calligrapher h5, .stacks_in_38426Calligrapher h4, .stacks_in_38426Calligrapher h3, .stacks_in_38426Calligrapher h2, .stacks_in_38426Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38426Calligrapher, .stacks_in_38426Calligrapher h1, .stacks_in_38426Calligrapher h2, .stacks_in_38426Calligrapher h3, .stacks_in_38426Calligrapher h4, .stacks_in_38426Calligrapher h5, .stacks_in_38426Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38426targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38426Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38426Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38426Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38426Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38426 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38427 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38430 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38432 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38434Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38434Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38434Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38434Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38434Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38434Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38434Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38434Calligrapher h6, .stacks_in_38434Calligrapher h5, .stacks_in_38434Calligrapher h4, .stacks_in_38434Calligrapher h3, .stacks_in_38434Calligrapher h2, .stacks_in_38434Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38434Calligrapher, .stacks_in_38434Calligrapher h1, .stacks_in_38434Calligrapher h2, .stacks_in_38434Calligrapher h3, .stacks_in_38434Calligrapher h4, .stacks_in_38434Calligrapher h5, .stacks_in_38434Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38434targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38434Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38434Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38434Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38434Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38434 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38435 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38437 {
	line-height: 2em;
}
#stacks_in_38440{}#stacks_in_38440 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38440 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38440 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38440 > .jack.width-static{width:500px}#stacks_in_38440 > .jack.width-flexible{width:100%}#stacks_in_38440 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38440 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38440 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38440 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38440 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38440 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38440 > .jack::after{border-radius:15px}#stacks_in_38440 > .jack.border-detailed-radius,#stacks_in_38440 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38440 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38440 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38440 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38440 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38440 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38440 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38440 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38440 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38440 > .jack.bg-image:not(.glass){}#stacks_in_38440 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38440 > .jack.bg-image.glass.after,#stacks_in_38440 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38440 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38440 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38440 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38440 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38440 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38440 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38440 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38440 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38440 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38440 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38440 > .jack.bg-image.glass.after,#stacks_in_38440 > .glass.jack.bg-image::after{}#stacks_in_38440 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38440 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38440 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38440 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38440 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38440 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38440 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38440 > .jack.peek-shadow::before,#stacks_in_38440 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38440 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38440 > .jack{overflow:hidden;}#stacks_in_38440 > .jack.height-static{height:500px}#stacks_in_38440 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38441 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38441 {
		display: none !important;
	}
}
#stacks_in_38442 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38442 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38442 #jwresp_col2_stacks_in_38442{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38442 #jwresp_col1_stacks_in_38442,#stacks_in_38442 #jwresp_col2_stacks_in_38442{width:100%;float:none;display:block}#stacks_in_38442 #jwresp_col1_stacks_in_38442{margin-bottom:15px}}

#stacks_in_38442 {
	padding:  20px;
}
#stacks_in_38443 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38443 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38443 .fluid-image.unlimited img{width:100% !important}#stacks_in_38443 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38443 .fluid-image.align-left img{float:left}#stacks_in_38443 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38446Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38446Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38446Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38446Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38446Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38446Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38446Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38446Calligrapher h6, .stacks_in_38446Calligrapher h5, .stacks_in_38446Calligrapher h4, .stacks_in_38446Calligrapher h3, .stacks_in_38446Calligrapher h2, .stacks_in_38446Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38446Calligrapher, .stacks_in_38446Calligrapher h1, .stacks_in_38446Calligrapher h2, .stacks_in_38446Calligrapher h3, .stacks_in_38446Calligrapher h4, .stacks_in_38446Calligrapher h5, .stacks_in_38446Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38446targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38446Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38446Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38446Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38446Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38446 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38447 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38450 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38452 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38454Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38454Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38454Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38454Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38454Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38454Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38454Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38454Calligrapher h6, .stacks_in_38454Calligrapher h5, .stacks_in_38454Calligrapher h4, .stacks_in_38454Calligrapher h3, .stacks_in_38454Calligrapher h2, .stacks_in_38454Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38454Calligrapher, .stacks_in_38454Calligrapher h1, .stacks_in_38454Calligrapher h2, .stacks_in_38454Calligrapher h3, .stacks_in_38454Calligrapher h4, .stacks_in_38454Calligrapher h5, .stacks_in_38454Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38454targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38454Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38454Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38454Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38454Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38454 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38455 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38457 {
	line-height: 2em;
}
#stacks_in_38460{}#stacks_in_38460 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38460 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38460 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38460 > .jack.width-static{width:500px}#stacks_in_38460 > .jack.width-flexible{width:100%}#stacks_in_38460 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38460 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38460 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38460 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38460 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38460 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38460 > .jack::after{border-radius:15px}#stacks_in_38460 > .jack.border-detailed-radius,#stacks_in_38460 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38460 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38460 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38460 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38460 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38460 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38460 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38460 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38460 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38460 > .jack.bg-image:not(.glass){}#stacks_in_38460 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38460 > .jack.bg-image.glass.after,#stacks_in_38460 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38460 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38460 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38460 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38460 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38460 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38460 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38460 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38460 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38460 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38460 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38460 > .jack.bg-image.glass.after,#stacks_in_38460 > .glass.jack.bg-image::after{}#stacks_in_38460 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38460 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38460 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38460 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38460 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38460 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38460 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38460 > .jack.peek-shadow::before,#stacks_in_38460 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38460 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38460 > .jack{overflow:hidden;}#stacks_in_38460 > .jack.height-static{height:500px}#stacks_in_38460 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_38461 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_38461 {
		display: none !important;
	}
}
#stacks_in_38462 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38462 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38462 #jwresp_col2_stacks_in_38462{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38462 #jwresp_col1_stacks_in_38462,#stacks_in_38462 #jwresp_col2_stacks_in_38462{width:100%;float:none;display:block}#stacks_in_38462 #jwresp_col1_stacks_in_38462{margin-bottom:15px}}

#stacks_in_38462 {
	padding:  20px;
}
#stacks_in_38012 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38012 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38012 .fluid-image.unlimited img{width:100% !important}#stacks_in_38012 .fluid-image.define_max img{width:100% !important;max-width:250px !important}#stacks_in_38012 .fluid-image.align-left img{float:left}#stacks_in_38012 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 130.00px;
}

#spacerStackstacks_in_38465 {
	height: 130.00px;
}




























@media print {
	#spacerStackstacks_in_38465 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38466Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38466Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38466Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38466Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38466Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38466Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38466Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38466Calligrapher h6, .stacks_in_38466Calligrapher h5, .stacks_in_38466Calligrapher h4, .stacks_in_38466Calligrapher h3, .stacks_in_38466Calligrapher h2, .stacks_in_38466Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38466Calligrapher, .stacks_in_38466Calligrapher h1, .stacks_in_38466Calligrapher h2, .stacks_in_38466Calligrapher h3, .stacks_in_38466Calligrapher h4, .stacks_in_38466Calligrapher h5, .stacks_in_38466Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38466targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38466Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38466Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38466Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38466Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38466 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38467 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38470 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38472Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38472Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38472Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38472Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38472Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38472Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38472Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38472Calligrapher h6, .stacks_in_38472Calligrapher h5, .stacks_in_38472Calligrapher h4, .stacks_in_38472Calligrapher h3, .stacks_in_38472Calligrapher h2, .stacks_in_38472Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38472Calligrapher, .stacks_in_38472Calligrapher h1, .stacks_in_38472Calligrapher h2, .stacks_in_38472Calligrapher h3, .stacks_in_38472Calligrapher h4, .stacks_in_38472Calligrapher h5, .stacks_in_38472Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38472targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38472Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38472Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38472Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38472Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38472 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38473 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38475 {
	line-height: 2em;
}
#stacks_in_33694{padding-left:0px;padding-right:0px;}#stacks_in_33694 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_33694 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_33694 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_33694 > .jack.width-static{width:500px}#stacks_in_33694 > .jack.width-flexible{width:100%}#stacks_in_33694 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_33694 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33694 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_33694 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_33694 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_33694 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_33694 > .jack::after{border-radius:0px}#stacks_in_33694 > .jack.border-detailed-radius,#stacks_in_33694 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_33694 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_33694 > .jack.bg-color{background-color:#89C5FF}#stacks_in_33694 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_33694 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33694 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_33694 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_33694 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_33694 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33694 > .jack.bg-image:not(.glass){}#stacks_in_33694 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_33694 > .jack.bg-image.glass.after,#stacks_in_33694 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_33694 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_33694 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_33694 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_33694 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_33694 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_33694 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_33694 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33694 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_33694 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_33694 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_33694 > .jack.bg-image.glass.after,#stacks_in_33694 > .glass.jack.bg-image::after{}#stacks_in_33694 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_33694 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_33694 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_33694 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33694 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_33694 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_33694 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_33694 > .jack.peek-shadow::before,#stacks_in_33694 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_33694 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_33694 > .jack{overflow:visible;}#stacks_in_33694 > .jack.height-static{height:100px}#stacks_in_33694 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_34330{}#stacks_in_34330 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_34330 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_34330 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_34330 > .jack.width-static{width:500px}#stacks_in_34330 > .jack.width-flexible{width:100%}#stacks_in_34330 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_34330 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34330 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_34330 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_34330 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_34330 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_34330 > .jack::after{border-radius:15px}#stacks_in_34330 > .jack.border-detailed-radius,#stacks_in_34330 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_34330 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_34330 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_34330 > .jack.bg-gradient{background-color:#AFE9BB}#stacks_in_34330 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34330 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_34330 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_34330 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_34330 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34330 > .jack.bg-image:not(.glass){}#stacks_in_34330 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_34330 > .jack.bg-image.glass.after,#stacks_in_34330 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_34330 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_34330 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_34330 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_34330 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_34330 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_34330 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_34330 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34330 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_34330 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_34330 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_34330 > .jack.bg-image.glass.after,#stacks_in_34330 > .glass.jack.bg-image::after{}#stacks_in_34330 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_34330 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_34330 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_34330 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34330 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_34330 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_34330 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_34330 > .jack.peek-shadow::before,#stacks_in_34330 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_34330 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_34330 > .jack{overflow:hidden;}#stacks_in_34330 > .jack.height-static{height:100px}#stacks_in_34330 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_34331Calligrapher{			font-size: 100% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_34331Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_34331Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_34331Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_34331Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_34331Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_34331Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_34331Calligrapher h6, .stacks_in_34331Calligrapher h5, .stacks_in_34331Calligrapher h4, .stacks_in_34331Calligrapher h3, .stacks_in_34331Calligrapher h2, .stacks_in_34331Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_34331Calligrapher, .stacks_in_34331Calligrapher h1, .stacks_in_34331Calligrapher h2, .stacks_in_34331Calligrapher h3, .stacks_in_34331Calligrapher h4, .stacks_in_34331Calligrapher h5, .stacks_in_34331Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_34331Calligrapher, .stacks_in_34331Calligrapher h1, .stacks_in_34331Calligrapher h2, .stacks_in_34331Calligrapher h3, .stacks_in_34331Calligrapher h4, .stacks_in_34331Calligrapher h5, .stacks_in_34331Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_34331targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_34331Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_34331Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_34331Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_34331Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_34331 {
	padding: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_34332x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_34332x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_34332x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_34333 {
	font-weight: lighter;
}
#stacks_in_38478{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_38478 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_38478{visibility:hidden}#stacks_in_38478 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_38478 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_38478 .cycler_nav{cursor:pointer;z-index:101;display:block;width:20px;height:20px;position:absolute;background:url(../ueberblick_buecher_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:30%;}#stacks_in_38478 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_38478 .cycler_nav.prev:hover{background-position:0px -20px}#stacks_in_38478 .cycler_nav.prev:active{background-position:0px -40px}#stacks_in_38478 .cycler_nav.next{right:0px;background-position:0px -60px}#stacks_in_38478 .cycler_nav.next:hover{background-position:0px -80px}#stacks_in_38478 .cycler_nav.next:active{background-position:0px -100px}
#stacks_in_38479{}#stacks_in_38479 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38479 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38479 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38479 > .jack.width-static{width:500px}#stacks_in_38479 > .jack.width-flexible{width:100%}#stacks_in_38479 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38479 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38479 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38479 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38479 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38479 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38479 > .jack::after{border-radius:15px}#stacks_in_38479 > .jack.border-detailed-radius,#stacks_in_38479 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38479 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38479 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38479 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38479 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38479 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38479 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38479 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38479 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38479 > .jack.bg-image:not(.glass){}#stacks_in_38479 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38479 > .jack.bg-image.glass.after,#stacks_in_38479 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38479 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38479 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38479 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38479 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38479 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38479 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38479 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38479 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38479 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38479 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38479 > .jack.bg-image.glass.after,#stacks_in_38479 > .glass.jack.bg-image::after{}#stacks_in_38479 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38479 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38479 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38479 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38479 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38479 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38479 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38479 > .jack.peek-shadow::before,#stacks_in_38479 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38479 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38479 > .jack{overflow:hidden;}#stacks_in_38479 > .jack.height-static{height:100px}#stacks_in_38479 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38481 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38481 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38481 .fluid-image.unlimited img{width:100% !important}#stacks_in_38481 .fluid-image.define_max img{width:100% !important;max-width:400px !important}#stacks_in_38481 .fluid-image.align-left img{float:left}#stacks_in_38481 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38484Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38484Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38484Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38484Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38484Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38484Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38484Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38484Calligrapher h6, .stacks_in_38484Calligrapher h5, .stacks_in_38484Calligrapher h4, .stacks_in_38484Calligrapher h3, .stacks_in_38484Calligrapher h2, .stacks_in_38484Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38484Calligrapher, .stacks_in_38484Calligrapher h1, .stacks_in_38484Calligrapher h2, .stacks_in_38484Calligrapher h3, .stacks_in_38484Calligrapher h4, .stacks_in_38484Calligrapher h5, .stacks_in_38484Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38484targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38484Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38484Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38484Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38484Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38484 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38485 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38488 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38490 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38492Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38492Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38492Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38492Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38492Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38492Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38492Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38492Calligrapher h6, .stacks_in_38492Calligrapher h5, .stacks_in_38492Calligrapher h4, .stacks_in_38492Calligrapher h3, .stacks_in_38492Calligrapher h2, .stacks_in_38492Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38492Calligrapher, .stacks_in_38492Calligrapher h1, .stacks_in_38492Calligrapher h2, .stacks_in_38492Calligrapher h3, .stacks_in_38492Calligrapher h4, .stacks_in_38492Calligrapher h5, .stacks_in_38492Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38492targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38492Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38492Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38492Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38492Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38492 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38495 {
	line-height: 2em;
}
#stacks_in_38496{}#stacks_in_38496 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38496 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38496 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38496 > .jack.width-static{width:500px}#stacks_in_38496 > .jack.width-flexible{width:100%}#stacks_in_38496 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38496 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38496 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38496 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38496 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38496 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38496 > .jack::after{border-radius:15px}#stacks_in_38496 > .jack.border-detailed-radius,#stacks_in_38496 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38496 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38496 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38496 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38496 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38496 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38496 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38496 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38496 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38496 > .jack.bg-image:not(.glass){}#stacks_in_38496 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38496 > .jack.bg-image.glass.after,#stacks_in_38496 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38496 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38496 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38496 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38496 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38496 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38496 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38496 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38496 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38496 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38496 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38496 > .jack.bg-image.glass.after,#stacks_in_38496 > .glass.jack.bg-image::after{}#stacks_in_38496 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38496 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38496 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38496 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38496 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38496 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38496 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38496 > .jack.peek-shadow::before,#stacks_in_38496 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38496 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38496 > .jack{overflow:hidden;}#stacks_in_38496 > .jack.height-static{height:100px}#stacks_in_38496 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38497 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38497 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38497 .fluid-image.unlimited img{width:100% !important}#stacks_in_38497 .fluid-image.define_max img{width:100% !important;max-width:400px !important}#stacks_in_38497 .fluid-image.align-left img{float:left}#stacks_in_38497 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38500Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38500Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38500Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38500Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38500Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38500Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38500Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38500Calligrapher h6, .stacks_in_38500Calligrapher h5, .stacks_in_38500Calligrapher h4, .stacks_in_38500Calligrapher h3, .stacks_in_38500Calligrapher h2, .stacks_in_38500Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38500Calligrapher, .stacks_in_38500Calligrapher h1, .stacks_in_38500Calligrapher h2, .stacks_in_38500Calligrapher h3, .stacks_in_38500Calligrapher h4, .stacks_in_38500Calligrapher h5, .stacks_in_38500Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38500targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38500Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38500Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38500Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38500Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38500 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38501 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38504 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38508Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38508Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38508Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38508Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38508Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38508Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38508Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38508Calligrapher h6, .stacks_in_38508Calligrapher h5, .stacks_in_38508Calligrapher h4, .stacks_in_38508Calligrapher h3, .stacks_in_38508Calligrapher h2, .stacks_in_38508Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38508Calligrapher, .stacks_in_38508Calligrapher h1, .stacks_in_38508Calligrapher h2, .stacks_in_38508Calligrapher h3, .stacks_in_38508Calligrapher h4, .stacks_in_38508Calligrapher h5, .stacks_in_38508Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38508targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38508Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38508Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38508Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38508Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38508 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38511 {
	line-height: 2em;
}
#stacks_in_38512{}#stacks_in_38512 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38512 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38512 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38512 > .jack.width-static{width:500px}#stacks_in_38512 > .jack.width-flexible{width:100%}#stacks_in_38512 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38512 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38512 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38512 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38512 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38512 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38512 > .jack::after{border-radius:15px}#stacks_in_38512 > .jack.border-detailed-radius,#stacks_in_38512 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38512 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38512 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38512 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38512 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38512 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38512 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38512 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38512 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38512 > .jack.bg-image:not(.glass){}#stacks_in_38512 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38512 > .jack.bg-image.glass.after,#stacks_in_38512 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38512 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38512 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38512 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38512 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38512 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38512 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38512 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38512 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38512 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38512 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38512 > .jack.bg-image.glass.after,#stacks_in_38512 > .glass.jack.bg-image::after{}#stacks_in_38512 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38512 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38512 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38512 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38512 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38512 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38512 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38512 > .jack.peek-shadow::before,#stacks_in_38512 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38512 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38512 > .jack{overflow:hidden;}#stacks_in_38512 > .jack.height-static{height:100px}#stacks_in_38512 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38513 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38513 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38513 .fluid-image.unlimited img{width:100% !important}#stacks_in_38513 .fluid-image.define_max img{width:100% !important;max-width:600px !important}#stacks_in_38513 .fluid-image.align-left img{float:left}#stacks_in_38513 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38516Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38516Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38516Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38516Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38516Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38516Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38516Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38516Calligrapher h6, .stacks_in_38516Calligrapher h5, .stacks_in_38516Calligrapher h4, .stacks_in_38516Calligrapher h3, .stacks_in_38516Calligrapher h2, .stacks_in_38516Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38516Calligrapher, .stacks_in_38516Calligrapher h1, .stacks_in_38516Calligrapher h2, .stacks_in_38516Calligrapher h3, .stacks_in_38516Calligrapher h4, .stacks_in_38516Calligrapher h5, .stacks_in_38516Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38516targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38516Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38516Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38516Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38516Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38516 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38517 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38520 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38524Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38524Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38524Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38524Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38524Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38524Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38524Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38524Calligrapher h6, .stacks_in_38524Calligrapher h5, .stacks_in_38524Calligrapher h4, .stacks_in_38524Calligrapher h3, .stacks_in_38524Calligrapher h2, .stacks_in_38524Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38524Calligrapher, .stacks_in_38524Calligrapher h1, .stacks_in_38524Calligrapher h2, .stacks_in_38524Calligrapher h3, .stacks_in_38524Calligrapher h4, .stacks_in_38524Calligrapher h5, .stacks_in_38524Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38524targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38524Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38524Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38524Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38524Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38524 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38527 {
	line-height: 2em;
}
#stacks_in_38528{}#stacks_in_38528 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38528 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38528 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38528 > .jack.width-static{width:500px}#stacks_in_38528 > .jack.width-flexible{width:100%}#stacks_in_38528 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38528 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38528 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38528 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38528 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38528 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38528 > .jack::after{border-radius:15px}#stacks_in_38528 > .jack.border-detailed-radius,#stacks_in_38528 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38528 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38528 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38528 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38528 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38528 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38528 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38528 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38528 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38528 > .jack.bg-image:not(.glass){}#stacks_in_38528 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38528 > .jack.bg-image.glass.after,#stacks_in_38528 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38528 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38528 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38528 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38528 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38528 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38528 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38528 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38528 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38528 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38528 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38528 > .jack.bg-image.glass.after,#stacks_in_38528 > .glass.jack.bg-image::after{}#stacks_in_38528 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38528 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38528 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38528 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38528 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38528 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38528 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38528 > .jack.peek-shadow::before,#stacks_in_38528 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38528 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38528 > .jack{overflow:hidden;}#stacks_in_38528 > .jack.height-static{height:500px}#stacks_in_38528 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38530Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38530Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38530Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38530Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38530Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38530Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38530Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38530Calligrapher h6, .stacks_in_38530Calligrapher h5, .stacks_in_38530Calligrapher h4, .stacks_in_38530Calligrapher h3, .stacks_in_38530Calligrapher h2, .stacks_in_38530Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38530Calligrapher, .stacks_in_38530Calligrapher h1, .stacks_in_38530Calligrapher h2, .stacks_in_38530Calligrapher h3, .stacks_in_38530Calligrapher h4, .stacks_in_38530Calligrapher h5, .stacks_in_38530Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38530targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38530Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38530Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38530Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38530Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38530 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38531 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38534 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38538Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38538Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38538Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38538Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38538Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38538Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38538Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38538Calligrapher h6, .stacks_in_38538Calligrapher h5, .stacks_in_38538Calligrapher h4, .stacks_in_38538Calligrapher h3, .stacks_in_38538Calligrapher h2, .stacks_in_38538Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38538Calligrapher, .stacks_in_38538Calligrapher h1, .stacks_in_38538Calligrapher h2, .stacks_in_38538Calligrapher h3, .stacks_in_38538Calligrapher h4, .stacks_in_38538Calligrapher h5, .stacks_in_38538Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38538targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38538Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38538Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38538Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38538Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38538 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38541 {
	line-height: 2em;
}
#stacks_in_38543{}#stacks_in_38543 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38543 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38543 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38543 > .jack.width-static{width:500px}#stacks_in_38543 > .jack.width-flexible{width:100%}#stacks_in_38543 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38543 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38543 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38543 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38543 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38543 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38543 > .jack::after{border-radius:15px}#stacks_in_38543 > .jack.border-detailed-radius,#stacks_in_38543 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38543 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38543 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38543 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38543 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38543 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38543 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38543 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38543 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38543 > .jack.bg-image:not(.glass){}#stacks_in_38543 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38543 > .jack.bg-image.glass.after,#stacks_in_38543 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38543 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38543 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38543 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38543 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38543 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38543 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38543 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38543 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38543 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38543 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38543 > .jack.bg-image.glass.after,#stacks_in_38543 > .glass.jack.bg-image::after{}#stacks_in_38543 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38543 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38543 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38543 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38543 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38543 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38543 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38543 > .jack.peek-shadow::before,#stacks_in_38543 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38543 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38543 > .jack{overflow:hidden;}#stacks_in_38543 > .jack.height-static{height:100px}#stacks_in_38543 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38544 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38544 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38544 .fluid-image.unlimited img{width:100% !important}#stacks_in_38544 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38544 .fluid-image.align-left img{float:left}#stacks_in_38544 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38547Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38547Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38547Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38547Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38547Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38547Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38547Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38547Calligrapher h6, .stacks_in_38547Calligrapher h5, .stacks_in_38547Calligrapher h4, .stacks_in_38547Calligrapher h3, .stacks_in_38547Calligrapher h2, .stacks_in_38547Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38547Calligrapher, .stacks_in_38547Calligrapher h1, .stacks_in_38547Calligrapher h2, .stacks_in_38547Calligrapher h3, .stacks_in_38547Calligrapher h4, .stacks_in_38547Calligrapher h5, .stacks_in_38547Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38547targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38547Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38547Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38547Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38547Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38547 {
	margin: 30px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_38548 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38551 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38555Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38555Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38555Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38555Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38555Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38555Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38555Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38555Calligrapher h6, .stacks_in_38555Calligrapher h5, .stacks_in_38555Calligrapher h4, .stacks_in_38555Calligrapher h3, .stacks_in_38555Calligrapher h2, .stacks_in_38555Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38555Calligrapher, .stacks_in_38555Calligrapher h1, .stacks_in_38555Calligrapher h2, .stacks_in_38555Calligrapher h3, .stacks_in_38555Calligrapher h4, .stacks_in_38555Calligrapher h5, .stacks_in_38555Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38555targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38555Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38555Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38555Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38555Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38555 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38558 {
	line-height: 2em;
}
#stacks_in_38559{}#stacks_in_38559 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38559 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38559 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38559 > .jack.width-static{width:500px}#stacks_in_38559 > .jack.width-flexible{width:100%}#stacks_in_38559 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38559 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38559 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38559 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38559 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38559 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38559 > .jack::after{border-radius:15px}#stacks_in_38559 > .jack.border-detailed-radius,#stacks_in_38559 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38559 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38559 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38559 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38559 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38559 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38559 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38559 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38559 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38559 > .jack.bg-image:not(.glass){}#stacks_in_38559 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38559 > .jack.bg-image.glass.after,#stacks_in_38559 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38559 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38559 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38559 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38559 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38559 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38559 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38559 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38559 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38559 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38559 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38559 > .jack.bg-image.glass.after,#stacks_in_38559 > .glass.jack.bg-image::after{}#stacks_in_38559 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38559 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38559 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38559 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38559 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38559 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38559 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38559 > .jack.peek-shadow::before,#stacks_in_38559 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38559 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38559 > .jack{overflow:hidden;}#stacks_in_38559 > .jack.height-static{height:100px}#stacks_in_38559 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38560 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38560 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38560 .fluid-image.unlimited img{width:100% !important}#stacks_in_38560 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38560 .fluid-image.align-left img{float:left}#stacks_in_38560 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38564Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38564Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38564Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38564Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38564Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38564Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38564Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38564Calligrapher h6, .stacks_in_38564Calligrapher h5, .stacks_in_38564Calligrapher h4, .stacks_in_38564Calligrapher h3, .stacks_in_38564Calligrapher h2, .stacks_in_38564Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38564Calligrapher, .stacks_in_38564Calligrapher h1, .stacks_in_38564Calligrapher h2, .stacks_in_38564Calligrapher h3, .stacks_in_38564Calligrapher h4, .stacks_in_38564Calligrapher h5, .stacks_in_38564Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38564targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38564Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38564Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38564Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38564Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38564 {
	margin: 30px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_38565 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38569 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38571 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38573 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38577Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38577Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38577Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38577Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38577Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38577Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38577Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38577Calligrapher h6, .stacks_in_38577Calligrapher h5, .stacks_in_38577Calligrapher h4, .stacks_in_38577Calligrapher h3, .stacks_in_38577Calligrapher h2, .stacks_in_38577Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38577Calligrapher, .stacks_in_38577Calligrapher h1, .stacks_in_38577Calligrapher h2, .stacks_in_38577Calligrapher h3, .stacks_in_38577Calligrapher h4, .stacks_in_38577Calligrapher h5, .stacks_in_38577Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38577targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38577Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38577Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38577Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38577Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38577 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38580 {
	line-height: 2em;
}
#stacks_in_38581{}#stacks_in_38581 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38581 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38581 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38581 > .jack.width-static{width:500px}#stacks_in_38581 > .jack.width-flexible{width:100%}#stacks_in_38581 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38581 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38581 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38581 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38581 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38581 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38581 > .jack::after{border-radius:15px}#stacks_in_38581 > .jack.border-detailed-radius,#stacks_in_38581 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38581 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38581 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38581 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38581 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38581 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38581 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38581 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38581 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38581 > .jack.bg-image:not(.glass){}#stacks_in_38581 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38581 > .jack.bg-image.glass.after,#stacks_in_38581 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38581 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38581 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38581 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38581 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38581 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38581 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38581 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38581 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38581 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38581 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38581 > .jack.bg-image.glass.after,#stacks_in_38581 > .glass.jack.bg-image::after{}#stacks_in_38581 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38581 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38581 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38581 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38581 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38581 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38581 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38581 > .jack.peek-shadow::before,#stacks_in_38581 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38581 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38581 > .jack{overflow:hidden;}#stacks_in_38581 > .jack.height-static{height:100px}#stacks_in_38581 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38582 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38582 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38582 .fluid-image.unlimited img{width:100% !important}#stacks_in_38582 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38582 .fluid-image.align-left img{float:left}#stacks_in_38582 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38585Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38585Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38585Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38585Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38585Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38585Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38585Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38585Calligrapher h6, .stacks_in_38585Calligrapher h5, .stacks_in_38585Calligrapher h4, .stacks_in_38585Calligrapher h3, .stacks_in_38585Calligrapher h2, .stacks_in_38585Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38585Calligrapher, .stacks_in_38585Calligrapher h1, .stacks_in_38585Calligrapher h2, .stacks_in_38585Calligrapher h3, .stacks_in_38585Calligrapher h4, .stacks_in_38585Calligrapher h5, .stacks_in_38585Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38585targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38585Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38585Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38585Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38585Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38585 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38586 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38589 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38593Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38593Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38593Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38593Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38593Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38593Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38593Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38593Calligrapher h6, .stacks_in_38593Calligrapher h5, .stacks_in_38593Calligrapher h4, .stacks_in_38593Calligrapher h3, .stacks_in_38593Calligrapher h2, .stacks_in_38593Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38593Calligrapher, .stacks_in_38593Calligrapher h1, .stacks_in_38593Calligrapher h2, .stacks_in_38593Calligrapher h3, .stacks_in_38593Calligrapher h4, .stacks_in_38593Calligrapher h5, .stacks_in_38593Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38593targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38593Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38593Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38593Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38593Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38593 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38596 {
	line-height: 2em;
}
#stacks_in_38597{}#stacks_in_38597 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38597 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38597 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38597 > .jack.width-static{width:500px}#stacks_in_38597 > .jack.width-flexible{width:100%}#stacks_in_38597 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38597 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38597 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38597 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38597 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38597 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38597 > .jack::after{border-radius:15px}#stacks_in_38597 > .jack.border-detailed-radius,#stacks_in_38597 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38597 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38597 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38597 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38597 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38597 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38597 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38597 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38597 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38597 > .jack.bg-image:not(.glass){}#stacks_in_38597 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38597 > .jack.bg-image.glass.after,#stacks_in_38597 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38597 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38597 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38597 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38597 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38597 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38597 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38597 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38597 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38597 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38597 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38597 > .jack.bg-image.glass.after,#stacks_in_38597 > .glass.jack.bg-image::after{}#stacks_in_38597 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38597 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38597 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38597 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38597 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38597 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38597 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38597 > .jack.peek-shadow::before,#stacks_in_38597 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38597 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38597 > .jack{overflow:hidden;}#stacks_in_38597 > .jack.height-static{height:100px}#stacks_in_38597 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38598 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38598 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38598 .fluid-image.unlimited img{width:100% !important}#stacks_in_38598 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38598 .fluid-image.align-left img{float:left}#stacks_in_38598 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38601Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38601Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38601Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38601Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38601Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38601Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38601Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38601Calligrapher h6, .stacks_in_38601Calligrapher h5, .stacks_in_38601Calligrapher h4, .stacks_in_38601Calligrapher h3, .stacks_in_38601Calligrapher h2, .stacks_in_38601Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38601Calligrapher, .stacks_in_38601Calligrapher h1, .stacks_in_38601Calligrapher h2, .stacks_in_38601Calligrapher h3, .stacks_in_38601Calligrapher h4, .stacks_in_38601Calligrapher h5, .stacks_in_38601Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38601targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38601Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38601Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38601Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38601Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38601 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38602 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38605 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38609Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38609Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38609Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38609Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38609Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38609Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38609Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38609Calligrapher h6, .stacks_in_38609Calligrapher h5, .stacks_in_38609Calligrapher h4, .stacks_in_38609Calligrapher h3, .stacks_in_38609Calligrapher h2, .stacks_in_38609Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38609Calligrapher, .stacks_in_38609Calligrapher h1, .stacks_in_38609Calligrapher h2, .stacks_in_38609Calligrapher h3, .stacks_in_38609Calligrapher h4, .stacks_in_38609Calligrapher h5, .stacks_in_38609Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38609targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38609Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38609Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38609Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38609Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38609 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38612 {
	line-height: 2em;
}
#stacks_in_38613{}#stacks_in_38613 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38613 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38613 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38613 > .jack.width-static{width:500px}#stacks_in_38613 > .jack.width-flexible{width:100%}#stacks_in_38613 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38613 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38613 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38613 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38613 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38613 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38613 > .jack::after{border-radius:15px}#stacks_in_38613 > .jack.border-detailed-radius,#stacks_in_38613 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38613 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38613 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38613 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38613 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38613 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38613 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38613 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38613 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38613 > .jack.bg-image:not(.glass){}#stacks_in_38613 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38613 > .jack.bg-image.glass.after,#stacks_in_38613 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38613 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38613 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38613 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38613 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38613 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38613 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38613 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38613 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38613 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38613 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38613 > .jack.bg-image.glass.after,#stacks_in_38613 > .glass.jack.bg-image::after{}#stacks_in_38613 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38613 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38613 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38613 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38613 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38613 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38613 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38613 > .jack.peek-shadow::before,#stacks_in_38613 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38613 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38613 > .jack{overflow:hidden;}#stacks_in_38613 > .jack.height-static{height:100px}#stacks_in_38613 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38614 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38614 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38614 .fluid-image.unlimited img{width:100% !important}#stacks_in_38614 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38614 .fluid-image.align-left img{float:left}#stacks_in_38614 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38617Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38617Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38617Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38617Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38617Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38617Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38617Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38617Calligrapher h6, .stacks_in_38617Calligrapher h5, .stacks_in_38617Calligrapher h4, .stacks_in_38617Calligrapher h3, .stacks_in_38617Calligrapher h2, .stacks_in_38617Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38617Calligrapher, .stacks_in_38617Calligrapher h1, .stacks_in_38617Calligrapher h2, .stacks_in_38617Calligrapher h3, .stacks_in_38617Calligrapher h4, .stacks_in_38617Calligrapher h5, .stacks_in_38617Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38617targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38617Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38617Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38617Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38617Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38617 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38618 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38621 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38625Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38625Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38625Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38625Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38625Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38625Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38625Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38625Calligrapher h6, .stacks_in_38625Calligrapher h5, .stacks_in_38625Calligrapher h4, .stacks_in_38625Calligrapher h3, .stacks_in_38625Calligrapher h2, .stacks_in_38625Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38625Calligrapher, .stacks_in_38625Calligrapher h1, .stacks_in_38625Calligrapher h2, .stacks_in_38625Calligrapher h3, .stacks_in_38625Calligrapher h4, .stacks_in_38625Calligrapher h5, .stacks_in_38625Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38625targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38625Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38625Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38625Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38625Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38625 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38628 {
	line-height: 2em;
}
#stacks_in_38629{}#stacks_in_38629 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38629 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38629 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38629 > .jack.width-static{width:500px}#stacks_in_38629 > .jack.width-flexible{width:100%}#stacks_in_38629 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38629 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38629 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38629 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38629 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38629 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38629 > .jack::after{border-radius:15px}#stacks_in_38629 > .jack.border-detailed-radius,#stacks_in_38629 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38629 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38629 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38629 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38629 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38629 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38629 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38629 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38629 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38629 > .jack.bg-image:not(.glass){}#stacks_in_38629 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38629 > .jack.bg-image.glass.after,#stacks_in_38629 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38629 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38629 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38629 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38629 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38629 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38629 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38629 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38629 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38629 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38629 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38629 > .jack.bg-image.glass.after,#stacks_in_38629 > .glass.jack.bg-image::after{}#stacks_in_38629 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38629 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38629 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38629 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38629 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38629 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38629 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38629 > .jack.peek-shadow::before,#stacks_in_38629 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38629 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38629 > .jack{overflow:hidden;}#stacks_in_38629 > .jack.height-static{height:100px}#stacks_in_38629 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38630 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38630 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38630 .fluid-image.unlimited img{width:100% !important}#stacks_in_38630 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38630 .fluid-image.align-left img{float:left}#stacks_in_38630 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38633Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38633Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38633Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38633Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38633Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38633Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38633Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38633Calligrapher h6, .stacks_in_38633Calligrapher h5, .stacks_in_38633Calligrapher h4, .stacks_in_38633Calligrapher h3, .stacks_in_38633Calligrapher h2, .stacks_in_38633Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38633Calligrapher, .stacks_in_38633Calligrapher h1, .stacks_in_38633Calligrapher h2, .stacks_in_38633Calligrapher h3, .stacks_in_38633Calligrapher h4, .stacks_in_38633Calligrapher h5, .stacks_in_38633Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38633targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38633Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38633Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38633Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38633Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38633 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38634 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38637 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38641Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38641Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38641Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38641Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38641Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38641Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38641Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38641Calligrapher h6, .stacks_in_38641Calligrapher h5, .stacks_in_38641Calligrapher h4, .stacks_in_38641Calligrapher h3, .stacks_in_38641Calligrapher h2, .stacks_in_38641Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38641Calligrapher, .stacks_in_38641Calligrapher h1, .stacks_in_38641Calligrapher h2, .stacks_in_38641Calligrapher h3, .stacks_in_38641Calligrapher h4, .stacks_in_38641Calligrapher h5, .stacks_in_38641Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38641targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38641Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38641Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38641Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38641Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38641 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38642 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38644 {
	line-height: 2em;
}
#stacks_in_38645{}#stacks_in_38645 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38645 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38645 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38645 > .jack.width-static{width:500px}#stacks_in_38645 > .jack.width-flexible{width:100%}#stacks_in_38645 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38645 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38645 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38645 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38645 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38645 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38645 > .jack::after{border-radius:15px}#stacks_in_38645 > .jack.border-detailed-radius,#stacks_in_38645 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38645 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38645 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38645 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38645 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38645 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38645 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38645 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38645 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38645 > .jack.bg-image:not(.glass){}#stacks_in_38645 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38645 > .jack.bg-image.glass.after,#stacks_in_38645 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38645 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38645 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38645 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38645 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38645 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38645 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38645 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38645 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38645 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38645 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38645 > .jack.bg-image.glass.after,#stacks_in_38645 > .glass.jack.bg-image::after{}#stacks_in_38645 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38645 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38645 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38645 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38645 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38645 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38645 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38645 > .jack.peek-shadow::before,#stacks_in_38645 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38645 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38645 > .jack{overflow:hidden;}#stacks_in_38645 > .jack.height-static{height:100px}#stacks_in_38645 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38646 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38646 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38646 .fluid-image.unlimited img{width:100% !important}#stacks_in_38646 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38646 .fluid-image.align-left img{float:left}#stacks_in_38646 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38650Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38650Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38650Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38650Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38650Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38650Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38650Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38650Calligrapher h6, .stacks_in_38650Calligrapher h5, .stacks_in_38650Calligrapher h4, .stacks_in_38650Calligrapher h3, .stacks_in_38650Calligrapher h2, .stacks_in_38650Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38650Calligrapher, .stacks_in_38650Calligrapher h1, .stacks_in_38650Calligrapher h2, .stacks_in_38650Calligrapher h3, .stacks_in_38650Calligrapher h4, .stacks_in_38650Calligrapher h5, .stacks_in_38650Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38650targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38650Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38650Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38650Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38650Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38650 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38651 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38654 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38658Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38658Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38658Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38658Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38658Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38658Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38658Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38658Calligrapher h6, .stacks_in_38658Calligrapher h5, .stacks_in_38658Calligrapher h4, .stacks_in_38658Calligrapher h3, .stacks_in_38658Calligrapher h2, .stacks_in_38658Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38658Calligrapher, .stacks_in_38658Calligrapher h1, .stacks_in_38658Calligrapher h2, .stacks_in_38658Calligrapher h3, .stacks_in_38658Calligrapher h4, .stacks_in_38658Calligrapher h5, .stacks_in_38658Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38658targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38658Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38658Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38658Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38658Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38658 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38659 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38661 {
	line-height: 2em;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_38662 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_38662 {
		display: none !important;
	}
}
#stacks_in_38663{}#stacks_in_38663 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38663 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38663 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38663 > .jack.width-static{width:500px}#stacks_in_38663 > .jack.width-flexible{width:100%}#stacks_in_38663 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38663 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38663 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38663 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38663 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38663 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38663 > .jack::after{border-radius:15px}#stacks_in_38663 > .jack.border-detailed-radius,#stacks_in_38663 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38663 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38663 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38663 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38663 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38663 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38663 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38663 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38663 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38663 > .jack.bg-image:not(.glass){}#stacks_in_38663 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38663 > .jack.bg-image.glass.after,#stacks_in_38663 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38663 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38663 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38663 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38663 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38663 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38663 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38663 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38663 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38663 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38663 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38663 > .jack.bg-image.glass.after,#stacks_in_38663 > .glass.jack.bg-image::after{}#stacks_in_38663 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38663 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38663 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38663 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38663 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38663 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38663 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38663 > .jack.peek-shadow::before,#stacks_in_38663 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38663 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38663 > .jack{overflow:hidden;}#stacks_in_38663 > .jack.height-static{height:100px}#stacks_in_38663 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38664 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38664 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38664 .fluid-image.unlimited img{width:100% !important}#stacks_in_38664 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38664 .fluid-image.align-left img{float:left}#stacks_in_38664 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38667Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38667Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38667Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38667Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38667Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38667Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38667Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38667Calligrapher h6, .stacks_in_38667Calligrapher h5, .stacks_in_38667Calligrapher h4, .stacks_in_38667Calligrapher h3, .stacks_in_38667Calligrapher h2, .stacks_in_38667Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38667Calligrapher, .stacks_in_38667Calligrapher h1, .stacks_in_38667Calligrapher h2, .stacks_in_38667Calligrapher h3, .stacks_in_38667Calligrapher h4, .stacks_in_38667Calligrapher h5, .stacks_in_38667Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38667targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38667Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38667Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38667Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38667Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38667 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38668 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38671 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38675Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38675Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38675Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38675Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38675Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38675Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38675Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38675Calligrapher h6, .stacks_in_38675Calligrapher h5, .stacks_in_38675Calligrapher h4, .stacks_in_38675Calligrapher h3, .stacks_in_38675Calligrapher h2, .stacks_in_38675Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38675Calligrapher, .stacks_in_38675Calligrapher h1, .stacks_in_38675Calligrapher h2, .stacks_in_38675Calligrapher h3, .stacks_in_38675Calligrapher h4, .stacks_in_38675Calligrapher h5, .stacks_in_38675Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38675targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38675Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38675Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38675Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38675Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38675 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38676 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38678 {
	line-height: 2em;
}
#stacks_in_38679{}#stacks_in_38679 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38679 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38679 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38679 > .jack.width-static{width:500px}#stacks_in_38679 > .jack.width-flexible{width:100%}#stacks_in_38679 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38679 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38679 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38679 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38679 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38679 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38679 > .jack::after{border-radius:15px}#stacks_in_38679 > .jack.border-detailed-radius,#stacks_in_38679 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38679 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38679 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38679 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38679 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38679 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38679 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38679 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38679 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38679 > .jack.bg-image:not(.glass){}#stacks_in_38679 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38679 > .jack.bg-image.glass.after,#stacks_in_38679 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38679 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38679 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38679 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38679 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38679 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38679 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38679 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38679 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38679 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38679 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38679 > .jack.bg-image.glass.after,#stacks_in_38679 > .glass.jack.bg-image::after{}#stacks_in_38679 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38679 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38679 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38679 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38679 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38679 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38679 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38679 > .jack.peek-shadow::before,#stacks_in_38679 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38679 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38679 > .jack{overflow:hidden;}#stacks_in_38679 > .jack.height-static{height:100px}#stacks_in_38679 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38680 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38680 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38680 .fluid-image.unlimited img{width:100% !important}#stacks_in_38680 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38680 .fluid-image.align-left img{float:left}#stacks_in_38680 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38684Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38684Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38684Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38684Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38684Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38684Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38684Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38684Calligrapher h6, .stacks_in_38684Calligrapher h5, .stacks_in_38684Calligrapher h4, .stacks_in_38684Calligrapher h3, .stacks_in_38684Calligrapher h2, .stacks_in_38684Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38684Calligrapher, .stacks_in_38684Calligrapher h1, .stacks_in_38684Calligrapher h2, .stacks_in_38684Calligrapher h3, .stacks_in_38684Calligrapher h4, .stacks_in_38684Calligrapher h5, .stacks_in_38684Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38684targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38684Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38684Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38684Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38684Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38684 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38685 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38688 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38690Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38690Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38690Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38690Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38690Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38690Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38690Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38690Calligrapher h6, .stacks_in_38690Calligrapher h5, .stacks_in_38690Calligrapher h4, .stacks_in_38690Calligrapher h3, .stacks_in_38690Calligrapher h2, .stacks_in_38690Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38690Calligrapher, .stacks_in_38690Calligrapher h1, .stacks_in_38690Calligrapher h2, .stacks_in_38690Calligrapher h3, .stacks_in_38690Calligrapher h4, .stacks_in_38690Calligrapher h5, .stacks_in_38690Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38690targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38690Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38690Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38690Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38690Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38690 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38691 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38693 {
	line-height: 2em;
}
#stacks_in_38694{}#stacks_in_38694 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38694 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38694 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38694 > .jack.width-static{width:500px}#stacks_in_38694 > .jack.width-flexible{width:100%}#stacks_in_38694 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38694 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38694 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38694 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38694 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38694 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38694 > .jack::after{border-radius:15px}#stacks_in_38694 > .jack.border-detailed-radius,#stacks_in_38694 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38694 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38694 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38694 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38694 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38694 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38694 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38694 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38694 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38694 > .jack.bg-image:not(.glass){}#stacks_in_38694 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38694 > .jack.bg-image.glass.after,#stacks_in_38694 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38694 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38694 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38694 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38694 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38694 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38694 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38694 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38694 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38694 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38694 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38694 > .jack.bg-image.glass.after,#stacks_in_38694 > .glass.jack.bg-image::after{}#stacks_in_38694 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38694 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38694 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38694 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38694 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38694 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38694 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38694 > .jack.peek-shadow::before,#stacks_in_38694 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38694 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38694 > .jack{overflow:hidden;}#stacks_in_38694 > .jack.height-static{height:100px}#stacks_in_38694 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38695 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38695 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38695 .fluid-image.unlimited img{width:100% !important}#stacks_in_38695 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38695 .fluid-image.align-left img{float:left}#stacks_in_38695 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38698Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38698Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38698Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38698Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38698Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38698Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38698Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38698Calligrapher h6, .stacks_in_38698Calligrapher h5, .stacks_in_38698Calligrapher h4, .stacks_in_38698Calligrapher h3, .stacks_in_38698Calligrapher h2, .stacks_in_38698Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38698Calligrapher, .stacks_in_38698Calligrapher h1, .stacks_in_38698Calligrapher h2, .stacks_in_38698Calligrapher h3, .stacks_in_38698Calligrapher h4, .stacks_in_38698Calligrapher h5, .stacks_in_38698Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38698targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38698Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38698Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38698Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38698Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38698 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38699 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38702 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38704 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38706Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38706Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38706Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38706Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38706Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38706Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38706Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38706Calligrapher h6, .stacks_in_38706Calligrapher h5, .stacks_in_38706Calligrapher h4, .stacks_in_38706Calligrapher h3, .stacks_in_38706Calligrapher h2, .stacks_in_38706Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38706Calligrapher, .stacks_in_38706Calligrapher h1, .stacks_in_38706Calligrapher h2, .stacks_in_38706Calligrapher h3, .stacks_in_38706Calligrapher h4, .stacks_in_38706Calligrapher h5, .stacks_in_38706Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38706targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38706Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38706Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38706Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38706Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38706 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38707 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38709 {
	line-height: 2em;
}
#stacks_in_38710{}#stacks_in_38710 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38710 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38710 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38710 > .jack.width-static{width:500px}#stacks_in_38710 > .jack.width-flexible{width:100%}#stacks_in_38710 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38710 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38710 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38710 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38710 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38710 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38710 > .jack::after{border-radius:15px}#stacks_in_38710 > .jack.border-detailed-radius,#stacks_in_38710 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38710 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38710 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38710 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38710 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38710 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38710 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38710 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38710 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38710 > .jack.bg-image:not(.glass){}#stacks_in_38710 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38710 > .jack.bg-image.glass.after,#stacks_in_38710 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38710 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38710 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38710 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38710 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38710 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38710 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38710 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38710 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38710 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38710 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38710 > .jack.bg-image.glass.after,#stacks_in_38710 > .glass.jack.bg-image::after{}#stacks_in_38710 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38710 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38710 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38710 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38710 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38710 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38710 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38710 > .jack.peek-shadow::before,#stacks_in_38710 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38710 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38710 > .jack{overflow:hidden;}#stacks_in_38710 > .jack.height-static{height:100px}#stacks_in_38710 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38711 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38711 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38711 .fluid-image.unlimited img{width:100% !important}#stacks_in_38711 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38711 .fluid-image.align-left img{float:left}#stacks_in_38711 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38714Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38714Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38714Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38714Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38714Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38714Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38714Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38714Calligrapher h6, .stacks_in_38714Calligrapher h5, .stacks_in_38714Calligrapher h4, .stacks_in_38714Calligrapher h3, .stacks_in_38714Calligrapher h2, .stacks_in_38714Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38714Calligrapher, .stacks_in_38714Calligrapher h1, .stacks_in_38714Calligrapher h2, .stacks_in_38714Calligrapher h3, .stacks_in_38714Calligrapher h4, .stacks_in_38714Calligrapher h5, .stacks_in_38714Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38714targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38714Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38714Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38714Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38714Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38714 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38715 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38718 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38720 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38722Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38722Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38722Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38722Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38722Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38722Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38722Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38722Calligrapher h6, .stacks_in_38722Calligrapher h5, .stacks_in_38722Calligrapher h4, .stacks_in_38722Calligrapher h3, .stacks_in_38722Calligrapher h2, .stacks_in_38722Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38722Calligrapher, .stacks_in_38722Calligrapher h1, .stacks_in_38722Calligrapher h2, .stacks_in_38722Calligrapher h3, .stacks_in_38722Calligrapher h4, .stacks_in_38722Calligrapher h5, .stacks_in_38722Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38722targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38722Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38722Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38722Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38722Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38722 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38723 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38726 {
	line-height: 2em;
}
#stacks_in_38727{}#stacks_in_38727 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38727 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38727 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38727 > .jack.width-static{width:500px}#stacks_in_38727 > .jack.width-flexible{width:100%}#stacks_in_38727 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38727 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38727 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38727 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38727 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38727 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38727 > .jack::after{border-radius:15px}#stacks_in_38727 > .jack.border-detailed-radius,#stacks_in_38727 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38727 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38727 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38727 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38727 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38727 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38727 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38727 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38727 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38727 > .jack.bg-image:not(.glass){}#stacks_in_38727 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38727 > .jack.bg-image.glass.after,#stacks_in_38727 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38727 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38727 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38727 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38727 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38727 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38727 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38727 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38727 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38727 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38727 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38727 > .jack.bg-image.glass.after,#stacks_in_38727 > .glass.jack.bg-image::after{}#stacks_in_38727 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38727 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38727 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38727 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38727 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38727 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38727 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38727 > .jack.peek-shadow::before,#stacks_in_38727 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38727 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38727 > .jack{overflow:hidden;}#stacks_in_38727 > .jack.height-static{height:100px}#stacks_in_38727 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38728 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38728 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38728 .fluid-image.unlimited img{width:100% !important}#stacks_in_38728 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38728 .fluid-image.align-left img{float:left}#stacks_in_38728 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38731Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38731Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38731Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38731Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38731Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38731Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38731Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38731Calligrapher h6, .stacks_in_38731Calligrapher h5, .stacks_in_38731Calligrapher h4, .stacks_in_38731Calligrapher h3, .stacks_in_38731Calligrapher h2, .stacks_in_38731Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38731Calligrapher, .stacks_in_38731Calligrapher h1, .stacks_in_38731Calligrapher h2, .stacks_in_38731Calligrapher h3, .stacks_in_38731Calligrapher h4, .stacks_in_38731Calligrapher h5, .stacks_in_38731Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38731targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38731Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38731Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38731Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38731Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38731 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38732 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38735 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38737 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38739Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38739Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38739Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38739Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38739Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38739Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38739Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38739Calligrapher h6, .stacks_in_38739Calligrapher h5, .stacks_in_38739Calligrapher h4, .stacks_in_38739Calligrapher h3, .stacks_in_38739Calligrapher h2, .stacks_in_38739Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38739Calligrapher, .stacks_in_38739Calligrapher h1, .stacks_in_38739Calligrapher h2, .stacks_in_38739Calligrapher h3, .stacks_in_38739Calligrapher h4, .stacks_in_38739Calligrapher h5, .stacks_in_38739Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38739targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38739Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38739Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38739Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38739Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38739 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38740 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38742 {
	line-height: 2em;
}
#stacks_in_38743{}#stacks_in_38743 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38743 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38743 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38743 > .jack.width-static{width:500px}#stacks_in_38743 > .jack.width-flexible{width:100%}#stacks_in_38743 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38743 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38743 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38743 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38743 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38743 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38743 > .jack::after{border-radius:15px}#stacks_in_38743 > .jack.border-detailed-radius,#stacks_in_38743 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38743 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38743 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38743 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38743 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38743 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38743 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38743 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38743 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38743 > .jack.bg-image:not(.glass){}#stacks_in_38743 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38743 > .jack.bg-image.glass.after,#stacks_in_38743 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38743 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38743 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38743 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38743 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38743 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38743 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38743 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38743 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38743 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38743 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38743 > .jack.bg-image.glass.after,#stacks_in_38743 > .glass.jack.bg-image::after{}#stacks_in_38743 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38743 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38743 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38743 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38743 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38743 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38743 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38743 > .jack.peek-shadow::before,#stacks_in_38743 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38743 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38743 > .jack{overflow:hidden;}#stacks_in_38743 > .jack.height-static{height:100px}#stacks_in_38743 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38744 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38744 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38744 .fluid-image.unlimited img{width:100% !important}#stacks_in_38744 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38744 .fluid-image.align-left img{float:left}#stacks_in_38744 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38747Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38747Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38747Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38747Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38747Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38747Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38747Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38747Calligrapher h6, .stacks_in_38747Calligrapher h5, .stacks_in_38747Calligrapher h4, .stacks_in_38747Calligrapher h3, .stacks_in_38747Calligrapher h2, .stacks_in_38747Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38747Calligrapher, .stacks_in_38747Calligrapher h1, .stacks_in_38747Calligrapher h2, .stacks_in_38747Calligrapher h3, .stacks_in_38747Calligrapher h4, .stacks_in_38747Calligrapher h5, .stacks_in_38747Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38747targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38747Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38747Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38747Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38747Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38747 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38748 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38752 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38754Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38754Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38754Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38754Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38754Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38754Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38754Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38754Calligrapher h6, .stacks_in_38754Calligrapher h5, .stacks_in_38754Calligrapher h4, .stacks_in_38754Calligrapher h3, .stacks_in_38754Calligrapher h2, .stacks_in_38754Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38754Calligrapher, .stacks_in_38754Calligrapher h1, .stacks_in_38754Calligrapher h2, .stacks_in_38754Calligrapher h3, .stacks_in_38754Calligrapher h4, .stacks_in_38754Calligrapher h5, .stacks_in_38754Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38754targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38754Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38754Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38754Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38754Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38754 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38755 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38757 {
	line-height: 2em;
}
#stacks_in_38758{}#stacks_in_38758 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38758 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38758 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38758 > .jack.width-static{width:500px}#stacks_in_38758 > .jack.width-flexible{width:100%}#stacks_in_38758 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38758 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38758 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38758 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38758 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38758 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38758 > .jack::after{border-radius:15px}#stacks_in_38758 > .jack.border-detailed-radius,#stacks_in_38758 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38758 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38758 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38758 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38758 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38758 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38758 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38758 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38758 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38758 > .jack.bg-image:not(.glass){}#stacks_in_38758 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38758 > .jack.bg-image.glass.after,#stacks_in_38758 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38758 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38758 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38758 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38758 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38758 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38758 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38758 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38758 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38758 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38758 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38758 > .jack.bg-image.glass.after,#stacks_in_38758 > .glass.jack.bg-image::after{}#stacks_in_38758 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38758 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38758 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38758 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38758 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38758 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38758 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38758 > .jack.peek-shadow::before,#stacks_in_38758 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38758 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38758 > .jack{overflow:hidden;}#stacks_in_38758 > .jack.height-static{height:100px}#stacks_in_38758 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38760 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38760 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38760 .fluid-image.unlimited img{width:100% !important}#stacks_in_38760 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38760 .fluid-image.align-left img{float:left}#stacks_in_38760 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38764Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38764Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38764Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38764Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38764Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38764Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38764Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38764Calligrapher h6, .stacks_in_38764Calligrapher h5, .stacks_in_38764Calligrapher h4, .stacks_in_38764Calligrapher h3, .stacks_in_38764Calligrapher h2, .stacks_in_38764Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38764Calligrapher, .stacks_in_38764Calligrapher h1, .stacks_in_38764Calligrapher h2, .stacks_in_38764Calligrapher h3, .stacks_in_38764Calligrapher h4, .stacks_in_38764Calligrapher h5, .stacks_in_38764Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38764targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38764Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38764Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38764Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38764Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38764 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38765 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38768 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38770 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38772Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38772Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38772Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38772Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38772Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38772Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38772Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38772Calligrapher h6, .stacks_in_38772Calligrapher h5, .stacks_in_38772Calligrapher h4, .stacks_in_38772Calligrapher h3, .stacks_in_38772Calligrapher h2, .stacks_in_38772Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38772Calligrapher, .stacks_in_38772Calligrapher h1, .stacks_in_38772Calligrapher h2, .stacks_in_38772Calligrapher h3, .stacks_in_38772Calligrapher h4, .stacks_in_38772Calligrapher h5, .stacks_in_38772Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38772targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38772Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38772Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38772Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38772Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38772 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38773 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38775 {
	line-height: 2em;
}
#stacks_in_38776{}#stacks_in_38776 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38776 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38776 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38776 > .jack.width-static{width:500px}#stacks_in_38776 > .jack.width-flexible{width:100%}#stacks_in_38776 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38776 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38776 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38776 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38776 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38776 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38776 > .jack::after{border-radius:15px}#stacks_in_38776 > .jack.border-detailed-radius,#stacks_in_38776 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38776 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38776 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38776 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38776 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38776 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38776 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38776 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38776 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38776 > .jack.bg-image:not(.glass){}#stacks_in_38776 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38776 > .jack.bg-image.glass.after,#stacks_in_38776 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38776 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38776 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38776 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38776 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38776 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38776 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38776 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38776 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38776 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38776 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38776 > .jack.bg-image.glass.after,#stacks_in_38776 > .glass.jack.bg-image::after{}#stacks_in_38776 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38776 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38776 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38776 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38776 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38776 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38776 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38776 > .jack.peek-shadow::before,#stacks_in_38776 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38776 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38776 > .jack{overflow:hidden;}#stacks_in_38776 > .jack.height-static{height:100px}#stacks_in_38776 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38777 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38777 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38777 .fluid-image.unlimited img{width:100% !important}#stacks_in_38777 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38777 .fluid-image.align-left img{float:left}#stacks_in_38777 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38780Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38780Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38780Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38780Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38780Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38780Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38780Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38780Calligrapher h6, .stacks_in_38780Calligrapher h5, .stacks_in_38780Calligrapher h4, .stacks_in_38780Calligrapher h3, .stacks_in_38780Calligrapher h2, .stacks_in_38780Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38780Calligrapher, .stacks_in_38780Calligrapher h1, .stacks_in_38780Calligrapher h2, .stacks_in_38780Calligrapher h3, .stacks_in_38780Calligrapher h4, .stacks_in_38780Calligrapher h5, .stacks_in_38780Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38780targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38780Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38780Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38780Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38780Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38780 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38781 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38784 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38786Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38786Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38786Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38786Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38786Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38786Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38786Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38786Calligrapher h6, .stacks_in_38786Calligrapher h5, .stacks_in_38786Calligrapher h4, .stacks_in_38786Calligrapher h3, .stacks_in_38786Calligrapher h2, .stacks_in_38786Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38786Calligrapher, .stacks_in_38786Calligrapher h1, .stacks_in_38786Calligrapher h2, .stacks_in_38786Calligrapher h3, .stacks_in_38786Calligrapher h4, .stacks_in_38786Calligrapher h5, .stacks_in_38786Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38786targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38786Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38786Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38786Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38786Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38786 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38787 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38789 {
	line-height: 2em;
}
#stacks_in_38790{}#stacks_in_38790 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38790 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38790 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38790 > .jack.width-static{width:500px}#stacks_in_38790 > .jack.width-flexible{width:100%}#stacks_in_38790 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38790 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38790 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38790 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38790 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38790 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38790 > .jack::after{border-radius:15px}#stacks_in_38790 > .jack.border-detailed-radius,#stacks_in_38790 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38790 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38790 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38790 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38790 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38790 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38790 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38790 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38790 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38790 > .jack.bg-image:not(.glass){}#stacks_in_38790 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38790 > .jack.bg-image.glass.after,#stacks_in_38790 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38790 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38790 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38790 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38790 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38790 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38790 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38790 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38790 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38790 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38790 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38790 > .jack.bg-image.glass.after,#stacks_in_38790 > .glass.jack.bg-image::after{}#stacks_in_38790 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38790 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38790 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38790 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38790 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38790 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38790 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38790 > .jack.peek-shadow::before,#stacks_in_38790 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38790 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38790 > .jack{overflow:hidden;}#stacks_in_38790 > .jack.height-static{height:100px}#stacks_in_38790 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38791 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38791 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38791 .fluid-image.unlimited img{width:100% !important}#stacks_in_38791 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38791 .fluid-image.align-left img{float:left}#stacks_in_38791 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38794Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38794Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38794Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38794Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38794Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38794Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38794Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38794Calligrapher h6, .stacks_in_38794Calligrapher h5, .stacks_in_38794Calligrapher h4, .stacks_in_38794Calligrapher h3, .stacks_in_38794Calligrapher h2, .stacks_in_38794Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38794Calligrapher, .stacks_in_38794Calligrapher h1, .stacks_in_38794Calligrapher h2, .stacks_in_38794Calligrapher h3, .stacks_in_38794Calligrapher h4, .stacks_in_38794Calligrapher h5, .stacks_in_38794Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38794targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38794Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38794Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38794Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38794Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38794 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38795 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38798 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38800 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38802Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38802Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38802Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38802Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38802Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38802Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38802Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38802Calligrapher h6, .stacks_in_38802Calligrapher h5, .stacks_in_38802Calligrapher h4, .stacks_in_38802Calligrapher h3, .stacks_in_38802Calligrapher h2, .stacks_in_38802Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38802Calligrapher, .stacks_in_38802Calligrapher h1, .stacks_in_38802Calligrapher h2, .stacks_in_38802Calligrapher h3, .stacks_in_38802Calligrapher h4, .stacks_in_38802Calligrapher h5, .stacks_in_38802Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38802targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38802Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38802Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38802Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38802Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38802 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38803 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38805 {
	line-height: 2em;
}
#stacks_in_38806{}#stacks_in_38806 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38806 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38806 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38806 > .jack.width-static{width:500px}#stacks_in_38806 > .jack.width-flexible{width:100%}#stacks_in_38806 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38806 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38806 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38806 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38806 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38806 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38806 > .jack::after{border-radius:15px}#stacks_in_38806 > .jack.border-detailed-radius,#stacks_in_38806 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38806 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38806 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38806 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38806 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38806 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38806 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38806 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38806 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38806 > .jack.bg-image:not(.glass){}#stacks_in_38806 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38806 > .jack.bg-image.glass.after,#stacks_in_38806 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38806 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38806 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38806 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38806 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38806 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38806 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38806 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38806 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38806 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38806 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38806 > .jack.bg-image.glass.after,#stacks_in_38806 > .glass.jack.bg-image::after{}#stacks_in_38806 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38806 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38806 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38806 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38806 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38806 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38806 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38806 > .jack.peek-shadow::before,#stacks_in_38806 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38806 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38806 > .jack{overflow:hidden;}#stacks_in_38806 > .jack.height-static{height:100px}#stacks_in_38806 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38807 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38807 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38807 .fluid-image.unlimited img{width:100% !important}#stacks_in_38807 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38807 .fluid-image.align-left img{float:left}#stacks_in_38807 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38810Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38810Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38810Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38810Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38810Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38810Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38810Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38810Calligrapher h6, .stacks_in_38810Calligrapher h5, .stacks_in_38810Calligrapher h4, .stacks_in_38810Calligrapher h3, .stacks_in_38810Calligrapher h2, .stacks_in_38810Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38810Calligrapher, .stacks_in_38810Calligrapher h1, .stacks_in_38810Calligrapher h2, .stacks_in_38810Calligrapher h3, .stacks_in_38810Calligrapher h4, .stacks_in_38810Calligrapher h5, .stacks_in_38810Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38810targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38810Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38810Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38810Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38810Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38810 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38811 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38814 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38816 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38818Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38818Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38818Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38818Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38818Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38818Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38818Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38818Calligrapher h6, .stacks_in_38818Calligrapher h5, .stacks_in_38818Calligrapher h4, .stacks_in_38818Calligrapher h3, .stacks_in_38818Calligrapher h2, .stacks_in_38818Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38818Calligrapher, .stacks_in_38818Calligrapher h1, .stacks_in_38818Calligrapher h2, .stacks_in_38818Calligrapher h3, .stacks_in_38818Calligrapher h4, .stacks_in_38818Calligrapher h5, .stacks_in_38818Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38818targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38818Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38818Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38818Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38818Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38818 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38819 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38821 {
	line-height: 2em;
}
#stacks_in_38822{}#stacks_in_38822 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38822 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38822 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38822 > .jack.width-static{width:500px}#stacks_in_38822 > .jack.width-flexible{width:100%}#stacks_in_38822 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38822 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38822 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38822 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38822 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38822 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38822 > .jack::after{border-radius:15px}#stacks_in_38822 > .jack.border-detailed-radius,#stacks_in_38822 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38822 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38822 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38822 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38822 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38822 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38822 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38822 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38822 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38822 > .jack.bg-image:not(.glass){}#stacks_in_38822 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38822 > .jack.bg-image.glass.after,#stacks_in_38822 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38822 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38822 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38822 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38822 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38822 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38822 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38822 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38822 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38822 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38822 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38822 > .jack.bg-image.glass.after,#stacks_in_38822 > .glass.jack.bg-image::after{}#stacks_in_38822 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38822 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38822 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38822 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38822 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38822 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38822 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38822 > .jack.peek-shadow::before,#stacks_in_38822 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38822 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38822 > .jack{overflow:hidden;}#stacks_in_38822 > .jack.height-static{height:100px}#stacks_in_38822 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38824 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38824 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38824 .fluid-image.unlimited img{width:100% !important}#stacks_in_38824 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38824 .fluid-image.align-left img{float:left}#stacks_in_38824 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38828Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38828Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38828Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38828Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38828Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38828Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38828Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38828Calligrapher h6, .stacks_in_38828Calligrapher h5, .stacks_in_38828Calligrapher h4, .stacks_in_38828Calligrapher h3, .stacks_in_38828Calligrapher h2, .stacks_in_38828Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38828Calligrapher, .stacks_in_38828Calligrapher h1, .stacks_in_38828Calligrapher h2, .stacks_in_38828Calligrapher h3, .stacks_in_38828Calligrapher h4, .stacks_in_38828Calligrapher h5, .stacks_in_38828Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38828targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38828Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38828Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38828Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38828Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38828 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38829 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38832 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38834 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38836Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38836Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38836Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38836Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38836Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38836Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38836Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38836Calligrapher h6, .stacks_in_38836Calligrapher h5, .stacks_in_38836Calligrapher h4, .stacks_in_38836Calligrapher h3, .stacks_in_38836Calligrapher h2, .stacks_in_38836Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38836Calligrapher, .stacks_in_38836Calligrapher h1, .stacks_in_38836Calligrapher h2, .stacks_in_38836Calligrapher h3, .stacks_in_38836Calligrapher h4, .stacks_in_38836Calligrapher h5, .stacks_in_38836Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38836targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38836Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38836Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38836Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38836Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38836 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38837 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38839 {
	line-height: 2em;
}
#stacks_in_38840{}#stacks_in_38840 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38840 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38840 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38840 > .jack.width-static{width:500px}#stacks_in_38840 > .jack.width-flexible{width:100%}#stacks_in_38840 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38840 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38840 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38840 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38840 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38840 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38840 > .jack::after{border-radius:15px}#stacks_in_38840 > .jack.border-detailed-radius,#stacks_in_38840 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38840 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38840 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38840 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38840 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38840 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38840 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38840 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38840 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38840 > .jack.bg-image:not(.glass){}#stacks_in_38840 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38840 > .jack.bg-image.glass.after,#stacks_in_38840 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38840 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38840 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38840 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38840 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38840 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38840 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38840 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38840 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38840 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38840 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38840 > .jack.bg-image.glass.after,#stacks_in_38840 > .glass.jack.bg-image::after{}#stacks_in_38840 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38840 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38840 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38840 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38840 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38840 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38840 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38840 > .jack.peek-shadow::before,#stacks_in_38840 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38840 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38840 > .jack{overflow:hidden;}#stacks_in_38840 > .jack.height-static{height:100px}#stacks_in_38840 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38841 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38841 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38841 .fluid-image.unlimited img{width:100% !important}#stacks_in_38841 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38841 .fluid-image.align-left img{float:left}#stacks_in_38841 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38844Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38844Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38844Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38844Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38844Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38844Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38844Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38844Calligrapher h6, .stacks_in_38844Calligrapher h5, .stacks_in_38844Calligrapher h4, .stacks_in_38844Calligrapher h3, .stacks_in_38844Calligrapher h2, .stacks_in_38844Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38844Calligrapher, .stacks_in_38844Calligrapher h1, .stacks_in_38844Calligrapher h2, .stacks_in_38844Calligrapher h3, .stacks_in_38844Calligrapher h4, .stacks_in_38844Calligrapher h5, .stacks_in_38844Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38844targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38844Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38844Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38844Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38844Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38844 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38845 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38848 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38850 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38852Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38852Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38852Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38852Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38852Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38852Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38852Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38852Calligrapher h6, .stacks_in_38852Calligrapher h5, .stacks_in_38852Calligrapher h4, .stacks_in_38852Calligrapher h3, .stacks_in_38852Calligrapher h2, .stacks_in_38852Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38852Calligrapher, .stacks_in_38852Calligrapher h1, .stacks_in_38852Calligrapher h2, .stacks_in_38852Calligrapher h3, .stacks_in_38852Calligrapher h4, .stacks_in_38852Calligrapher h5, .stacks_in_38852Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38852targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38852Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38852Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38852Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38852Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38852 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38853 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38855 {
	line-height: 2em;
}
#stacks_in_38856{}#stacks_in_38856 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38856 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38856 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38856 > .jack.width-static{width:500px}#stacks_in_38856 > .jack.width-flexible{width:100%}#stacks_in_38856 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38856 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38856 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38856 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38856 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38856 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38856 > .jack::after{border-radius:15px}#stacks_in_38856 > .jack.border-detailed-radius,#stacks_in_38856 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38856 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38856 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38856 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38856 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38856 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38856 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38856 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38856 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38856 > .jack.bg-image:not(.glass){}#stacks_in_38856 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38856 > .jack.bg-image.glass.after,#stacks_in_38856 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38856 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38856 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38856 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38856 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38856 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38856 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38856 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38856 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38856 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38856 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38856 > .jack.bg-image.glass.after,#stacks_in_38856 > .glass.jack.bg-image::after{}#stacks_in_38856 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38856 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38856 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38856 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38856 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38856 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38856 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38856 > .jack.peek-shadow::before,#stacks_in_38856 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38856 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38856 > .jack{overflow:hidden;}#stacks_in_38856 > .jack.height-static{height:100px}#stacks_in_38856 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38857 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38857 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38857 .fluid-image.unlimited img{width:100% !important}#stacks_in_38857 .fluid-image.define_max img{width:100% !important;max-width:300px !important}#stacks_in_38857 .fluid-image.align-left img{float:left}#stacks_in_38857 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38860Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38860Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38860Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38860Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38860Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38860Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38860Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38860Calligrapher h6, .stacks_in_38860Calligrapher h5, .stacks_in_38860Calligrapher h4, .stacks_in_38860Calligrapher h3, .stacks_in_38860Calligrapher h2, .stacks_in_38860Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38860Calligrapher, .stacks_in_38860Calligrapher h1, .stacks_in_38860Calligrapher h2, .stacks_in_38860Calligrapher h3, .stacks_in_38860Calligrapher h4, .stacks_in_38860Calligrapher h5, .stacks_in_38860Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38860targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38860Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38860Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38860Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38860Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38860 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38861 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38864 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38866Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38866Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38866Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38866Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38866Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38866Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38866Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38866Calligrapher h6, .stacks_in_38866Calligrapher h5, .stacks_in_38866Calligrapher h4, .stacks_in_38866Calligrapher h3, .stacks_in_38866Calligrapher h2, .stacks_in_38866Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38866Calligrapher, .stacks_in_38866Calligrapher h1, .stacks_in_38866Calligrapher h2, .stacks_in_38866Calligrapher h3, .stacks_in_38866Calligrapher h4, .stacks_in_38866Calligrapher h5, .stacks_in_38866Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38866targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38866Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38866Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38866Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38866Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38866 {
	padding: 0px 20px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38867Calligrapher{			line-height: normal !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38867Calligrapher, .stacks_in_38867Calligrapher h1, .stacks_in_38867Calligrapher h2, .stacks_in_38867Calligrapher h3, .stacks_in_38867Calligrapher h4, .stacks_in_38867Calligrapher h5, .stacks_in_38867Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38867targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Calligrapher stack CSS code */
#stacks_in_38868 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38870 {
	line-height: 2em;
}
#stacks_in_30475{padding-left:0px;padding-right:0px;}#stacks_in_30475 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_30475 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30475 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30475 > .jack.width-static{width:500px}#stacks_in_30475 > .jack.width-flexible{width:100%}#stacks_in_30475 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30475 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30475 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30475 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30475 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30475 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30475 > .jack::after{border-radius:0px}#stacks_in_30475 > .jack.border-detailed-radius,#stacks_in_30475 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30475 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30475 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30475 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30475 > .jack.bg-image:not(.glass){background-image:url(../ueberblick_buecher_files/bgImage-30475.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30475 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30475 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30475 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_30475 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30475 > .jack.bg-image:not(.glass){}#stacks_in_30475 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30475 > .jack.bg-image.glass.after,#stacks_in_30475 > .glass.jack.bg-image::after{opacity:0.80;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../ueberblick_buecher_files/bgImage-30475.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30475 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30475 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30475 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30475 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30475 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30475 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30475 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30475 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_30475 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30475 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30475 > .jack.bg-image.glass.after,#stacks_in_30475 > .glass.jack.bg-image::after{}#stacks_in_30475 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30475 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30475 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_30475 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_30475 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_30475 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_30475 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_30475 > .jack.peek-shadow::before,#stacks_in_30475 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_30475 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30475 > .jack{overflow:hidden;}#stacks_in_30475 > .jack.height-static{height:20px}#stacks_in_30475 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_31771{padding-left:0px;padding-right:0px;}#stacks_in_31771 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31771 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31771 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31771 > .jack.width-static{width:500px}#stacks_in_31771 > .jack.width-flexible{width:100%}#stacks_in_31771 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31771 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31771 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31771 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31771 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31771 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31771 > .jack::after{border-radius:0px}#stacks_in_31771 > .jack.border-detailed-radius,#stacks_in_31771 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31771 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31771 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31771 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31771 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31771 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31771 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31771 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31771 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31771 > .jack.bg-image:not(.glass){}#stacks_in_31771 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31771 > .jack.bg-image.glass.after,#stacks_in_31771 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31771 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31771 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31771 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31771 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31771 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31771 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31771 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31771 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31771 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31771 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31771 > .jack.bg-image.glass.after,#stacks_in_31771 > .glass.jack.bg-image::after{}#stacks_in_31771 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31771 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31771 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_31771 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31771 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31771 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31771 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31771 > .jack.peek-shadow::before,#stacks_in_31771 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_31771 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31771 > .jack{overflow:visible;}#stacks_in_31771 > .jack.height-static{height:100px}#stacks_in_31771 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_31772 *,
#stacks_in_31772 *:before,
#stacks_in_31772 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_31774{}#stacks_in_31774 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31774 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31774 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31774 > .jack.width-static{width:500px}#stacks_in_31774 > .jack.width-flexible{width:100%}#stacks_in_31774 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31774 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31774 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31774 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31774 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31774 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31774 > .jack::after{border-radius:15px}#stacks_in_31774 > .jack.border-detailed-radius,#stacks_in_31774 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31774 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31774 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31774 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31774 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31774 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31774 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31774 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31774 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31774 > .jack.bg-image:not(.glass){}#stacks_in_31774 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31774 > .jack.bg-image.glass.after,#stacks_in_31774 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31774 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31774 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31774 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31774 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31774 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31774 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31774 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31774 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31774 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31774 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31774 > .jack.bg-image.glass.after,#stacks_in_31774 > .glass.jack.bg-image::after{}#stacks_in_31774 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31774 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31774 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31774 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31774 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31774 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31774 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31774 > .jack.peek-shadow::before,#stacks_in_31774 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31774 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31774 > .jack{overflow:hidden;}#stacks_in_31774 > .jack.height-static{height:100px}#stacks_in_31774 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_31774 {
	margin: 10px 0px 15px 0px;
}
#stacks_in_31776 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_31776 .jwresp_col{float:none} #stacks_in_31776 #jwresp_col2_stacks_in_31776{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_31776 #jwresp_col1_stacks_in_31776,#stacks_in_31776 #jwresp_col3_stacks_in_31776{width:32%}#stacks_in_31776 #jwresp_col1_stacks_in_31776{float:left}#stacks_in_31776 #jwresp_col3_stacks_in_31776{float:right} @media screen and (max-width:770px){#stacks_in_31776 #jwresp_col1_stacks_in_31776,#stacks_in_31776 #jwresp_col3_stacks_in_31776{margin-bottom:20px}#stacks_in_31776 #jwresp_col1_stacks_in_31776{width:49%}#stacks_in_31776 #jwresp_col3_stacks_in_31776{width:49%}#stacks_in_31776 #jwresp_col2_stacks_in_31776{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_31776 #jwresp_col1_stacks_in_31776,#stacks_in_31776 #jwresp_col3_stacks_in_31776,#stacks_in_31776 #jwresp_col2_stacks_in_31776{float:none;width:100%;display:block}#stacks_in_31776 #jwresp_col1_stacks_in_31776,#stacks_in_31776 #jwresp_col3_stacks_in_31776{margin-bottom:20px}} 

#stacks_in_31776 {
	margin: 10px 0px 10px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31777 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31777 .borderbuttonthing, #stacks_in_31777 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31777 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31779 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31779 .borderbuttonthing, #stacks_in_31779 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31779 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31781 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31781 .borderbuttonthing, #stacks_in_31781 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31781 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_31773{}#stacks_in_31773 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31773 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31773 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31773 > .jack.width-static{width:500px}#stacks_in_31773 > .jack.width-flexible{width:100%}#stacks_in_31773 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31773 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31773 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31773 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31773 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31773 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31773 > .jack::after{border-radius:15px}#stacks_in_31773 > .jack.border-detailed-radius,#stacks_in_31773 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31773 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31773 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31773 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31773 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31773 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31773 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31773 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31773 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31773 > .jack.bg-image:not(.glass){}#stacks_in_31773 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31773 > .jack.bg-image.glass.after,#stacks_in_31773 > .glass.jack.bg-image::after{opacity:0.40;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31773 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31773 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31773 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31773 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31773 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31773 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31773 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31773 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31773 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31773 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31773 > .jack.bg-image.glass.after,#stacks_in_31773 > .glass.jack.bg-image::after{}#stacks_in_31773 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31773 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31773 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31773 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31773 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31773 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31773 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31773 > .jack.peek-shadow::before,#stacks_in_31773 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31773 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31773 > .jack{overflow:hidden;}#stacks_in_31773 > .jack.height-static{height:100px}#stacks_in_31773 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_31773 {
	margin: 25px 0px 15px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31785 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31785 .borderbuttonthing, #stacks_in_31785 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 15px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31785 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31785 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31786 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31786 .borderbuttonthing, #stacks_in_31786 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 15px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31786 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31786 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31787 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31787 .borderbuttonthing, #stacks_in_31787 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 15px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_31787 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31787 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_31789{padding-left:0px;padding-right:0px;}#stacks_in_31789 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31789 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31789 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31789 > .jack.width-static{width:500px}#stacks_in_31789 > .jack.width-flexible{width:100%}#stacks_in_31789 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31789 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31789 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31789 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31789 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31789 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31789 > .jack::after{border-radius:0px}#stacks_in_31789 > .jack.border-detailed-radius,#stacks_in_31789 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31789 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31789 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31789 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31789 > .jack.bg-image:not(.glass){background-image:url(../ueberblick_buecher_files/bgImage-31789.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31789 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31789 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31789 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_31789 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31789 > .jack.bg-image:not(.glass){}#stacks_in_31789 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31789 > .jack.bg-image.glass.after,#stacks_in_31789 > .glass.jack.bg-image::after{opacity:0.80;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../ueberblick_buecher_files/bgImage-31789.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31789 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31789 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31789 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31789 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31789 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31789 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31789 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31789 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_31789 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31789 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31789 > .jack.bg-image.glass.after,#stacks_in_31789 > .glass.jack.bg-image::after{}#stacks_in_31789 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31789 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31789 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_31789 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31789 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31789 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31789 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31789 > .jack.peek-shadow::before,#stacks_in_31789 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_31789 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31789 > .jack{overflow:hidden;}#stacks_in_31789 > .jack.height-static{height:120px}#stacks_in_31789 > .jack.height-minmax{min-height:100px;max-height:800px}
