@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_30245{padding-right:0.00px;padding-left:0.00px;}#stacks_in_30245 > .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_30245 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30245 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30245 > .jack.width-static{width:500px}#stacks_in_30245 > .jack.width-flexible{width:100%}#stacks_in_30245 > .jack.margin-detailed{margin:10.00px 0.00px 10.00px 0.00px}#stacks_in_30245 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30245 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30245 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30245 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30245 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30245 > .jack::after{border-radius:0px}#stacks_in_30245 > .jack.border-detailed-radius,#stacks_in_30245 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30245 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30245 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30245 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30245 > .jack.bg-image:not(.glass){background-image:url(../schule_files/bgImage-30245.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30245 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30245 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30245 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_30245 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30245 > .jack.bg-image:not(.glass){}#stacks_in_30245 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30245 > .jack.bg-image.glass.after,#stacks_in_30245 > .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(../schule_files/bgImage-30245.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30245 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30245 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30245 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30245 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30245 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30245 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30245 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30245 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_30245 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30245 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30245 > .jack.bg-image.glass.after,#stacks_in_30245 > .glass.jack.bg-image::after{}#stacks_in_30245 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30245 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30245 > .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_30245 > .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_30245 > .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_30245 > .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_30245 > .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_30245 > .jack.peek-shadow::before,#stacks_in_30245 > .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_30245 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30245 > .jack{overflow:hidden;}#stacks_in_30245 > .jack.height-static{height:50px}#stacks_in_30245 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_31556{}#stacks_in_31556 > .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_31556 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31556 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31556 > .jack.width-static{width:500px}#stacks_in_31556 > .jack.width-flexible{width:100%}#stacks_in_31556 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31556 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31556 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31556 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31556 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31556 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31556 > .jack::after{border-radius:15px}#stacks_in_31556 > .jack.border-detailed-radius,#stacks_in_31556 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31556 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31556 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31556 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_31556 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31556 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31556 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31556 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31556 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31556 > .jack.bg-image:not(.glass){}#stacks_in_31556 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31556 > .jack.bg-image.glass.after,#stacks_in_31556 > .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_31556 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31556 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31556 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31556 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31556 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31556 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31556 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31556 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31556 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31556 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31556 > .jack.bg-image.glass.after,#stacks_in_31556 > .glass.jack.bg-image::after{}#stacks_in_31556 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31556 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31556 > .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_31556 > .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_31556 > .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_31556 > .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_31556 > .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_31556 > .jack.peek-shadow::before,#stacks_in_31556 > .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_31556 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31556 > .jack{overflow:hidden;}#stacks_in_31556 > .jack.height-static{height:100px}#stacks_in_31556 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31539Calligrapher{			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_31539Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31539Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31539Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31539Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31539Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31539Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31539Calligrapher h6, .stacks_in_31539Calligrapher h5, .stacks_in_31539Calligrapher h4, .stacks_in_31539Calligrapher h3, .stacks_in_31539Calligrapher h2, .stacks_in_31539Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31539Calligrapher, .stacks_in_31539Calligrapher h1, .stacks_in_31539Calligrapher h2, .stacks_in_31539Calligrapher h3, .stacks_in_31539Calligrapher h4, .stacks_in_31539Calligrapher h5, .stacks_in_31539Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31539Calligrapher, .stacks_in_31539Calligrapher h1, .stacks_in_31539Calligrapher h2, .stacks_in_31539Calligrapher h3, .stacks_in_31539Calligrapher h4, .stacks_in_31539Calligrapher h5, .stacks_in_31539Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31539targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31539Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31539Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31539Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31539Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_31540x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31540x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31540x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31540 {
	margin: 40px 0px 10px 0px;
}

#stacks_in_31541 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31543Calligrapher{			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_31543Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31543Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31543Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31543Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31543Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31543Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31543Calligrapher h6, .stacks_in_31543Calligrapher h5, .stacks_in_31543Calligrapher h4, .stacks_in_31543Calligrapher h3, .stacks_in_31543Calligrapher h2, .stacks_in_31543Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31543Calligrapher, .stacks_in_31543Calligrapher h1, .stacks_in_31543Calligrapher h2, .stacks_in_31543Calligrapher h3, .stacks_in_31543Calligrapher h4, .stacks_in_31543Calligrapher h5, .stacks_in_31543Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31543Calligrapher, .stacks_in_31543Calligrapher h1, .stacks_in_31543Calligrapher h2, .stacks_in_31543Calligrapher h3, .stacks_in_31543Calligrapher h4, .stacks_in_31543Calligrapher h5, .stacks_in_31543Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31543targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31543Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31543Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31543Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31543Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31543 {
	margin: 0px 0px 20px 0px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31544x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31544x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31544x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31544 {
	margin: 0px 0px 20px 0px;
}

#stacks_in_31545 {
	font-weight: lighter;
}
#stacks_in_31558{}#stacks_in_31558 > .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_31558 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31558 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31558 > .jack.width-static{width:500px}#stacks_in_31558 > .jack.width-flexible{width:100%}#stacks_in_31558 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31558 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31558 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31558 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31558 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31558 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31558 > .jack::after{border-radius:15px}#stacks_in_31558 > .jack.border-detailed-radius,#stacks_in_31558 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31558 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31558 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31558 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_31558 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31558 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31558 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31558 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31558 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31558 > .jack.bg-image:not(.glass){}#stacks_in_31558 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31558 > .jack.bg-image.glass.after,#stacks_in_31558 > .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_31558 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31558 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31558 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31558 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31558 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31558 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31558 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31558 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31558 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31558 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31558 > .jack.bg-image.glass.after,#stacks_in_31558 > .glass.jack.bg-image::after{}#stacks_in_31558 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31558 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31558 > .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_31558 > .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_31558 > .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_31558 > .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_31558 > .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_31558 > .jack.peek-shadow::before,#stacks_in_31558 > .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_31558 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31558 > .jack{overflow:hidden;}#stacks_in_31558 > .jack.height-static{height:100px}#stacks_in_31558 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31548Calligrapher{			font-size: 90% !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_31548Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31548Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31548Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31548Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31548Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31548Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31548Calligrapher h6, .stacks_in_31548Calligrapher h5, .stacks_in_31548Calligrapher h4, .stacks_in_31548Calligrapher h3, .stacks_in_31548Calligrapher h2, .stacks_in_31548Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31548Calligrapher, .stacks_in_31548Calligrapher h1, .stacks_in_31548Calligrapher h2, .stacks_in_31548Calligrapher h3, .stacks_in_31548Calligrapher h4, .stacks_in_31548Calligrapher h5, .stacks_in_31548Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31548Calligrapher, .stacks_in_31548Calligrapher h1, .stacks_in_31548Calligrapher h2, .stacks_in_31548Calligrapher h3, .stacks_in_31548Calligrapher h4, .stacks_in_31548Calligrapher h5, .stacks_in_31548Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31548targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31548Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31548Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31548Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31548Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_31549x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31549x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31549x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31549 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_31550 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31552Calligrapher{			font-size: 80% !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_31552Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31552Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31552Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31552Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31552Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31552Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31552Calligrapher h6, .stacks_in_31552Calligrapher h5, .stacks_in_31552Calligrapher h4, .stacks_in_31552Calligrapher h3, .stacks_in_31552Calligrapher h2, .stacks_in_31552Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31552Calligrapher, .stacks_in_31552Calligrapher h1, .stacks_in_31552Calligrapher h2, .stacks_in_31552Calligrapher h3, .stacks_in_31552Calligrapher h4, .stacks_in_31552Calligrapher h5, .stacks_in_31552Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31552Calligrapher, .stacks_in_31552Calligrapher h1, .stacks_in_31552Calligrapher h2, .stacks_in_31552Calligrapher h3, .stacks_in_31552Calligrapher h4, .stacks_in_31552Calligrapher h5, .stacks_in_31552Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31552targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31552Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31552Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31552Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31552Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_31553x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31553x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31553x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31553 {
	margin: 0px 0px 20px 0px;
}

#stacks_in_31536 {
	font-weight: lighter;
}
#stacks_in_31561 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_31561 .jwresp_col{float:none} #stacks_in_31561 #jwresp_col3_stacks_in_31561{float:right;width:32%}#stacks_in_31561 #jwresp_col1_stacks_in_31561,#stacks_in_31561 #jwresp_col2_stacks_in_31561{width:32%;float:left}#stacks_in_31561 #jwresp_col1_stacks_in_31561{margin-right:1%}#stacks_in_31561 #jwresp_col2_stacks_in_31561{margin-left:1%} @media screen and (max-width:770px){#stacks_in_31561 #jwresp_col1_stacks_in_31561,#stacks_in_31561 #jwresp_col2_stacks_in_31561{margin:0;margin-bottom:20px}#stacks_in_31561 #jwresp_col1_stacks_in_31561{width:49%}#stacks_in_31561 #jwresp_col2_stacks_in_31561{float:right;width:49%}#stacks_in_31561 #jwresp_col3_stacks_in_31561{float:none;clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_31561 #jwresp_col1_stacks_in_31561,#stacks_in_31561 #jwresp_col3_stacks_in_31561,#stacks_in_31561 #jwresp_col2_stacks_in_31561{float:none;width:100%;display:block}#stacks_in_31561 #jwresp_col1_stacks_in_31561,#stacks_in_31561 #jwresp_col2_stacks_in_31561{margin-bottom:20px}} 

#stacks_in_31561 {
	margin: 20px 0px 0px 0px;
}
#stacks_in_31562 *,
#stacks_in_31562 *:before,
#stacks_in_31562 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_4999{}#stacks_in_4999 > .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_4999 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_4999 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_4999 > .jack.width-static{width:500px}#stacks_in_4999 > .jack.width-flexible{width:100%}#stacks_in_4999 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_4999 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_4999 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_4999 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_4999 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_4999 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_4999 > .jack::after{border-radius:15px}#stacks_in_4999 > .jack.border-detailed-radius,#stacks_in_4999 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_4999 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_4999 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_4999 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_4999 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_4999 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_4999 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_4999 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_4999 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_4999 > .jack.bg-image:not(.glass){}#stacks_in_4999 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_4999 > .jack.bg-image.glass.after,#stacks_in_4999 > .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_4999 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_4999 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_4999 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_4999 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_4999 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_4999 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_4999 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_4999 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_4999 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_4999 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_4999 > .jack.bg-image.glass.after,#stacks_in_4999 > .glass.jack.bg-image::after{}#stacks_in_4999 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_4999 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_4999 > .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_4999 > .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_4999 > .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_4999 > .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_4999 > .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_4999 > .jack.peek-shadow::before,#stacks_in_4999 > .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_4999 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_4999 > .jack{overflow:hidden;}#stacks_in_4999 > .jack.height-static{height:860px}#stacks_in_4999 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31565Calligrapher{			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_31565Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31565Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31565Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31565Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31565Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31565Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31565Calligrapher h6, .stacks_in_31565Calligrapher h5, .stacks_in_31565Calligrapher h4, .stacks_in_31565Calligrapher h3, .stacks_in_31565Calligrapher h2, .stacks_in_31565Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31565Calligrapher, .stacks_in_31565Calligrapher h1, .stacks_in_31565Calligrapher h2, .stacks_in_31565Calligrapher h3, .stacks_in_31565Calligrapher h4, .stacks_in_31565Calligrapher h5, .stacks_in_31565Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31565Calligrapher, .stacks_in_31565Calligrapher h1, .stacks_in_31565Calligrapher h2, .stacks_in_31565Calligrapher h3, .stacks_in_31565Calligrapher h4, .stacks_in_31565Calligrapher h5, .stacks_in_31565Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31565targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31565Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31565Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31565Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31565Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31565 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31566x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31566x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31566x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31566 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31567 {
	font-weight: lighter;
}
/* LinkThing by RapidWeaver Central  */



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

.link_effect1stacks_in_31569 a:before, .link_effect1stacks_in_31569 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_31569 a:after {
  right: 50%;
  left: auto;
}

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

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

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



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

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

#stacks_in_31569 .link_effect2stacks_in_31569 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

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

#stacks_in_31569 .link_effect3stacks_in_31569 {
  	text-decoration: none;
}

#stacks_in_31569 .link_effect3stacks_in_31569 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_31569 .link_effect3stacks_in_31569 a:hover,
#stacks_in_31569 .link_effect3stacks_in_31569 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



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

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

#stacks_in_31569 .link_effect4stacks_in_31569 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_31569 .link_effect4stacks_in_31569 a::before,
#stacks_in_31569 .link_effect%stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31569 .link_effect4stacks_in_31569 {
}

#stacks_in_31569 .link_effect4stacks_in_31569 a {
	font-weight:bold !important;;
}

#stacks_in_31569 .link_effect4stacks_in_31569 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_31569 .link_effect4stacks_in_31569 a:hover::before,
#stacks_in_31569 .link_effect4stacks_in_31569 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




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


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

#stacks_in_31569 .link_effect5stacks_in_31569 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_31569 .link_effect5stacks_in_31569 a::before,
#stacks_in_31569 .link_effect5stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31569 .link_effect5stacks_in_31569 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_31569 .link_effect5stacks_in_31569 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_31569 .link_effect5stacks_in_31569 a:hover::before,
#stacks_in_31569 .link_effect5stacks_in_31569 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





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

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

#stacks_in_31569 .link_effect6stacks_in_31569 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_31569 .link_effect6stacks_in_31569 a::before,
#stacks_in_31569 .link_effect6stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31569 .link_effect6stacks_in_31569 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31569 .link_effect6stacks_in_31569 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_31569 .link_effect6stacks_in_31569 a:hover::before,
#stacks_in_31569 .link_effect6stacks_in_31569 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




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

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

#stacks_in_31569 .link_effect7stacks_in_31569 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_31569 .link_effect7stacks_in_31569 a::before,
#stacks_in_31569 .link_effect7stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31569 .link_effect7stacks_in_31569 {
	position: relative;
}

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


#stacks_in_31569 .link_effect7stacks_in_31569 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_31569 .link_effect7stacks_in_31569 a:hover::before,
#stacks_in_31569 .link_effect7stacks_in_31569 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





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

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

#stacks_in_31569 .link_effect8stacks_in_31569 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_31569 .link_effect8stacks_in_31569 a::before,
#stacks_in_31569 .link_effect8stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



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

#stacks_in_31569 .link_effect8stacks_in_31569 a:hover,
#stacks_in_31569 .link_effect8stacks_in_31569 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31569 .link_effect8stacks_in_31569 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_31569 .link_effect8stacks_in_31569 a:hover::before,
#stacks_in_31569 .link_effect8stacks_in_31569 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_31569 .link_effect9stacks_in_31569 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31569 .link_effect9stacks_in_31569 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_31569 .link_effect9stacks_in_31569 a::before,
#stacks_in_31569 .link_effect9stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31569 .link_effect9stacks_in_31569 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_31569 .link_effect9stacks_in_31569 a:hover,
#stacks_in_31569 .link_effect9stacks_in_31569 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31569 .link_effect9stacks_in_31569 a::before,
#stacks_in_31569 .link_effect9stacks_in_31569 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_31569 .link_effect9stacks_in_31569 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_31569 .link_effect9stacks_in_31569 a:hover::before,
#stacks_in_31569 .link_effect9stacks_in_31569 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_31569 .link_effect9stacks_in_31569 a::after {
	border-bottom: 2px solid  #DA4453;
}



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

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

#stacks_in_31569 .link_effect10stacks_in_31569 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_31569 .link_effect10stacks_in_31569 a::before,
#stacks_in_31569 .link_effect10stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

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

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

#stacks_in_31569 .link_effect10stacks_in_31569 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_31569 .link_effect10stacks_in_31569 a:hover::before,
#stacks_in_31569 .link_effect10stacks_in_31569 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



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

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

#stacks_in_31569 .link_effect11stacks_in_31569 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_31569 .link_effect11stacks_in_31569 a::before,
#stacks_in_31569 .link_effect11stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


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

#stacks_in_31569 .link_effect11stacks_in_31569 a:hover,
#stacks_in_31569 .link_effect11stacks_in_31569 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31569 .link_effect11stacks_in_31569 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_31569 .link_effect11stacks_in_31569 a:hover::before,
#stacks_in_31569 .link_effect11stacks_in_31569 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




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

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

#stacks_in_31569 .link_effect12stacks_in_31569 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_31569 .link_effect12stacks_in_31569 a::before,
#stacks_in_31569 .link_effect12stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

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

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

#stacks_in_31569 .link_effect12stacks_in_31569 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_31569 .link_effect12stacks_in_31569 a,
#stacks_in_31569 .link_effect12stacks_in_31569 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_31569 .link_effect12stacks_in_31569 a:hover::before,
#stacks_in_31569 .link_effect12stacks_in_31569 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


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

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

#stacks_in_31569 .link_effect13stacks_in_31569 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_31569 .link_effect13stacks_in_31569 a::before,
#stacks_in_31569 .link_effect13stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31569 .link_effect13stacks_in_31569 {
}

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

#stacks_in_31569 .link_effect13stacks_in_31569 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(../schule_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_31569 .link_effect13stacks_in_31569 a:hover::before,
#stacks_in_31569 .link_effect13stacks_in_31569 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_31569 .link_effect14stacks_in_31569 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31569 .link_effect14stacks_in_31569 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_31569 .link_effect14stacks_in_31569 a::before,
#stacks_in_31569 .link_effect14stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31569 .link_effect14stacks_in_31569 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_31569 .link_effect14stacks_in_31569 a:hover,
#stacks_in_31569 .link_effect14stacks_in_31569 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

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

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

#stacks_in_31569 .link_effect14stacks_in_31569 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../schule_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_31569 .link_effect14stacks_in_31569 a:hover::after,
#stacks_in_31569 .link_effect14stacks_in_31569 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


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

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

#stacks_in_31569 .link_effect15stacks_in_31569 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_31569 .link_effect15stacks_in_31569 a::before,
#stacks_in_31569 .link_effect15stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31569 .link_effect15stacks_in_31569 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31569 .link_effect15stacks_in_31569 a::before,
#stacks_in_31569 .link_effect15stacks_in_31569 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_31569 .link_effect15stacks_in_31569 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_31569 .link_effect15stacks_in_31569 a:hover::before,
#stacks_in_31569 .link_effect15stacks_in_31569 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

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

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

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



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

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

#stacks_in_31569 .link_effect16stacks_in_31569 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_31569 .link_effect16stacks_in_31569 a::before,
#stacks_in_31569 .link_effect16stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

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

#stacks_in_31569 .link_effect16stacks_in_31569 a:hover {
	color: #d04c3f;
}

#stacks_in_31569 .link_effect16stacks_in_31569 a::before,
#stacks_in_31569 .link_effect16stacks_in_31569 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_31569 .link_effect16stacks_in_31569 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

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

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



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

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

#stacks_in_31569 .link_effect17stacks_in_31569 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_31569 .link_effect17stacks_in_31569 a:hover:after {
  	width: 0;
}


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

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

#stacks_in_31569 .link_effect18stacks_in_31569 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_31569 .link_effect18stacks_in_31569 a::before,
#stacks_in_31569 .link_effect18stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31569 .link_effect18stacks_in_31569 {
}

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

#stacks_in_31569 .link_effect18stacks_in_31569 a::before,
#stacks_in_31569 .link_effect18stacks_in_31569 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_31569 .link_effect18stacks_in_31569 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

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

#stacks_in_31569 .link_effect18stacks_in_31569 a:hover,
#stacks_in_31569 .link_effect18stacks_in_31569 a:focus {
	color: #fff;
}

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





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


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

#stacks_in_31569 .link_effect19stacks_in_31569 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_31569 .link_effect19stacks_in_31569 a::before,
#stacks_in_31569 .link_effect19stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_31569 a {
}

.link_effect19stacks_in_31569 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_31569 a:hover::after,
.link_effect19stacks_in_31569 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



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

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

#stacks_in_31569 .link_effect20stacks_in_31569 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_31569 .link_effect20stacks_in_31569 a::before,
#stacks_in_31569 .link_effect20stacks_in_31569 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_31569 a {
}

.link_effect20stacks_in_31569 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_31569 a:hover::after,
.link_effect20stacks_in_31569 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31570Calligrapher{			font-size: 110% !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_31570Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31570Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31570Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31570Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31570Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31570Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31570Calligrapher h6, .stacks_in_31570Calligrapher h5, .stacks_in_31570Calligrapher h4, .stacks_in_31570Calligrapher h3, .stacks_in_31570Calligrapher h2, .stacks_in_31570Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31570Calligrapher, .stacks_in_31570Calligrapher h1, .stacks_in_31570Calligrapher h2, .stacks_in_31570Calligrapher h3, .stacks_in_31570Calligrapher h4, .stacks_in_31570Calligrapher h5, .stacks_in_31570Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31570Calligrapher, .stacks_in_31570Calligrapher h1, .stacks_in_31570Calligrapher h2, .stacks_in_31570Calligrapher h3, .stacks_in_31570Calligrapher h4, .stacks_in_31570Calligrapher h5, .stacks_in_31570Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31570targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31570Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31570Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31570Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31570Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31570 {
	margin: 0px 25px 15px 25px;
}

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

#stacks_in_1746 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31577 *,
#stacks_in_31577 *:before,
#stacks_in_31577 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_5485{}#stacks_in_5485 > .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_5485 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_5485 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_5485 > .jack.width-static{width:500px}#stacks_in_5485 > .jack.width-flexible{width:100%}#stacks_in_5485 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_5485 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_5485 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_5485 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_5485 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_5485 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_5485 > .jack::after{border-radius:15px}#stacks_in_5485 > .jack.border-detailed-radius,#stacks_in_5485 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_5485 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_5485 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_5485 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_5485 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_5485 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_5485 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_5485 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_5485 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_5485 > .jack.bg-image:not(.glass){}#stacks_in_5485 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_5485 > .jack.bg-image.glass.after,#stacks_in_5485 > .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_5485 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_5485 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_5485 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_5485 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_5485 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_5485 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_5485 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_5485 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_5485 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_5485 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_5485 > .jack.bg-image.glass.after,#stacks_in_5485 > .glass.jack.bg-image::after{}#stacks_in_5485 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_5485 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_5485 > .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_5485 > .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_5485 > .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_5485 > .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_5485 > .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_5485 > .jack.peek-shadow::before,#stacks_in_5485 > .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_5485 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_5485 > .jack{overflow:hidden;}#stacks_in_5485 > .jack.height-static{height:860px}#stacks_in_5485 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31606Calligrapher{			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_31606Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31606Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31606Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31606Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31606Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31606Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31606Calligrapher h6, .stacks_in_31606Calligrapher h5, .stacks_in_31606Calligrapher h4, .stacks_in_31606Calligrapher h3, .stacks_in_31606Calligrapher h2, .stacks_in_31606Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31606Calligrapher, .stacks_in_31606Calligrapher h1, .stacks_in_31606Calligrapher h2, .stacks_in_31606Calligrapher h3, .stacks_in_31606Calligrapher h4, .stacks_in_31606Calligrapher h5, .stacks_in_31606Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31606Calligrapher, .stacks_in_31606Calligrapher h1, .stacks_in_31606Calligrapher h2, .stacks_in_31606Calligrapher h3, .stacks_in_31606Calligrapher h4, .stacks_in_31606Calligrapher h5, .stacks_in_31606Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31606targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31606Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31606Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31606Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31606Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31606 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31608x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31608x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31608x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31608 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31607 {
	font-weight: lighter;
}
/* LinkThing by RapidWeaver Central  */



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

.link_effect1stacks_in_31610 a:before, .link_effect1stacks_in_31610 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_31610 a:after {
  right: 50%;
  left: auto;
}

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

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

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



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

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

#stacks_in_31610 .link_effect2stacks_in_31610 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

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

#stacks_in_31610 .link_effect3stacks_in_31610 {
  	text-decoration: none;
}

#stacks_in_31610 .link_effect3stacks_in_31610 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_31610 .link_effect3stacks_in_31610 a:hover,
#stacks_in_31610 .link_effect3stacks_in_31610 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



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

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

#stacks_in_31610 .link_effect4stacks_in_31610 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_31610 .link_effect4stacks_in_31610 a::before,
#stacks_in_31610 .link_effect%stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31610 .link_effect4stacks_in_31610 {
}

#stacks_in_31610 .link_effect4stacks_in_31610 a {
	font-weight:bold !important;;
}

#stacks_in_31610 .link_effect4stacks_in_31610 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_31610 .link_effect4stacks_in_31610 a:hover::before,
#stacks_in_31610 .link_effect4stacks_in_31610 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




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


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

#stacks_in_31610 .link_effect5stacks_in_31610 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_31610 .link_effect5stacks_in_31610 a::before,
#stacks_in_31610 .link_effect5stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31610 .link_effect5stacks_in_31610 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_31610 .link_effect5stacks_in_31610 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_31610 .link_effect5stacks_in_31610 a:hover::before,
#stacks_in_31610 .link_effect5stacks_in_31610 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





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

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

#stacks_in_31610 .link_effect6stacks_in_31610 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_31610 .link_effect6stacks_in_31610 a::before,
#stacks_in_31610 .link_effect6stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31610 .link_effect6stacks_in_31610 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31610 .link_effect6stacks_in_31610 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_31610 .link_effect6stacks_in_31610 a:hover::before,
#stacks_in_31610 .link_effect6stacks_in_31610 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




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

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

#stacks_in_31610 .link_effect7stacks_in_31610 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_31610 .link_effect7stacks_in_31610 a::before,
#stacks_in_31610 .link_effect7stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31610 .link_effect7stacks_in_31610 {
	position: relative;
}

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


#stacks_in_31610 .link_effect7stacks_in_31610 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_31610 .link_effect7stacks_in_31610 a:hover::before,
#stacks_in_31610 .link_effect7stacks_in_31610 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





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

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

#stacks_in_31610 .link_effect8stacks_in_31610 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_31610 .link_effect8stacks_in_31610 a::before,
#stacks_in_31610 .link_effect8stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



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

#stacks_in_31610 .link_effect8stacks_in_31610 a:hover,
#stacks_in_31610 .link_effect8stacks_in_31610 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31610 .link_effect8stacks_in_31610 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_31610 .link_effect8stacks_in_31610 a:hover::before,
#stacks_in_31610 .link_effect8stacks_in_31610 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_31610 .link_effect9stacks_in_31610 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31610 .link_effect9stacks_in_31610 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_31610 .link_effect9stacks_in_31610 a::before,
#stacks_in_31610 .link_effect9stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31610 .link_effect9stacks_in_31610 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_31610 .link_effect9stacks_in_31610 a:hover,
#stacks_in_31610 .link_effect9stacks_in_31610 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31610 .link_effect9stacks_in_31610 a::before,
#stacks_in_31610 .link_effect9stacks_in_31610 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_31610 .link_effect9stacks_in_31610 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_31610 .link_effect9stacks_in_31610 a:hover::before,
#stacks_in_31610 .link_effect9stacks_in_31610 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_31610 .link_effect9stacks_in_31610 a::after {
	border-bottom: 2px solid  #DA4453;
}



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

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

#stacks_in_31610 .link_effect10stacks_in_31610 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_31610 .link_effect10stacks_in_31610 a::before,
#stacks_in_31610 .link_effect10stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

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

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

#stacks_in_31610 .link_effect10stacks_in_31610 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_31610 .link_effect10stacks_in_31610 a:hover::before,
#stacks_in_31610 .link_effect10stacks_in_31610 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



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

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

#stacks_in_31610 .link_effect11stacks_in_31610 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_31610 .link_effect11stacks_in_31610 a::before,
#stacks_in_31610 .link_effect11stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


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

#stacks_in_31610 .link_effect11stacks_in_31610 a:hover,
#stacks_in_31610 .link_effect11stacks_in_31610 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31610 .link_effect11stacks_in_31610 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_31610 .link_effect11stacks_in_31610 a:hover::before,
#stacks_in_31610 .link_effect11stacks_in_31610 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




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

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

#stacks_in_31610 .link_effect12stacks_in_31610 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_31610 .link_effect12stacks_in_31610 a::before,
#stacks_in_31610 .link_effect12stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

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

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

#stacks_in_31610 .link_effect12stacks_in_31610 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_31610 .link_effect12stacks_in_31610 a,
#stacks_in_31610 .link_effect12stacks_in_31610 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_31610 .link_effect12stacks_in_31610 a:hover::before,
#stacks_in_31610 .link_effect12stacks_in_31610 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


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

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

#stacks_in_31610 .link_effect13stacks_in_31610 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_31610 .link_effect13stacks_in_31610 a::before,
#stacks_in_31610 .link_effect13stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31610 .link_effect13stacks_in_31610 {
}

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

#stacks_in_31610 .link_effect13stacks_in_31610 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(../schule_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_31610 .link_effect13stacks_in_31610 a:hover::before,
#stacks_in_31610 .link_effect13stacks_in_31610 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_31610 .link_effect14stacks_in_31610 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31610 .link_effect14stacks_in_31610 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_31610 .link_effect14stacks_in_31610 a::before,
#stacks_in_31610 .link_effect14stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31610 .link_effect14stacks_in_31610 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_31610 .link_effect14stacks_in_31610 a:hover,
#stacks_in_31610 .link_effect14stacks_in_31610 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

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

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

#stacks_in_31610 .link_effect14stacks_in_31610 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../schule_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_31610 .link_effect14stacks_in_31610 a:hover::after,
#stacks_in_31610 .link_effect14stacks_in_31610 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


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

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

#stacks_in_31610 .link_effect15stacks_in_31610 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_31610 .link_effect15stacks_in_31610 a::before,
#stacks_in_31610 .link_effect15stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31610 .link_effect15stacks_in_31610 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31610 .link_effect15stacks_in_31610 a::before,
#stacks_in_31610 .link_effect15stacks_in_31610 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_31610 .link_effect15stacks_in_31610 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_31610 .link_effect15stacks_in_31610 a:hover::before,
#stacks_in_31610 .link_effect15stacks_in_31610 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

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

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

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



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

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

#stacks_in_31610 .link_effect16stacks_in_31610 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_31610 .link_effect16stacks_in_31610 a::before,
#stacks_in_31610 .link_effect16stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

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

#stacks_in_31610 .link_effect16stacks_in_31610 a:hover {
	color: #d04c3f;
}

#stacks_in_31610 .link_effect16stacks_in_31610 a::before,
#stacks_in_31610 .link_effect16stacks_in_31610 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_31610 .link_effect16stacks_in_31610 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

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

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



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

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

#stacks_in_31610 .link_effect17stacks_in_31610 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_31610 .link_effect17stacks_in_31610 a:hover:after {
  	width: 0;
}


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

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

#stacks_in_31610 .link_effect18stacks_in_31610 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_31610 .link_effect18stacks_in_31610 a::before,
#stacks_in_31610 .link_effect18stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31610 .link_effect18stacks_in_31610 {
}

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

#stacks_in_31610 .link_effect18stacks_in_31610 a::before,
#stacks_in_31610 .link_effect18stacks_in_31610 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_31610 .link_effect18stacks_in_31610 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

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

#stacks_in_31610 .link_effect18stacks_in_31610 a:hover,
#stacks_in_31610 .link_effect18stacks_in_31610 a:focus {
	color: #fff;
}

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





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


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

#stacks_in_31610 .link_effect19stacks_in_31610 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_31610 .link_effect19stacks_in_31610 a::before,
#stacks_in_31610 .link_effect19stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_31610 a {
}

.link_effect19stacks_in_31610 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_31610 a:hover::after,
.link_effect19stacks_in_31610 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



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

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

#stacks_in_31610 .link_effect20stacks_in_31610 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_31610 .link_effect20stacks_in_31610 a::before,
#stacks_in_31610 .link_effect20stacks_in_31610 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_31610 a {
}

.link_effect20stacks_in_31610 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_31610 a:hover::after,
.link_effect20stacks_in_31610 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31612Calligrapher{			font-size: 110% !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_31612Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31612Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31612Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31612Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31612Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31612Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31612Calligrapher h6, .stacks_in_31612Calligrapher h5, .stacks_in_31612Calligrapher h4, .stacks_in_31612Calligrapher h3, .stacks_in_31612Calligrapher h2, .stacks_in_31612Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31612Calligrapher, .stacks_in_31612Calligrapher h1, .stacks_in_31612Calligrapher h2, .stacks_in_31612Calligrapher h3, .stacks_in_31612Calligrapher h4, .stacks_in_31612Calligrapher h5, .stacks_in_31612Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31612Calligrapher, .stacks_in_31612Calligrapher h1, .stacks_in_31612Calligrapher h2, .stacks_in_31612Calligrapher h3, .stacks_in_31612Calligrapher h4, .stacks_in_31612Calligrapher h5, .stacks_in_31612Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31612targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31612Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31612Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31612Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31612Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31612 {
	margin: 0px 25px 15px 25px;
}

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

#stacks_in_5492 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31592 *,
#stacks_in_31592 *:before,
#stacks_in_31592 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_31616{}#stacks_in_31616 > .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_31616 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31616 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31616 > .jack.width-static{width:500px}#stacks_in_31616 > .jack.width-flexible{width:100%}#stacks_in_31616 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31616 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31616 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31616 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31616 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31616 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31616 > .jack::after{border-radius:15px}#stacks_in_31616 > .jack.border-detailed-radius,#stacks_in_31616 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31616 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31616 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31616 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_31616 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31616 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31616 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31616 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31616 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31616 > .jack.bg-image:not(.glass){}#stacks_in_31616 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31616 > .jack.bg-image.glass.after,#stacks_in_31616 > .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_31616 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31616 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31616 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31616 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31616 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31616 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31616 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31616 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31616 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31616 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31616 > .jack.bg-image.glass.after,#stacks_in_31616 > .glass.jack.bg-image::after{}#stacks_in_31616 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31616 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31616 > .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_31616 > .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_31616 > .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_31616 > .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_31616 > .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_31616 > .jack.peek-shadow::before,#stacks_in_31616 > .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_31616 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31616 > .jack{overflow:hidden;}#stacks_in_31616 > .jack.height-static{height:860px}#stacks_in_31616 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31617Calligrapher{			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_31617Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31617Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31617Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31617Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31617Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31617Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31617Calligrapher h6, .stacks_in_31617Calligrapher h5, .stacks_in_31617Calligrapher h4, .stacks_in_31617Calligrapher h3, .stacks_in_31617Calligrapher h2, .stacks_in_31617Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31617Calligrapher, .stacks_in_31617Calligrapher h1, .stacks_in_31617Calligrapher h2, .stacks_in_31617Calligrapher h3, .stacks_in_31617Calligrapher h4, .stacks_in_31617Calligrapher h5, .stacks_in_31617Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31617Calligrapher, .stacks_in_31617Calligrapher h1, .stacks_in_31617Calligrapher h2, .stacks_in_31617Calligrapher h3, .stacks_in_31617Calligrapher h4, .stacks_in_31617Calligrapher h5, .stacks_in_31617Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31617targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31617Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31617Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31617Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31617Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31617 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31618x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31618x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31618x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31618 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31619 {
	font-weight: lighter;
}
/* LinkThing by RapidWeaver Central  */



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

.link_effect1stacks_in_31621 a:before, .link_effect1stacks_in_31621 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_31621 a:after {
  right: 50%;
  left: auto;
}

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

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

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



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

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

#stacks_in_31621 .link_effect2stacks_in_31621 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

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

#stacks_in_31621 .link_effect3stacks_in_31621 {
  	text-decoration: none;
}

#stacks_in_31621 .link_effect3stacks_in_31621 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_31621 .link_effect3stacks_in_31621 a:hover,
#stacks_in_31621 .link_effect3stacks_in_31621 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



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

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

#stacks_in_31621 .link_effect4stacks_in_31621 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_31621 .link_effect4stacks_in_31621 a::before,
#stacks_in_31621 .link_effect%stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31621 .link_effect4stacks_in_31621 {
}

#stacks_in_31621 .link_effect4stacks_in_31621 a {
	font-weight:bold !important;;
}

#stacks_in_31621 .link_effect4stacks_in_31621 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_31621 .link_effect4stacks_in_31621 a:hover::before,
#stacks_in_31621 .link_effect4stacks_in_31621 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




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


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

#stacks_in_31621 .link_effect5stacks_in_31621 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_31621 .link_effect5stacks_in_31621 a::before,
#stacks_in_31621 .link_effect5stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31621 .link_effect5stacks_in_31621 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_31621 .link_effect5stacks_in_31621 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_31621 .link_effect5stacks_in_31621 a:hover::before,
#stacks_in_31621 .link_effect5stacks_in_31621 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





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

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

#stacks_in_31621 .link_effect6stacks_in_31621 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_31621 .link_effect6stacks_in_31621 a::before,
#stacks_in_31621 .link_effect6stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31621 .link_effect6stacks_in_31621 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31621 .link_effect6stacks_in_31621 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_31621 .link_effect6stacks_in_31621 a:hover::before,
#stacks_in_31621 .link_effect6stacks_in_31621 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




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

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

#stacks_in_31621 .link_effect7stacks_in_31621 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_31621 .link_effect7stacks_in_31621 a::before,
#stacks_in_31621 .link_effect7stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31621 .link_effect7stacks_in_31621 {
	position: relative;
}

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


#stacks_in_31621 .link_effect7stacks_in_31621 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_31621 .link_effect7stacks_in_31621 a:hover::before,
#stacks_in_31621 .link_effect7stacks_in_31621 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





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

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

#stacks_in_31621 .link_effect8stacks_in_31621 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_31621 .link_effect8stacks_in_31621 a::before,
#stacks_in_31621 .link_effect8stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



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

#stacks_in_31621 .link_effect8stacks_in_31621 a:hover,
#stacks_in_31621 .link_effect8stacks_in_31621 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31621 .link_effect8stacks_in_31621 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_31621 .link_effect8stacks_in_31621 a:hover::before,
#stacks_in_31621 .link_effect8stacks_in_31621 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_31621 .link_effect9stacks_in_31621 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31621 .link_effect9stacks_in_31621 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_31621 .link_effect9stacks_in_31621 a::before,
#stacks_in_31621 .link_effect9stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31621 .link_effect9stacks_in_31621 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_31621 .link_effect9stacks_in_31621 a:hover,
#stacks_in_31621 .link_effect9stacks_in_31621 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31621 .link_effect9stacks_in_31621 a::before,
#stacks_in_31621 .link_effect9stacks_in_31621 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_31621 .link_effect9stacks_in_31621 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_31621 .link_effect9stacks_in_31621 a:hover::before,
#stacks_in_31621 .link_effect9stacks_in_31621 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_31621 .link_effect9stacks_in_31621 a::after {
	border-bottom: 2px solid  #DA4453;
}



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

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

#stacks_in_31621 .link_effect10stacks_in_31621 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_31621 .link_effect10stacks_in_31621 a::before,
#stacks_in_31621 .link_effect10stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

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

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

#stacks_in_31621 .link_effect10stacks_in_31621 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_31621 .link_effect10stacks_in_31621 a:hover::before,
#stacks_in_31621 .link_effect10stacks_in_31621 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



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

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

#stacks_in_31621 .link_effect11stacks_in_31621 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_31621 .link_effect11stacks_in_31621 a::before,
#stacks_in_31621 .link_effect11stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


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

#stacks_in_31621 .link_effect11stacks_in_31621 a:hover,
#stacks_in_31621 .link_effect11stacks_in_31621 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31621 .link_effect11stacks_in_31621 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_31621 .link_effect11stacks_in_31621 a:hover::before,
#stacks_in_31621 .link_effect11stacks_in_31621 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




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

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

#stacks_in_31621 .link_effect12stacks_in_31621 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_31621 .link_effect12stacks_in_31621 a::before,
#stacks_in_31621 .link_effect12stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

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

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

#stacks_in_31621 .link_effect12stacks_in_31621 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_31621 .link_effect12stacks_in_31621 a,
#stacks_in_31621 .link_effect12stacks_in_31621 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_31621 .link_effect12stacks_in_31621 a:hover::before,
#stacks_in_31621 .link_effect12stacks_in_31621 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


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

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

#stacks_in_31621 .link_effect13stacks_in_31621 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_31621 .link_effect13stacks_in_31621 a::before,
#stacks_in_31621 .link_effect13stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31621 .link_effect13stacks_in_31621 {
}

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

#stacks_in_31621 .link_effect13stacks_in_31621 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(../schule_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_31621 .link_effect13stacks_in_31621 a:hover::before,
#stacks_in_31621 .link_effect13stacks_in_31621 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_31621 .link_effect14stacks_in_31621 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31621 .link_effect14stacks_in_31621 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_31621 .link_effect14stacks_in_31621 a::before,
#stacks_in_31621 .link_effect14stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31621 .link_effect14stacks_in_31621 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_31621 .link_effect14stacks_in_31621 a:hover,
#stacks_in_31621 .link_effect14stacks_in_31621 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

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

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

#stacks_in_31621 .link_effect14stacks_in_31621 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../schule_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_31621 .link_effect14stacks_in_31621 a:hover::after,
#stacks_in_31621 .link_effect14stacks_in_31621 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


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

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

#stacks_in_31621 .link_effect15stacks_in_31621 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_31621 .link_effect15stacks_in_31621 a::before,
#stacks_in_31621 .link_effect15stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31621 .link_effect15stacks_in_31621 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31621 .link_effect15stacks_in_31621 a::before,
#stacks_in_31621 .link_effect15stacks_in_31621 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_31621 .link_effect15stacks_in_31621 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_31621 .link_effect15stacks_in_31621 a:hover::before,
#stacks_in_31621 .link_effect15stacks_in_31621 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

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

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

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



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

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

#stacks_in_31621 .link_effect16stacks_in_31621 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_31621 .link_effect16stacks_in_31621 a::before,
#stacks_in_31621 .link_effect16stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

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

#stacks_in_31621 .link_effect16stacks_in_31621 a:hover {
	color: #d04c3f;
}

#stacks_in_31621 .link_effect16stacks_in_31621 a::before,
#stacks_in_31621 .link_effect16stacks_in_31621 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_31621 .link_effect16stacks_in_31621 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

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

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



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

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

#stacks_in_31621 .link_effect17stacks_in_31621 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_31621 .link_effect17stacks_in_31621 a:hover:after {
  	width: 0;
}


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

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

#stacks_in_31621 .link_effect18stacks_in_31621 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_31621 .link_effect18stacks_in_31621 a::before,
#stacks_in_31621 .link_effect18stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31621 .link_effect18stacks_in_31621 {
}

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

#stacks_in_31621 .link_effect18stacks_in_31621 a::before,
#stacks_in_31621 .link_effect18stacks_in_31621 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_31621 .link_effect18stacks_in_31621 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

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

#stacks_in_31621 .link_effect18stacks_in_31621 a:hover,
#stacks_in_31621 .link_effect18stacks_in_31621 a:focus {
	color: #fff;
}

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





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


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

#stacks_in_31621 .link_effect19stacks_in_31621 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_31621 .link_effect19stacks_in_31621 a::before,
#stacks_in_31621 .link_effect19stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_31621 a {
}

.link_effect19stacks_in_31621 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_31621 a:hover::after,
.link_effect19stacks_in_31621 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



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

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

#stacks_in_31621 .link_effect20stacks_in_31621 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_31621 .link_effect20stacks_in_31621 a::before,
#stacks_in_31621 .link_effect20stacks_in_31621 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_31621 a {
}

.link_effect20stacks_in_31621 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_31621 a:hover::after,
.link_effect20stacks_in_31621 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31622Calligrapher{			font-size: 110% !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_31622Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31622Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31622Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31622Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31622Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31622Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31622Calligrapher h6, .stacks_in_31622Calligrapher h5, .stacks_in_31622Calligrapher h4, .stacks_in_31622Calligrapher h3, .stacks_in_31622Calligrapher h2, .stacks_in_31622Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31622Calligrapher, .stacks_in_31622Calligrapher h1, .stacks_in_31622Calligrapher h2, .stacks_in_31622Calligrapher h3, .stacks_in_31622Calligrapher h4, .stacks_in_31622Calligrapher h5, .stacks_in_31622Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31622Calligrapher, .stacks_in_31622Calligrapher h1, .stacks_in_31622Calligrapher h2, .stacks_in_31622Calligrapher h3, .stacks_in_31622Calligrapher h4, .stacks_in_31622Calligrapher h5, .stacks_in_31622Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31622targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31622Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31622Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31622Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31622Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31622 {
	margin: 0px 25px 15px 25px;
}

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

#stacks_in_5436 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31709{padding-left:0px;padding-right:0px;}#stacks_in_31709 > .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_31709 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31709 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31709 > .jack.width-static{width:500px}#stacks_in_31709 > .jack.width-flexible{width:100%}#stacks_in_31709 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31709 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31709 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31709 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31709 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31709 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31709 > .jack::after{border-radius:0px}#stacks_in_31709 > .jack.border-detailed-radius,#stacks_in_31709 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31709 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31709 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31709 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31709 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31709 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31709 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31709 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31709 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31709 > .jack.bg-image:not(.glass){}#stacks_in_31709 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31709 > .jack.bg-image.glass.after,#stacks_in_31709 > .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_31709 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31709 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31709 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31709 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31709 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31709 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31709 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31709 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31709 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31709 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31709 > .jack.bg-image.glass.after,#stacks_in_31709 > .glass.jack.bg-image::after{}#stacks_in_31709 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31709 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31709 > .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_31709 > .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_31709 > .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_31709 > .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_31709 > .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_31709 > .jack.peek-shadow::before,#stacks_in_31709 > .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_31709 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31709 > .jack{overflow:visible;}#stacks_in_31709 > .jack.height-static{height:100px}#stacks_in_31709 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_31665{}#stacks_in_31665 > .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_31665 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31665 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31665 > .jack.width-static{width:500px}#stacks_in_31665 > .jack.width-flexible{width:100%}#stacks_in_31665 > .jack.margin-detailed{margin:30.00px 0.00px 10.00px 0.00px}#stacks_in_31665 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31665 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31665 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31665 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31665 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31665 > .jack::after{border-radius:15px}#stacks_in_31665 > .jack.border-detailed-radius,#stacks_in_31665 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31665 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31665 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31665 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_31665 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31665 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31665 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31665 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31665 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31665 > .jack.bg-image:not(.glass){}#stacks_in_31665 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31665 > .jack.bg-image.glass.after,#stacks_in_31665 > .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_31665 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31665 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31665 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31665 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31665 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31665 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31665 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31665 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31665 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31665 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31665 > .jack.bg-image.glass.after,#stacks_in_31665 > .glass.jack.bg-image::after{}#stacks_in_31665 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31665 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31665 > .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_31665 > .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_31665 > .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_31665 > .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_31665 > .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_31665 > .jack.peek-shadow::before,#stacks_in_31665 > .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_31665 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31665 > .jack{overflow:hidden;}#stacks_in_31665 > .jack.height-static{height:860px}#stacks_in_31665 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31667Calligrapher{			font-size: 85% !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_31667Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31667Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31667Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31667Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31667Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31667Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31667Calligrapher h6, .stacks_in_31667Calligrapher h5, .stacks_in_31667Calligrapher h4, .stacks_in_31667Calligrapher h3, .stacks_in_31667Calligrapher h2, .stacks_in_31667Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31667Calligrapher, .stacks_in_31667Calligrapher h1, .stacks_in_31667Calligrapher h2, .stacks_in_31667Calligrapher h3, .stacks_in_31667Calligrapher h4, .stacks_in_31667Calligrapher h5, .stacks_in_31667Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31667Calligrapher, .stacks_in_31667Calligrapher h1, .stacks_in_31667Calligrapher h2, .stacks_in_31667Calligrapher h3, .stacks_in_31667Calligrapher h4, .stacks_in_31667Calligrapher h5, .stacks_in_31667Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31667targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31667Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31667Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31667Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31667Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31667 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31668x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31668x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31668x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31668 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31669 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31712Calligrapher{			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_31712Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31712Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31712Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31712Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31712Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31712Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31712Calligrapher h6, .stacks_in_31712Calligrapher h5, .stacks_in_31712Calligrapher h4, .stacks_in_31712Calligrapher h3, .stacks_in_31712Calligrapher h2, .stacks_in_31712Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31712Calligrapher, .stacks_in_31712Calligrapher h1, .stacks_in_31712Calligrapher h2, .stacks_in_31712Calligrapher h3, .stacks_in_31712Calligrapher h4, .stacks_in_31712Calligrapher h5, .stacks_in_31712Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31712Calligrapher, .stacks_in_31712Calligrapher h1, .stacks_in_31712Calligrapher h2, .stacks_in_31712Calligrapher h3, .stacks_in_31712Calligrapher h4, .stacks_in_31712Calligrapher h5, .stacks_in_31712Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31712targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31712Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31712Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31712Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31712Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31712 {
	margin: 0px 15px 15px 15px;
}

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

#stacks_in_31675 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31680{}#stacks_in_31680 > .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_31680 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31680 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31680 > .jack.width-static{width:500px}#stacks_in_31680 > .jack.width-flexible{width:100%}#stacks_in_31680 > .jack.margin-detailed{margin:10.00px 0.00px 10.00px 0.00px}#stacks_in_31680 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31680 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31680 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31680 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31680 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31680 > .jack::after{border-radius:15px}#stacks_in_31680 > .jack.border-detailed-radius,#stacks_in_31680 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31680 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31680 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31680 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_31680 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31680 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31680 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31680 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31680 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31680 > .jack.bg-image:not(.glass){}#stacks_in_31680 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31680 > .jack.bg-image.glass.after,#stacks_in_31680 > .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_31680 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31680 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31680 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31680 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31680 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31680 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31680 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31680 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31680 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31680 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31680 > .jack.bg-image.glass.after,#stacks_in_31680 > .glass.jack.bg-image::after{}#stacks_in_31680 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31680 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31680 > .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_31680 > .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_31680 > .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_31680 > .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_31680 > .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_31680 > .jack.peek-shadow::before,#stacks_in_31680 > .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_31680 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31680 > .jack{overflow:hidden;}#stacks_in_31680 > .jack.height-static{height:860px}#stacks_in_31680 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31682Calligrapher{			font-size: 85% !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_31682Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31682Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31682Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31682Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31682Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31682Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31682Calligrapher h6, .stacks_in_31682Calligrapher h5, .stacks_in_31682Calligrapher h4, .stacks_in_31682Calligrapher h3, .stacks_in_31682Calligrapher h2, .stacks_in_31682Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31682Calligrapher, .stacks_in_31682Calligrapher h1, .stacks_in_31682Calligrapher h2, .stacks_in_31682Calligrapher h3, .stacks_in_31682Calligrapher h4, .stacks_in_31682Calligrapher h5, .stacks_in_31682Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31682Calligrapher, .stacks_in_31682Calligrapher h1, .stacks_in_31682Calligrapher h2, .stacks_in_31682Calligrapher h3, .stacks_in_31682Calligrapher h4, .stacks_in_31682Calligrapher h5, .stacks_in_31682Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31682targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31682Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31682Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31682Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31682Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31682 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31683x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31683x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31683x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31683 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31684 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31723Calligrapher{			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_31723Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31723Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31723Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31723Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31723Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31723Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31723Calligrapher h6, .stacks_in_31723Calligrapher h5, .stacks_in_31723Calligrapher h4, .stacks_in_31723Calligrapher h3, .stacks_in_31723Calligrapher h2, .stacks_in_31723Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31723Calligrapher, .stacks_in_31723Calligrapher h1, .stacks_in_31723Calligrapher h2, .stacks_in_31723Calligrapher h3, .stacks_in_31723Calligrapher h4, .stacks_in_31723Calligrapher h5, .stacks_in_31723Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31723Calligrapher, .stacks_in_31723Calligrapher h1, .stacks_in_31723Calligrapher h2, .stacks_in_31723Calligrapher h3, .stacks_in_31723Calligrapher h4, .stacks_in_31723Calligrapher h5, .stacks_in_31723Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31723targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31723Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31723Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31723Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31723Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31723 {
	margin: 0px 15px 15px 15px;
}

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

#stacks_in_31690 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31695{}#stacks_in_31695 > .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_31695 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31695 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31695 > .jack.width-static{width:500px}#stacks_in_31695 > .jack.width-flexible{width:100%}#stacks_in_31695 > .jack.margin-detailed{margin:10.00px 0.00px 10.00px 0.00px}#stacks_in_31695 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31695 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31695 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31695 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31695 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31695 > .jack::after{border-radius:15px}#stacks_in_31695 > .jack.border-detailed-radius,#stacks_in_31695 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31695 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31695 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31695 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_31695 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31695 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31695 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31695 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31695 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31695 > .jack.bg-image:not(.glass){}#stacks_in_31695 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31695 > .jack.bg-image.glass.after,#stacks_in_31695 > .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_31695 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31695 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31695 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31695 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31695 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31695 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31695 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31695 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31695 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31695 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31695 > .jack.bg-image.glass.after,#stacks_in_31695 > .glass.jack.bg-image::after{}#stacks_in_31695 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31695 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31695 > .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_31695 > .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_31695 > .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_31695 > .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_31695 > .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_31695 > .jack.peek-shadow::before,#stacks_in_31695 > .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_31695 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31695 > .jack{overflow:hidden;}#stacks_in_31695 > .jack.height-static{height:860px}#stacks_in_31695 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31727Calligrapher{			font-size: 85% !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_31727Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31727Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31727Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31727Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31727Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31727Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31727Calligrapher h6, .stacks_in_31727Calligrapher h5, .stacks_in_31727Calligrapher h4, .stacks_in_31727Calligrapher h3, .stacks_in_31727Calligrapher h2, .stacks_in_31727Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31727Calligrapher, .stacks_in_31727Calligrapher h1, .stacks_in_31727Calligrapher h2, .stacks_in_31727Calligrapher h3, .stacks_in_31727Calligrapher h4, .stacks_in_31727Calligrapher h5, .stacks_in_31727Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31727Calligrapher, .stacks_in_31727Calligrapher h1, .stacks_in_31727Calligrapher h2, .stacks_in_31727Calligrapher h3, .stacks_in_31727Calligrapher h4, .stacks_in_31727Calligrapher h5, .stacks_in_31727Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31727targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31727Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31727Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31727Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31727Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31727 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31698x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31698x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31698x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31698 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31699 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31735Calligrapher{			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_31735Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31735Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31735Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31735Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31735Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31735Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31735Calligrapher h6, .stacks_in_31735Calligrapher h5, .stacks_in_31735Calligrapher h4, .stacks_in_31735Calligrapher h3, .stacks_in_31735Calligrapher h2, .stacks_in_31735Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31735Calligrapher, .stacks_in_31735Calligrapher h1, .stacks_in_31735Calligrapher h2, .stacks_in_31735Calligrapher h3, .stacks_in_31735Calligrapher h4, .stacks_in_31735Calligrapher h5, .stacks_in_31735Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31735Calligrapher, .stacks_in_31735Calligrapher h1, .stacks_in_31735Calligrapher h2, .stacks_in_31735Calligrapher h3, .stacks_in_31735Calligrapher h4, .stacks_in_31735Calligrapher h5, .stacks_in_31735Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31735targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31735Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31735Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31735Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31735Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31735 {
	margin: 0px 15px 15px 15px;
}

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

#stacks_in_31705 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_30234{padding-right:0.00px;padding-left:0.00px;}#stacks_in_30234 > .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_30234 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30234 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30234 > .jack.width-static{width:500px}#stacks_in_30234 > .jack.width-flexible{width:100%}#stacks_in_30234 > .jack.margin-detailed{margin:10.00px 0.00px 20.00px 0.00px}#stacks_in_30234 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30234 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30234 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30234 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30234 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30234 > .jack::after{border-radius:0px}#stacks_in_30234 > .jack.border-detailed-radius,#stacks_in_30234 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30234 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30234 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30234 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30234 > .jack.bg-image:not(.glass){background-image:url(../schule_files/bgImage-30234.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30234 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30234 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30234 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_30234 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30234 > .jack.bg-image:not(.glass){}#stacks_in_30234 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30234 > .jack.bg-image.glass.after,#stacks_in_30234 > .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(../schule_files/bgImage-30234.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30234 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30234 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30234 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30234 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30234 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30234 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30234 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30234 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_30234 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30234 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30234 > .jack.bg-image.glass.after,#stacks_in_30234 > .glass.jack.bg-image::after{}#stacks_in_30234 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30234 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30234 > .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_30234 > .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_30234 > .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_30234 > .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_30234 > .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_30234 > .jack.peek-shadow::before,#stacks_in_30234 > .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_30234 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30234 > .jack{overflow:hidden;}#stacks_in_30234 > .jack.height-static{height:20px}#stacks_in_30234 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39319{padding-left:0px;padding-right:0px;}#stacks_in_39319 > .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_39319 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39319 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39319 > .jack.width-static{width:500px}#stacks_in_39319 > .jack.width-flexible{width:100%}#stacks_in_39319 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39319 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39319 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39319 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39319 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39319 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39319 > .jack::after{border-radius:0px}#stacks_in_39319 > .jack.border-detailed-radius,#stacks_in_39319 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_39319 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39319 > .jack.bg-color{background-color:#89C5FF}#stacks_in_39319 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_39319 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39319 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39319 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39319 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39319 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39319 > .jack.bg-image:not(.glass){}#stacks_in_39319 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39319 > .jack.bg-image.glass.after,#stacks_in_39319 > .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_39319 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39319 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39319 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39319 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39319 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39319 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39319 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39319 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39319 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39319 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39319 > .jack.bg-image.glass.after,#stacks_in_39319 > .glass.jack.bg-image::after{}#stacks_in_39319 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39319 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39319 > .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_39319 > .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_39319 > .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_39319 > .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_39319 > .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_39319 > .jack.peek-shadow::before,#stacks_in_39319 > .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_39319 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39319 > .jack{overflow:visible;}#stacks_in_39319 > .jack.height-static{height:100px}#stacks_in_39319 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39320{padding-left:0px;padding-right:0px;}#stacks_in_39320 > .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_39320 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39320 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39320 > .jack.width-static{width:500px}#stacks_in_39320 > .jack.width-flexible{width:100%}#stacks_in_39320 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39320 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39320 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39320 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39320 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39320 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39320 > .jack::after{border-radius:0px}#stacks_in_39320 > .jack.border-detailed-radius,#stacks_in_39320 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_39320 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39320 > .jack.bg-color{background-color:#89C5FF}#stacks_in_39320 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_39320 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39320 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39320 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39320 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39320 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39320 > .jack.bg-image:not(.glass){}#stacks_in_39320 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39320 > .jack.bg-image.glass.after,#stacks_in_39320 > .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_39320 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39320 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39320 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39320 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39320 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39320 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39320 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39320 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39320 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39320 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39320 > .jack.bg-image.glass.after,#stacks_in_39320 > .glass.jack.bg-image::after{}#stacks_in_39320 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39320 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39320 > .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_39320 > .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_39320 > .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_39320 > .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_39320 > .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_39320 > .jack.peek-shadow::before,#stacks_in_39320 > .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_39320 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39320 > .jack{overflow:visible;}#stacks_in_39320 > .jack.height-static{height:100px}#stacks_in_39320 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40196{}#stacks_in_40196 > .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_40196 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40196 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40196 > .jack.width-static{width:500px}#stacks_in_40196 > .jack.width-flexible{width:100%}#stacks_in_40196 > .jack.margin-detailed{margin:10.00px 0.00px 10.00px 0.00px}#stacks_in_40196 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40196 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40196 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40196 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40196 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40196 > .jack::after{border-radius:15px}#stacks_in_40196 > .jack.border-detailed-radius,#stacks_in_40196 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_40196 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40196 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40196 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_40196 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40196 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40196 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40196 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40196 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40196 > .jack.bg-image:not(.glass){}#stacks_in_40196 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40196 > .jack.bg-image.glass.after,#stacks_in_40196 > .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_40196 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40196 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40196 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40196 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40196 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40196 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40196 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40196 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40196 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40196 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40196 > .jack.bg-image.glass.after,#stacks_in_40196 > .glass.jack.bg-image::after{}#stacks_in_40196 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40196 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40196 > .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_40196 > .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_40196 > .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_40196 > .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_40196 > .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_40196 > .jack.peek-shadow::before,#stacks_in_40196 > .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_40196 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40196 > .jack{overflow:hidden;}#stacks_in_40196 > .jack.height-static{height:860px}#stacks_in_40196 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39324Calligrapher{			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_39324Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39324Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39324Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39324Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39324Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39324Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39324Calligrapher h6, .stacks_in_39324Calligrapher h5, .stacks_in_39324Calligrapher h4, .stacks_in_39324Calligrapher h3, .stacks_in_39324Calligrapher h2, .stacks_in_39324Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39324Calligrapher, .stacks_in_39324Calligrapher h1, .stacks_in_39324Calligrapher h2, .stacks_in_39324Calligrapher h3, .stacks_in_39324Calligrapher h4, .stacks_in_39324Calligrapher h5, .stacks_in_39324Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_39324Calligrapher, .stacks_in_39324Calligrapher h1, .stacks_in_39324Calligrapher h2, .stacks_in_39324Calligrapher h3, .stacks_in_39324Calligrapher h4, .stacks_in_39324Calligrapher h5, .stacks_in_39324Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39324targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39324Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39324Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39324Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39324Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39324 {
	padding: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_39329x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_39329x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_39329x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_39330 {
	font-weight: lighter;
}
#stacks_in_39325{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_39325 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_39325{visibility:hidden}#stacks_in_39325 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_39325 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_39325 .cycler_nav{cursor:pointer;z-index:101;display:block;display:none;width:50px;height:50px;position:absolute;background:url(../schule_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:40%;}#stacks_in_39325 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_39325 .cycler_nav.prev:hover{background-position:0px -50px}#stacks_in_39325 .cycler_nav.prev:active{background-position:0px -100px}#stacks_in_39325 .cycler_nav.next{right:0px;background-position:0px -150px}#stacks_in_39325 .cycler_nav.next:hover{background-position:0px -200px}#stacks_in_39325 .cycler_nav.next:active{background-position:0px -250px}
#stacks_in_39333{}#stacks_in_39333 > .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_39333 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39333 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39333 > .jack.width-static{width:500px}#stacks_in_39333 > .jack.width-flexible{width:100%}#stacks_in_39333 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39333 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39333 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39333 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39333 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39333 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39333 > .jack::after{border-radius:15px}#stacks_in_39333 > .jack.border-detailed-radius,#stacks_in_39333 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39333 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39333 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39333 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39333 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39333 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39333 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39333 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39333 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39333 > .jack.bg-image:not(.glass){}#stacks_in_39333 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39333 > .jack.bg-image.glass.after,#stacks_in_39333 > .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_39333 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39333 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39333 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39333 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39333 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39333 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39333 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39333 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39333 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39333 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39333 > .jack.bg-image.glass.after,#stacks_in_39333 > .glass.jack.bg-image::after{}#stacks_in_39333 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39333 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39333 > .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_39333 > .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_39333 > .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_39333 > .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_39333 > .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_39333 > .jack.peek-shadow::before,#stacks_in_39333 > .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_39333 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39333 > .jack{overflow:hidden;}#stacks_in_39333 > .jack.height-static{height:500px}#stacks_in_39333 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_39335 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_39335 {
		display: none !important;
	}
}
#stacks_in_39336 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39336 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39336 #jwresp_col2_stacks_in_39336{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39336 #jwresp_col1_stacks_in_39336,#stacks_in_39336 #jwresp_col2_stacks_in_39336{width:100%;float:none;display:block}#stacks_in_39336 #jwresp_col1_stacks_in_39336{margin-bottom:15px}}

#stacks_in_39336 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_39337 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_39337 {
		display: none !important;
	}
}
#stacks_in_39338 .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_39338 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39338 .fluid-image.unlimited img{width:100% !important}#stacks_in_39338 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39338 .fluid-image.align-left img{float:left}#stacks_in_39338 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39341Calligrapher{			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_39341Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39341Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39341Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39341Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39341Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39341Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39341Calligrapher h6, .stacks_in_39341Calligrapher h5, .stacks_in_39341Calligrapher h4, .stacks_in_39341Calligrapher h3, .stacks_in_39341Calligrapher h2, .stacks_in_39341Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39341Calligrapher, .stacks_in_39341Calligrapher h1, .stacks_in_39341Calligrapher h2, .stacks_in_39341Calligrapher h3, .stacks_in_39341Calligrapher h4, .stacks_in_39341Calligrapher h5, .stacks_in_39341Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39341targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39341Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39341Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39341Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39341Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39341 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_39342 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39345 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39347 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39349Calligrapher{			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_39349Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39349Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39349Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39349Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39349Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39349Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39349Calligrapher h6, .stacks_in_39349Calligrapher h5, .stacks_in_39349Calligrapher h4, .stacks_in_39349Calligrapher h3, .stacks_in_39349Calligrapher h2, .stacks_in_39349Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39349Calligrapher, .stacks_in_39349Calligrapher h1, .stacks_in_39349Calligrapher h2, .stacks_in_39349Calligrapher h3, .stacks_in_39349Calligrapher h4, .stacks_in_39349Calligrapher h5, .stacks_in_39349Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39349targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39349Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39349Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39349Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39349Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39349 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39352 {
	line-height: 2em;
}
#stacks_in_39355{}#stacks_in_39355 > .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_39355 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39355 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39355 > .jack.width-static{width:500px}#stacks_in_39355 > .jack.width-flexible{width:100%}#stacks_in_39355 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39355 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39355 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39355 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39355 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39355 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39355 > .jack::after{border-radius:15px}#stacks_in_39355 > .jack.border-detailed-radius,#stacks_in_39355 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39355 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39355 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39355 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39355 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39355 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39355 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39355 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39355 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39355 > .jack.bg-image:not(.glass){}#stacks_in_39355 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39355 > .jack.bg-image.glass.after,#stacks_in_39355 > .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_39355 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39355 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39355 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39355 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39355 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39355 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39355 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39355 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39355 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39355 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39355 > .jack.bg-image.glass.after,#stacks_in_39355 > .glass.jack.bg-image::after{}#stacks_in_39355 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39355 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39355 > .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_39355 > .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_39355 > .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_39355 > .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_39355 > .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_39355 > .jack.peek-shadow::before,#stacks_in_39355 > .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_39355 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39355 > .jack{overflow:hidden;}#stacks_in_39355 > .jack.height-static{height:500px}#stacks_in_39355 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_39356 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_39356 {
		display: none !important;
	}
}
#stacks_in_39357 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39357 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39357 #jwresp_col2_stacks_in_39357{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39357 #jwresp_col1_stacks_in_39357,#stacks_in_39357 #jwresp_col2_stacks_in_39357{width:100%;float:none;display:block}#stacks_in_39357 #jwresp_col1_stacks_in_39357{margin-bottom:15px}}

#stacks_in_39357 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_39358 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_39358 {
		display: none !important;
	}
}
#stacks_in_39359 .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_39359 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39359 .fluid-image.unlimited img{width:100% !important}#stacks_in_39359 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39359 .fluid-image.align-left img{float:left}#stacks_in_39359 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39362Calligrapher{			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_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: #333333 !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   ----------------------------------------- *//* -----------------------------------------    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: 5px 20px 0px 20px;
}

#stacks_in_39363 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39366 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39370Calligrapher{			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_39370Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39370Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39370Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39370Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39370Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39370Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39370Calligrapher h6, .stacks_in_39370Calligrapher h5, .stacks_in_39370Calligrapher h4, .stacks_in_39370Calligrapher h3, .stacks_in_39370Calligrapher h2, .stacks_in_39370Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39370Calligrapher, .stacks_in_39370Calligrapher h1, .stacks_in_39370Calligrapher h2, .stacks_in_39370Calligrapher h3, .stacks_in_39370Calligrapher h4, .stacks_in_39370Calligrapher h5, .stacks_in_39370Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39370targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39370Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39370Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39370Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39370Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39370 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39373 {
	line-height: 2em;
}
#stacks_in_39376{}#stacks_in_39376 > .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_39376 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39376 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39376 > .jack.width-static{width:500px}#stacks_in_39376 > .jack.width-flexible{width:100%}#stacks_in_39376 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39376 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39376 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39376 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39376 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39376 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39376 > .jack::after{border-radius:15px}#stacks_in_39376 > .jack.border-detailed-radius,#stacks_in_39376 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39376 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39376 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39376 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39376 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39376 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39376 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39376 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39376 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39376 > .jack.bg-image:not(.glass){}#stacks_in_39376 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39376 > .jack.bg-image.glass.after,#stacks_in_39376 > .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_39376 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39376 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39376 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39376 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39376 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39376 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39376 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39376 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39376 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39376 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39376 > .jack.bg-image.glass.after,#stacks_in_39376 > .glass.jack.bg-image::after{}#stacks_in_39376 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39376 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39376 > .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_39376 > .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_39376 > .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_39376 > .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_39376 > .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_39376 > .jack.peek-shadow::before,#stacks_in_39376 > .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_39376 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39376 > .jack{overflow:hidden;}#stacks_in_39376 > .jack.height-static{height:500px}#stacks_in_39376 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_39377 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_39377 {
		display: none !important;
	}
}
#stacks_in_39378 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39378 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39378 #jwresp_col2_stacks_in_39378{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39378 #jwresp_col1_stacks_in_39378,#stacks_in_39378 #jwresp_col2_stacks_in_39378{width:100%;float:none;display:block}#stacks_in_39378 #jwresp_col1_stacks_in_39378{margin-bottom:15px}}

#stacks_in_39378 {
	padding:  20px;
}

.spacerStack {
	height: 55.00px;
}

#spacerStackstacks_in_39379 {
	height: 55.00px;
}




























@media print {
	#spacerStackstacks_in_39379 {
		display: none !important;
	}
}
#stacks_in_39380 .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_39380 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39380 .fluid-image.unlimited img{width:100% !important}#stacks_in_39380 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39380 .fluid-image.align-left img{float:left}#stacks_in_39380 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39383Calligrapher{			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_39383Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39383Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39383Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39383Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39383Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39383Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39383Calligrapher h6, .stacks_in_39383Calligrapher h5, .stacks_in_39383Calligrapher h4, .stacks_in_39383Calligrapher h3, .stacks_in_39383Calligrapher h2, .stacks_in_39383Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39383Calligrapher, .stacks_in_39383Calligrapher h1, .stacks_in_39383Calligrapher h2, .stacks_in_39383Calligrapher h3, .stacks_in_39383Calligrapher h4, .stacks_in_39383Calligrapher h5, .stacks_in_39383Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39383targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39383Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39383Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39383Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39383Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39383 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_39384 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39387 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39391Calligrapher{			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_39391Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39391Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39391Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39391Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39391Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39391Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39391Calligrapher h6, .stacks_in_39391Calligrapher h5, .stacks_in_39391Calligrapher h4, .stacks_in_39391Calligrapher h3, .stacks_in_39391Calligrapher h2, .stacks_in_39391Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39391Calligrapher, .stacks_in_39391Calligrapher h1, .stacks_in_39391Calligrapher h2, .stacks_in_39391Calligrapher h3, .stacks_in_39391Calligrapher h4, .stacks_in_39391Calligrapher h5, .stacks_in_39391Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39391targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39391Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39391Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39391Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39391Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39391 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39394 {
	line-height: 2em;
}
#stacks_in_39397{}#stacks_in_39397 > .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_39397 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39397 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39397 > .jack.width-static{width:500px}#stacks_in_39397 > .jack.width-flexible{width:100%}#stacks_in_39397 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39397 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39397 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39397 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39397 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39397 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39397 > .jack::after{border-radius:15px}#stacks_in_39397 > .jack.border-detailed-radius,#stacks_in_39397 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39397 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39397 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39397 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39397 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39397 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39397 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39397 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39397 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39397 > .jack.bg-image:not(.glass){}#stacks_in_39397 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39397 > .jack.bg-image.glass.after,#stacks_in_39397 > .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_39397 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39397 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39397 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39397 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39397 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39397 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39397 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39397 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39397 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39397 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39397 > .jack.bg-image.glass.after,#stacks_in_39397 > .glass.jack.bg-image::after{}#stacks_in_39397 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39397 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39397 > .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_39397 > .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_39397 > .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_39397 > .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_39397 > .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_39397 > .jack.peek-shadow::before,#stacks_in_39397 > .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_39397 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39397 > .jack{overflow:hidden;}#stacks_in_39397 > .jack.height-static{height:500px}#stacks_in_39397 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39398 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_39398 {
		display: none !important;
	}
}
#stacks_in_39399 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39399 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39399 #jwresp_col2_stacks_in_39399{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39399 #jwresp_col1_stacks_in_39399,#stacks_in_39399 #jwresp_col2_stacks_in_39399{width:100%;float:none;display:block}#stacks_in_39399 #jwresp_col1_stacks_in_39399{margin-bottom:15px}}

#stacks_in_39399 {
	padding:  20px;
}
#stacks_in_39400 .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_39400 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39400 .fluid-image.unlimited img{width:100% !important}#stacks_in_39400 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39400 .fluid-image.align-left img{float:left}#stacks_in_39400 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_39403 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_39403 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39404Calligrapher{			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_39404Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39404Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39404Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39404Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39404Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39404Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39404Calligrapher h6, .stacks_in_39404Calligrapher h5, .stacks_in_39404Calligrapher h4, .stacks_in_39404Calligrapher h3, .stacks_in_39404Calligrapher h2, .stacks_in_39404Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39404Calligrapher, .stacks_in_39404Calligrapher h1, .stacks_in_39404Calligrapher h2, .stacks_in_39404Calligrapher h3, .stacks_in_39404Calligrapher h4, .stacks_in_39404Calligrapher h5, .stacks_in_39404Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39404targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39404Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39404Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39404Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39404Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39404 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39405 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39408 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39412Calligrapher{			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_39412Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39412Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39412Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39412Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39412Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39412Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39412Calligrapher h6, .stacks_in_39412Calligrapher h5, .stacks_in_39412Calligrapher h4, .stacks_in_39412Calligrapher h3, .stacks_in_39412Calligrapher h2, .stacks_in_39412Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39412Calligrapher, .stacks_in_39412Calligrapher h1, .stacks_in_39412Calligrapher h2, .stacks_in_39412Calligrapher h3, .stacks_in_39412Calligrapher h4, .stacks_in_39412Calligrapher h5, .stacks_in_39412Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39412targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39412Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39412Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39412Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39412Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39412 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39415 {
	line-height: 2em;
}
#stacks_in_39418{}#stacks_in_39418 > .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_39418 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39418 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39418 > .jack.width-static{width:500px}#stacks_in_39418 > .jack.width-flexible{width:100%}#stacks_in_39418 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39418 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39418 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39418 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39418 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39418 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39418 > .jack::after{border-radius:15px}#stacks_in_39418 > .jack.border-detailed-radius,#stacks_in_39418 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39418 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39418 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39418 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39418 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39418 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39418 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39418 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39418 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39418 > .jack.bg-image:not(.glass){}#stacks_in_39418 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39418 > .jack.bg-image.glass.after,#stacks_in_39418 > .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_39418 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39418 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39418 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39418 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39418 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39418 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39418 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39418 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39418 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39418 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39418 > .jack.bg-image.glass.after,#stacks_in_39418 > .glass.jack.bg-image::after{}#stacks_in_39418 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39418 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39418 > .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_39418 > .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_39418 > .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_39418 > .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_39418 > .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_39418 > .jack.peek-shadow::before,#stacks_in_39418 > .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_39418 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39418 > .jack{overflow:hidden;}#stacks_in_39418 > .jack.height-static{height:500px}#stacks_in_39418 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_39419 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_39419 {
		display: none !important;
	}
}
#stacks_in_39420 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39420 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39420 #jwresp_col2_stacks_in_39420{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39420 #jwresp_col1_stacks_in_39420,#stacks_in_39420 #jwresp_col2_stacks_in_39420{width:100%;float:none;display:block}#stacks_in_39420 #jwresp_col1_stacks_in_39420{margin-bottom:15px}}

#stacks_in_39420 {
	padding:  20px;
}
#stacks_in_39421 .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_39421 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39421 .fluid-image.unlimited img{width:100% !important}#stacks_in_39421 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39421 .fluid-image.align-left img{float:left}#stacks_in_39421 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39424Calligrapher{			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_39424Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39424Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39424Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39424Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39424Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39424Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39424Calligrapher h6, .stacks_in_39424Calligrapher h5, .stacks_in_39424Calligrapher h4, .stacks_in_39424Calligrapher h3, .stacks_in_39424Calligrapher h2, .stacks_in_39424Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39424Calligrapher, .stacks_in_39424Calligrapher h1, .stacks_in_39424Calligrapher h2, .stacks_in_39424Calligrapher h3, .stacks_in_39424Calligrapher h4, .stacks_in_39424Calligrapher h5, .stacks_in_39424Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39424targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39424Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39424Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39424Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39424Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39424 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_39425 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39428 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39430 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39432 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39436Calligrapher{			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_39436Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39436Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39436Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39436Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39436Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39436Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39436Calligrapher h6, .stacks_in_39436Calligrapher h5, .stacks_in_39436Calligrapher h4, .stacks_in_39436Calligrapher h3, .stacks_in_39436Calligrapher h2, .stacks_in_39436Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39436Calligrapher, .stacks_in_39436Calligrapher h1, .stacks_in_39436Calligrapher h2, .stacks_in_39436Calligrapher h3, .stacks_in_39436Calligrapher h4, .stacks_in_39436Calligrapher h5, .stacks_in_39436Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39436targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39436Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39436Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39436Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39436Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39436 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39439 {
	line-height: 2em;
}
#stacks_in_39442{}#stacks_in_39442 > .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_39442 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39442 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39442 > .jack.width-static{width:500px}#stacks_in_39442 > .jack.width-flexible{width:100%}#stacks_in_39442 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39442 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39442 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39442 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39442 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39442 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39442 > .jack::after{border-radius:15px}#stacks_in_39442 > .jack.border-detailed-radius,#stacks_in_39442 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39442 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39442 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39442 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39442 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39442 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39442 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39442 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39442 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39442 > .jack.bg-image:not(.glass){}#stacks_in_39442 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39442 > .jack.bg-image.glass.after,#stacks_in_39442 > .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_39442 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39442 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39442 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39442 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39442 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39442 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39442 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39442 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39442 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39442 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39442 > .jack.bg-image.glass.after,#stacks_in_39442 > .glass.jack.bg-image::after{}#stacks_in_39442 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39442 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39442 > .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_39442 > .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_39442 > .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_39442 > .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_39442 > .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_39442 > .jack.peek-shadow::before,#stacks_in_39442 > .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_39442 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39442 > .jack{overflow:hidden;}#stacks_in_39442 > .jack.height-static{height:500px}#stacks_in_39442 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39443 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_39443 {
		display: none !important;
	}
}
#stacks_in_39444 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39444 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39444 #jwresp_col2_stacks_in_39444{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39444 #jwresp_col1_stacks_in_39444,#stacks_in_39444 #jwresp_col2_stacks_in_39444{width:100%;float:none;display:block}#stacks_in_39444 #jwresp_col1_stacks_in_39444{margin-bottom:15px}}

#stacks_in_39444 {
	padding:  20px;
}
#stacks_in_39445 .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_39445 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39445 .fluid-image.unlimited img{width:100% !important}#stacks_in_39445 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39445 .fluid-image.align-left img{float:left}#stacks_in_39445 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_39448 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_39448 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39449Calligrapher{			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_39449Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39449Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39449Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39449Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39449Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39449Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39449Calligrapher h6, .stacks_in_39449Calligrapher h5, .stacks_in_39449Calligrapher h4, .stacks_in_39449Calligrapher h3, .stacks_in_39449Calligrapher h2, .stacks_in_39449Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39449Calligrapher, .stacks_in_39449Calligrapher h1, .stacks_in_39449Calligrapher h2, .stacks_in_39449Calligrapher h3, .stacks_in_39449Calligrapher h4, .stacks_in_39449Calligrapher h5, .stacks_in_39449Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39449targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39449Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39449Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39449Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39449Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39449 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39450 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39453 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39457Calligrapher{			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_39457Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39457Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39457Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39457Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39457Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39457Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39457Calligrapher h6, .stacks_in_39457Calligrapher h5, .stacks_in_39457Calligrapher h4, .stacks_in_39457Calligrapher h3, .stacks_in_39457Calligrapher h2, .stacks_in_39457Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39457Calligrapher, .stacks_in_39457Calligrapher h1, .stacks_in_39457Calligrapher h2, .stacks_in_39457Calligrapher h3, .stacks_in_39457Calligrapher h4, .stacks_in_39457Calligrapher h5, .stacks_in_39457Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39457targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39457Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39457Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39457Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39457Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39457 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39460 {
	line-height: 2em;
}
#stacks_in_39463{}#stacks_in_39463 > .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_39463 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39463 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39463 > .jack.width-static{width:500px}#stacks_in_39463 > .jack.width-flexible{width:100%}#stacks_in_39463 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39463 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39463 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39463 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39463 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39463 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39463 > .jack::after{border-radius:15px}#stacks_in_39463 > .jack.border-detailed-radius,#stacks_in_39463 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39463 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39463 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39463 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39463 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39463 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39463 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39463 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39463 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39463 > .jack.bg-image:not(.glass){}#stacks_in_39463 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39463 > .jack.bg-image.glass.after,#stacks_in_39463 > .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_39463 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39463 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39463 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39463 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39463 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39463 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39463 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39463 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39463 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39463 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39463 > .jack.bg-image.glass.after,#stacks_in_39463 > .glass.jack.bg-image::after{}#stacks_in_39463 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39463 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39463 > .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_39463 > .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_39463 > .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_39463 > .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_39463 > .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_39463 > .jack.peek-shadow::before,#stacks_in_39463 > .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_39463 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39463 > .jack{overflow:hidden;}#stacks_in_39463 > .jack.height-static{height:500px}#stacks_in_39463 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39464 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_39464 {
		display: none !important;
	}
}
#stacks_in_39465 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39465 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39465 #jwresp_col2_stacks_in_39465{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39465 #jwresp_col1_stacks_in_39465,#stacks_in_39465 #jwresp_col2_stacks_in_39465{width:100%;float:none;display:block}#stacks_in_39465 #jwresp_col1_stacks_in_39465{margin-bottom:15px}}

#stacks_in_39465 {
	padding:  20px;
}
#stacks_in_39466 .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_39466 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39466 .fluid-image.unlimited img{width:100% !important}#stacks_in_39466 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39466 .fluid-image.align-left img{float:left}#stacks_in_39466 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_39469 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_39469 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39470Calligrapher{			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_39470Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39470Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39470Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39470Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39470Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39470Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39470Calligrapher h6, .stacks_in_39470Calligrapher h5, .stacks_in_39470Calligrapher h4, .stacks_in_39470Calligrapher h3, .stacks_in_39470Calligrapher h2, .stacks_in_39470Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39470Calligrapher, .stacks_in_39470Calligrapher h1, .stacks_in_39470Calligrapher h2, .stacks_in_39470Calligrapher h3, .stacks_in_39470Calligrapher h4, .stacks_in_39470Calligrapher h5, .stacks_in_39470Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39470targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39470Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39470Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39470Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39470Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39470 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39471 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39474 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39478Calligrapher{			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_39478Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39478Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39478Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39478Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39478Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39478Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39478Calligrapher h6, .stacks_in_39478Calligrapher h5, .stacks_in_39478Calligrapher h4, .stacks_in_39478Calligrapher h3, .stacks_in_39478Calligrapher h2, .stacks_in_39478Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39478Calligrapher, .stacks_in_39478Calligrapher h1, .stacks_in_39478Calligrapher h2, .stacks_in_39478Calligrapher h3, .stacks_in_39478Calligrapher h4, .stacks_in_39478Calligrapher h5, .stacks_in_39478Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39478targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39478Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39478Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39478Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39478Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39478 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39481 {
	line-height: 2em;
}
#stacks_in_39484{}#stacks_in_39484 > .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_39484 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39484 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39484 > .jack.width-static{width:500px}#stacks_in_39484 > .jack.width-flexible{width:100%}#stacks_in_39484 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39484 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39484 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39484 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39484 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39484 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39484 > .jack::after{border-radius:15px}#stacks_in_39484 > .jack.border-detailed-radius,#stacks_in_39484 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39484 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39484 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39484 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39484 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39484 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39484 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39484 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39484 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39484 > .jack.bg-image:not(.glass){}#stacks_in_39484 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39484 > .jack.bg-image.glass.after,#stacks_in_39484 > .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_39484 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39484 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39484 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39484 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39484 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39484 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39484 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39484 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39484 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39484 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39484 > .jack.bg-image.glass.after,#stacks_in_39484 > .glass.jack.bg-image::after{}#stacks_in_39484 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39484 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39484 > .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_39484 > .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_39484 > .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_39484 > .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_39484 > .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_39484 > .jack.peek-shadow::before,#stacks_in_39484 > .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_39484 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39484 > .jack{overflow:hidden;}#stacks_in_39484 > .jack.height-static{height:500px}#stacks_in_39484 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 95.00px;
}

#spacerStackstacks_in_39485 {
	height: 95.00px;
}




























@media print {
	#spacerStackstacks_in_39485 {
		display: none !important;
	}
}
#stacks_in_39486 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39486 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39486 #jwresp_col2_stacks_in_39486{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39486 #jwresp_col1_stacks_in_39486,#stacks_in_39486 #jwresp_col2_stacks_in_39486{width:100%;float:none;display:block}#stacks_in_39486 #jwresp_col1_stacks_in_39486{margin-bottom:15px}}

#stacks_in_39486 {
	padding:  18px;
}
#stacks_in_39487 .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_39487 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39487 .fluid-image.unlimited img{width:100% !important}#stacks_in_39487 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39487 .fluid-image.align-left img{float:left}#stacks_in_39487 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39490Calligrapher{			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_39490Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39490Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39490Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39490Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39490Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39490Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39490Calligrapher h6, .stacks_in_39490Calligrapher h5, .stacks_in_39490Calligrapher h4, .stacks_in_39490Calligrapher h3, .stacks_in_39490Calligrapher h2, .stacks_in_39490Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39490Calligrapher, .stacks_in_39490Calligrapher h1, .stacks_in_39490Calligrapher h2, .stacks_in_39490Calligrapher h3, .stacks_in_39490Calligrapher h4, .stacks_in_39490Calligrapher h5, .stacks_in_39490Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39490targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39490Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39490Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39490Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39490Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39490 {
	padding: 0px 20px 0px 20px;
}

#stacks_in_39491 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39494 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39498Calligrapher{			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_39498Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39498Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39498Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39498Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39498Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39498Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39498Calligrapher h6, .stacks_in_39498Calligrapher h5, .stacks_in_39498Calligrapher h4, .stacks_in_39498Calligrapher h3, .stacks_in_39498Calligrapher h2, .stacks_in_39498Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39498Calligrapher, .stacks_in_39498Calligrapher h1, .stacks_in_39498Calligrapher h2, .stacks_in_39498Calligrapher h3, .stacks_in_39498Calligrapher h4, .stacks_in_39498Calligrapher h5, .stacks_in_39498Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39498targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39498Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39498Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39498Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39498Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39498 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39501 {
	line-height: 2em;
}
#stacks_in_39504{}#stacks_in_39504 > .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_39504 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39504 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39504 > .jack.width-static{width:500px}#stacks_in_39504 > .jack.width-flexible{width:100%}#stacks_in_39504 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39504 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39504 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39504 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39504 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39504 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39504 > .jack::after{border-radius:15px}#stacks_in_39504 > .jack.border-detailed-radius,#stacks_in_39504 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39504 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39504 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39504 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39504 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39504 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39504 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39504 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39504 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39504 > .jack.bg-image:not(.glass){}#stacks_in_39504 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39504 > .jack.bg-image.glass.after,#stacks_in_39504 > .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_39504 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39504 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39504 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39504 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39504 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39504 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39504 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39504 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39504 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39504 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39504 > .jack.bg-image.glass.after,#stacks_in_39504 > .glass.jack.bg-image::after{}#stacks_in_39504 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39504 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39504 > .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_39504 > .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_39504 > .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_39504 > .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_39504 > .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_39504 > .jack.peek-shadow::before,#stacks_in_39504 > .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_39504 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39504 > .jack{overflow:hidden;}#stacks_in_39504 > .jack.height-static{height:500px}#stacks_in_39504 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 35.00px;
}

#spacerStackstacks_in_39505 {
	height: 35.00px;
}




























@media print {
	#spacerStackstacks_in_39505 {
		display: none !important;
	}
}
#stacks_in_39506 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39506 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39506 #jwresp_col2_stacks_in_39506{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39506 #jwresp_col1_stacks_in_39506,#stacks_in_39506 #jwresp_col2_stacks_in_39506{width:100%;float:none;display:block}#stacks_in_39506 #jwresp_col1_stacks_in_39506{margin-bottom:15px}}

#stacks_in_39506 {
	padding:  20px;
}
#stacks_in_39507 .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_39507 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39507 .fluid-image.unlimited img{width:100% !important}#stacks_in_39507 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39507 .fluid-image.align-left img{float:left}#stacks_in_39507 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_39510 {
	height: 120.00px;
}




























@media print {
	#spacerStackstacks_in_39510 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39511Calligrapher{			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_39511Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39511Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39511Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39511Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39511Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39511Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39511Calligrapher h6, .stacks_in_39511Calligrapher h5, .stacks_in_39511Calligrapher h4, .stacks_in_39511Calligrapher h3, .stacks_in_39511Calligrapher h2, .stacks_in_39511Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39511Calligrapher, .stacks_in_39511Calligrapher h1, .stacks_in_39511Calligrapher h2, .stacks_in_39511Calligrapher h3, .stacks_in_39511Calligrapher h4, .stacks_in_39511Calligrapher h5, .stacks_in_39511Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39511targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39511Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39511Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39511Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39511Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39511 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39512 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39515 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39519Calligrapher{			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_39519Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39519Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39519Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39519Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39519Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39519Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39519Calligrapher h6, .stacks_in_39519Calligrapher h5, .stacks_in_39519Calligrapher h4, .stacks_in_39519Calligrapher h3, .stacks_in_39519Calligrapher h2, .stacks_in_39519Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39519Calligrapher, .stacks_in_39519Calligrapher h1, .stacks_in_39519Calligrapher h2, .stacks_in_39519Calligrapher h3, .stacks_in_39519Calligrapher h4, .stacks_in_39519Calligrapher h5, .stacks_in_39519Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39519targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39519Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39519Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39519Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39519Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39520 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39522 {
	line-height: 2em;
}
#stacks_in_39525{}#stacks_in_39525 > .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_39525 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39525 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39525 > .jack.width-static{width:500px}#stacks_in_39525 > .jack.width-flexible{width:100%}#stacks_in_39525 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39525 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39525 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39525 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39525 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39525 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39525 > .jack::after{border-radius:15px}#stacks_in_39525 > .jack.border-detailed-radius,#stacks_in_39525 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39525 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39525 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39525 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39525 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39525 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39525 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39525 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39525 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39525 > .jack.bg-image:not(.glass){}#stacks_in_39525 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39525 > .jack.bg-image.glass.after,#stacks_in_39525 > .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_39525 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39525 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39525 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39525 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39525 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39525 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39525 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39525 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39525 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39525 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39525 > .jack.bg-image.glass.after,#stacks_in_39525 > .glass.jack.bg-image::after{}#stacks_in_39525 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39525 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39525 > .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_39525 > .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_39525 > .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_39525 > .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_39525 > .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_39525 > .jack.peek-shadow::before,#stacks_in_39525 > .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_39525 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39525 > .jack{overflow:hidden;}#stacks_in_39525 > .jack.height-static{height:500px}#stacks_in_39525 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_39526 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_39526 {
		display: none !important;
	}
}
#stacks_in_39527 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39527 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39527 #jwresp_col2_stacks_in_39527{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39527 #jwresp_col1_stacks_in_39527,#stacks_in_39527 #jwresp_col2_stacks_in_39527{width:100%;float:none;display:block}#stacks_in_39527 #jwresp_col1_stacks_in_39527{margin-bottom:15px}}

#stacks_in_39527 {
	padding:  20px;
}
#stacks_in_39528 .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_39528 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39528 .fluid-image.unlimited img{width:100% !important}#stacks_in_39528 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39528 .fluid-image.align-left img{float:left}#stacks_in_39528 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_39531 {
	height: 70.00px;
}




























@media print {
	#spacerStackstacks_in_39531 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39532Calligrapher{			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_39532Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39532Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39532Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39532Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39532Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39532Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39532Calligrapher h6, .stacks_in_39532Calligrapher h5, .stacks_in_39532Calligrapher h4, .stacks_in_39532Calligrapher h3, .stacks_in_39532Calligrapher h2, .stacks_in_39532Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39532Calligrapher, .stacks_in_39532Calligrapher h1, .stacks_in_39532Calligrapher h2, .stacks_in_39532Calligrapher h3, .stacks_in_39532Calligrapher h4, .stacks_in_39532Calligrapher h5, .stacks_in_39532Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39532targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39532Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39532Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39532Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39532Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39532 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39533 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39536 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39540Calligrapher{			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_39540Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39540Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39540Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39540Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39540Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39540Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39540Calligrapher h6, .stacks_in_39540Calligrapher h5, .stacks_in_39540Calligrapher h4, .stacks_in_39540Calligrapher h3, .stacks_in_39540Calligrapher h2, .stacks_in_39540Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39540Calligrapher, .stacks_in_39540Calligrapher h1, .stacks_in_39540Calligrapher h2, .stacks_in_39540Calligrapher h3, .stacks_in_39540Calligrapher h4, .stacks_in_39540Calligrapher h5, .stacks_in_39540Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39540targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39540Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39540Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39540Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39540Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39540 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39541 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39543 {
	line-height: 2em;
}
#stacks_in_39546{}#stacks_in_39546 > .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_39546 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39546 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39546 > .jack.width-static{width:500px}#stacks_in_39546 > .jack.width-flexible{width:100%}#stacks_in_39546 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39546 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39546 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39546 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39546 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39546 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39546 > .jack::after{border-radius:15px}#stacks_in_39546 > .jack.border-detailed-radius,#stacks_in_39546 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39546 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39546 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39546 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39546 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39546 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39546 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39546 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39546 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39546 > .jack.bg-image:not(.glass){}#stacks_in_39546 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39546 > .jack.bg-image.glass.after,#stacks_in_39546 > .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_39546 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39546 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39546 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39546 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39546 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39546 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39546 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39546 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39546 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39546 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39546 > .jack.bg-image.glass.after,#stacks_in_39546 > .glass.jack.bg-image::after{}#stacks_in_39546 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39546 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39546 > .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_39546 > .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_39546 > .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_39546 > .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_39546 > .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_39546 > .jack.peek-shadow::before,#stacks_in_39546 > .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_39546 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39546 > .jack{overflow:hidden;}#stacks_in_39546 > .jack.height-static{height:500px}#stacks_in_39546 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_39547 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_39547 {
		display: none !important;
	}
}
#stacks_in_39548 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39548 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39548 #jwresp_col2_stacks_in_39548{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39548 #jwresp_col1_stacks_in_39548,#stacks_in_39548 #jwresp_col2_stacks_in_39548{width:100%;float:none;display:block}#stacks_in_39548 #jwresp_col1_stacks_in_39548{margin-bottom:15px}}

#stacks_in_39548 {
	padding:  20px;
}
#stacks_in_39549 .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_39549 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39549 .fluid-image.unlimited img{width:100% !important}#stacks_in_39549 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39549 .fluid-image.align-left img{float:left}#stacks_in_39549 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_39552 {
	height: 70.00px;
}




























@media print {
	#spacerStackstacks_in_39552 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39553Calligrapher{			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_39553Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39553Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39553Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39553Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39553Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39553Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39553Calligrapher h6, .stacks_in_39553Calligrapher h5, .stacks_in_39553Calligrapher h4, .stacks_in_39553Calligrapher h3, .stacks_in_39553Calligrapher h2, .stacks_in_39553Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39553Calligrapher, .stacks_in_39553Calligrapher h1, .stacks_in_39553Calligrapher h2, .stacks_in_39553Calligrapher h3, .stacks_in_39553Calligrapher h4, .stacks_in_39553Calligrapher h5, .stacks_in_39553Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39553targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39553Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39553Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39553Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39553Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39553 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39554 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39557 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39561Calligrapher{			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_39561Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39561Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39561Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39561Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39561Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39561Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39561Calligrapher h6, .stacks_in_39561Calligrapher h5, .stacks_in_39561Calligrapher h4, .stacks_in_39561Calligrapher h3, .stacks_in_39561Calligrapher h2, .stacks_in_39561Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39561Calligrapher, .stacks_in_39561Calligrapher h1, .stacks_in_39561Calligrapher h2, .stacks_in_39561Calligrapher h3, .stacks_in_39561Calligrapher h4, .stacks_in_39561Calligrapher h5, .stacks_in_39561Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39561targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39561Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39561Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39561Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39561Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39561 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39562 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39564 {
	line-height: 2em;
}
#stacks_in_39567{}#stacks_in_39567 > .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_39567 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39567 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39567 > .jack.width-static{width:500px}#stacks_in_39567 > .jack.width-flexible{width:100%}#stacks_in_39567 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39567 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39567 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39567 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39567 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39567 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39567 > .jack::after{border-radius:15px}#stacks_in_39567 > .jack.border-detailed-radius,#stacks_in_39567 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39567 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39567 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39567 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39567 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39567 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39567 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39567 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39567 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39567 > .jack.bg-image:not(.glass){}#stacks_in_39567 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39567 > .jack.bg-image.glass.after,#stacks_in_39567 > .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_39567 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39567 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39567 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39567 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39567 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39567 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39567 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39567 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39567 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39567 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39567 > .jack.bg-image.glass.after,#stacks_in_39567 > .glass.jack.bg-image::after{}#stacks_in_39567 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39567 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39567 > .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_39567 > .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_39567 > .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_39567 > .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_39567 > .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_39567 > .jack.peek-shadow::before,#stacks_in_39567 > .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_39567 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39567 > .jack{overflow:hidden;}#stacks_in_39567 > .jack.height-static{height:500px}#stacks_in_39567 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_39568 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_39568 {
		display: none !important;
	}
}
#stacks_in_39569 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39569 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39569 #jwresp_col2_stacks_in_39569{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39569 #jwresp_col1_stacks_in_39569,#stacks_in_39569 #jwresp_col2_stacks_in_39569{width:100%;float:none;display:block}#stacks_in_39569 #jwresp_col1_stacks_in_39569{margin-bottom:15px}}

#stacks_in_39569 {
	padding:  20px;
}
#stacks_in_39570 .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_39570 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39570 .fluid-image.unlimited img{width:100% !important}#stacks_in_39570 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39570 .fluid-image.align-left img{float:left}#stacks_in_39570 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_39573 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_39573 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39574Calligrapher{			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_39574Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39574Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39574Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39574Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39574Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39574Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39574Calligrapher h6, .stacks_in_39574Calligrapher h5, .stacks_in_39574Calligrapher h4, .stacks_in_39574Calligrapher h3, .stacks_in_39574Calligrapher h2, .stacks_in_39574Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39574Calligrapher, .stacks_in_39574Calligrapher h1, .stacks_in_39574Calligrapher h2, .stacks_in_39574Calligrapher h3, .stacks_in_39574Calligrapher h4, .stacks_in_39574Calligrapher h5, .stacks_in_39574Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39574targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39574Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39574Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39574Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39574Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39574 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39575 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39578 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39580Calligrapher{			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_39580Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39580Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39580Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39580Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39580Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39580Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39580Calligrapher h6, .stacks_in_39580Calligrapher h5, .stacks_in_39580Calligrapher h4, .stacks_in_39580Calligrapher h3, .stacks_in_39580Calligrapher h2, .stacks_in_39580Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39580Calligrapher, .stacks_in_39580Calligrapher h1, .stacks_in_39580Calligrapher h2, .stacks_in_39580Calligrapher h3, .stacks_in_39580Calligrapher h4, .stacks_in_39580Calligrapher h5, .stacks_in_39580Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39580targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39580Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39580Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39580Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39580Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39580 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39581 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39583 {
	line-height: 2em;
}
#stacks_in_39586{}#stacks_in_39586 > .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_39586 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39586 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39586 > .jack.width-static{width:500px}#stacks_in_39586 > .jack.width-flexible{width:100%}#stacks_in_39586 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39586 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39586 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39586 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39586 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39586 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39586 > .jack::after{border-radius:15px}#stacks_in_39586 > .jack.border-detailed-radius,#stacks_in_39586 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39586 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39586 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39586 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39586 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39586 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39586 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39586 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39586 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39586 > .jack.bg-image:not(.glass){}#stacks_in_39586 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39586 > .jack.bg-image.glass.after,#stacks_in_39586 > .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_39586 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39586 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39586 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39586 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39586 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39586 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39586 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39586 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39586 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39586 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39586 > .jack.bg-image.glass.after,#stacks_in_39586 > .glass.jack.bg-image::after{}#stacks_in_39586 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39586 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39586 > .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_39586 > .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_39586 > .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_39586 > .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_39586 > .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_39586 > .jack.peek-shadow::before,#stacks_in_39586 > .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_39586 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39586 > .jack{overflow:hidden;}#stacks_in_39586 > .jack.height-static{height:500px}#stacks_in_39586 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39587 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_39587 {
		display: none !important;
	}
}
#stacks_in_39588 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39588 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39588 #jwresp_col2_stacks_in_39588{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39588 #jwresp_col1_stacks_in_39588,#stacks_in_39588 #jwresp_col2_stacks_in_39588{width:100%;float:none;display:block}#stacks_in_39588 #jwresp_col1_stacks_in_39588{margin-bottom:15px}}

#stacks_in_39588 {
	padding:  20px;
}
#stacks_in_39589 .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_39589 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39589 .fluid-image.unlimited img{width:100% !important}#stacks_in_39589 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39589 .fluid-image.align-left img{float:left}#stacks_in_39589 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_39592 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_39592 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39593Calligrapher{			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_39593Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39593Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39593Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39593Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39593Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39593Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39593Calligrapher h6, .stacks_in_39593Calligrapher h5, .stacks_in_39593Calligrapher h4, .stacks_in_39593Calligrapher h3, .stacks_in_39593Calligrapher h2, .stacks_in_39593Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39593Calligrapher, .stacks_in_39593Calligrapher h1, .stacks_in_39593Calligrapher h2, .stacks_in_39593Calligrapher h3, .stacks_in_39593Calligrapher h4, .stacks_in_39593Calligrapher h5, .stacks_in_39593Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39593targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39593Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39593Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39593Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39593Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39593 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39594 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39597 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39599 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39601Calligrapher{			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_39601Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39601Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39601Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39601Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39601Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39601Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39601Calligrapher h6, .stacks_in_39601Calligrapher h5, .stacks_in_39601Calligrapher h4, .stacks_in_39601Calligrapher h3, .stacks_in_39601Calligrapher h2, .stacks_in_39601Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39601Calligrapher, .stacks_in_39601Calligrapher h1, .stacks_in_39601Calligrapher h2, .stacks_in_39601Calligrapher h3, .stacks_in_39601Calligrapher h4, .stacks_in_39601Calligrapher h5, .stacks_in_39601Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39601targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39601Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39601Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39601Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39601Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39602 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39604 {
	line-height: 2em;
}
#stacks_in_39607{}#stacks_in_39607 > .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_39607 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39607 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39607 > .jack.width-static{width:500px}#stacks_in_39607 > .jack.width-flexible{width:100%}#stacks_in_39607 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39607 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39607 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39607 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39607 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39607 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39607 > .jack::after{border-radius:15px}#stacks_in_39607 > .jack.border-detailed-radius,#stacks_in_39607 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39607 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39607 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39607 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39607 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39607 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39607 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39607 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39607 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39607 > .jack.bg-image:not(.glass){}#stacks_in_39607 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39607 > .jack.bg-image.glass.after,#stacks_in_39607 > .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_39607 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39607 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39607 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39607 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39607 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39607 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39607 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39607 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39607 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39607 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39607 > .jack.bg-image.glass.after,#stacks_in_39607 > .glass.jack.bg-image::after{}#stacks_in_39607 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39607 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39607 > .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_39607 > .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_39607 > .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_39607 > .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_39607 > .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_39607 > .jack.peek-shadow::before,#stacks_in_39607 > .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_39607 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39607 > .jack{overflow:hidden;}#stacks_in_39607 > .jack.height-static{height:500px}#stacks_in_39607 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_39608 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_39608 {
		display: none !important;
	}
}
#stacks_in_39609 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39609 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39609 #jwresp_col2_stacks_in_39609{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39609 #jwresp_col1_stacks_in_39609,#stacks_in_39609 #jwresp_col2_stacks_in_39609{width:100%;float:none;display:block}#stacks_in_39609 #jwresp_col1_stacks_in_39609{margin-bottom:15px}}

#stacks_in_39609 {
	padding:  20px;
}
#stacks_in_39610 .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_39610 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39610 .fluid-image.unlimited img{width:100% !important}#stacks_in_39610 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39610 .fluid-image.align-left img{float:left}#stacks_in_39610 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_39613 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_39613 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39614Calligrapher{			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_39614Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39614Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39614Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39614Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39614Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39614Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39614Calligrapher h6, .stacks_in_39614Calligrapher h5, .stacks_in_39614Calligrapher h4, .stacks_in_39614Calligrapher h3, .stacks_in_39614Calligrapher h2, .stacks_in_39614Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39614Calligrapher, .stacks_in_39614Calligrapher h1, .stacks_in_39614Calligrapher h2, .stacks_in_39614Calligrapher h3, .stacks_in_39614Calligrapher h4, .stacks_in_39614Calligrapher h5, .stacks_in_39614Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39614targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39614Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39614Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39614Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39614Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39614 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39615 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39618 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39620 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39622Calligrapher{			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_39622Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39622Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39622Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39622Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39622Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39622Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39622Calligrapher h6, .stacks_in_39622Calligrapher h5, .stacks_in_39622Calligrapher h4, .stacks_in_39622Calligrapher h3, .stacks_in_39622Calligrapher h2, .stacks_in_39622Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39622Calligrapher, .stacks_in_39622Calligrapher h1, .stacks_in_39622Calligrapher h2, .stacks_in_39622Calligrapher h3, .stacks_in_39622Calligrapher h4, .stacks_in_39622Calligrapher h5, .stacks_in_39622Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39622targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39622Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39622Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39622Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39622Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39622 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39623 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39625 {
	line-height: 2em;
}
#stacks_in_39628{}#stacks_in_39628 > .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_39628 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39628 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39628 > .jack.width-static{width:500px}#stacks_in_39628 > .jack.width-flexible{width:100%}#stacks_in_39628 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39628 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39628 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39628 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39628 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39628 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39628 > .jack::after{border-radius:15px}#stacks_in_39628 > .jack.border-detailed-radius,#stacks_in_39628 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39628 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39628 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39628 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39628 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39628 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39628 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39628 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39628 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39628 > .jack.bg-image:not(.glass){}#stacks_in_39628 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39628 > .jack.bg-image.glass.after,#stacks_in_39628 > .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_39628 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39628 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39628 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39628 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39628 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39628 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39628 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39628 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39628 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39628 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39628 > .jack.bg-image.glass.after,#stacks_in_39628 > .glass.jack.bg-image::after{}#stacks_in_39628 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39628 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39628 > .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_39628 > .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_39628 > .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_39628 > .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_39628 > .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_39628 > .jack.peek-shadow::before,#stacks_in_39628 > .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_39628 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39628 > .jack{overflow:hidden;}#stacks_in_39628 > .jack.height-static{height:500px}#stacks_in_39628 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_39629 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_39629 {
		display: none !important;
	}
}
#stacks_in_39630 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39630 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39630 #jwresp_col2_stacks_in_39630{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39630 #jwresp_col1_stacks_in_39630,#stacks_in_39630 #jwresp_col2_stacks_in_39630{width:100%;float:none;display:block}#stacks_in_39630 #jwresp_col1_stacks_in_39630{margin-bottom:15px}}

#stacks_in_39630 {
	padding:  20px;
}
#stacks_in_39631 .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_39631 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39631 .fluid-image.unlimited img{width:100% !important}#stacks_in_39631 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39631 .fluid-image.align-left img{float:left}#stacks_in_39631 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39634Calligrapher{			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_39634Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39634Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39634Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39634Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39634Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39634Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39634Calligrapher h6, .stacks_in_39634Calligrapher h5, .stacks_in_39634Calligrapher h4, .stacks_in_39634Calligrapher h3, .stacks_in_39634Calligrapher h2, .stacks_in_39634Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39634Calligrapher, .stacks_in_39634Calligrapher h1, .stacks_in_39634Calligrapher h2, .stacks_in_39634Calligrapher h3, .stacks_in_39634Calligrapher h4, .stacks_in_39634Calligrapher h5, .stacks_in_39634Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39634targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39634Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39634Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39634Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39634Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39634 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39635 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39638 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39640 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39642Calligrapher{			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_39642Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39642Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39642Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39642Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39642Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39642Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39642Calligrapher h6, .stacks_in_39642Calligrapher h5, .stacks_in_39642Calligrapher h4, .stacks_in_39642Calligrapher h3, .stacks_in_39642Calligrapher h2, .stacks_in_39642Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39642Calligrapher, .stacks_in_39642Calligrapher h1, .stacks_in_39642Calligrapher h2, .stacks_in_39642Calligrapher h3, .stacks_in_39642Calligrapher h4, .stacks_in_39642Calligrapher h5, .stacks_in_39642Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39642targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39642Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39642Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39642Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39642Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39642 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39643 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39645 {
	line-height: 2em;
}
#stacks_in_39648{}#stacks_in_39648 > .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_39648 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39648 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39648 > .jack.width-static{width:500px}#stacks_in_39648 > .jack.width-flexible{width:100%}#stacks_in_39648 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39648 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39648 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39648 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39648 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39648 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39648 > .jack::after{border-radius:15px}#stacks_in_39648 > .jack.border-detailed-radius,#stacks_in_39648 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39648 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39648 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39648 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39648 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39648 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39648 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39648 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39648 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39648 > .jack.bg-image:not(.glass){}#stacks_in_39648 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39648 > .jack.bg-image.glass.after,#stacks_in_39648 > .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_39648 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39648 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39648 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39648 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39648 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39648 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39648 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39648 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39648 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39648 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39648 > .jack.bg-image.glass.after,#stacks_in_39648 > .glass.jack.bg-image::after{}#stacks_in_39648 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39648 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39648 > .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_39648 > .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_39648 > .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_39648 > .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_39648 > .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_39648 > .jack.peek-shadow::before,#stacks_in_39648 > .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_39648 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39648 > .jack{overflow:hidden;}#stacks_in_39648 > .jack.height-static{height:500px}#stacks_in_39648 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_39649 {
	height: 60.00px;
}




























@media print {
	#spacerStackstacks_in_39649 {
		display: none !important;
	}
}
#stacks_in_39650 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39650 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39650 #jwresp_col2_stacks_in_39650{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39650 #jwresp_col1_stacks_in_39650,#stacks_in_39650 #jwresp_col2_stacks_in_39650{width:100%;float:none;display:block}#stacks_in_39650 #jwresp_col1_stacks_in_39650{margin-bottom:15px}}

#stacks_in_39650 {
	padding:  20px;
}
#stacks_in_39651 .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_39651 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39651 .fluid-image.unlimited img{width:100% !important}#stacks_in_39651 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39651 .fluid-image.align-left img{float:left}#stacks_in_39651 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_39654 {
	height: 60.00px;
}




























@media print {
	#spacerStackstacks_in_39654 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39655Calligrapher{			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_39655Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39655Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39655Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39655Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39655Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39655Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39655Calligrapher h6, .stacks_in_39655Calligrapher h5, .stacks_in_39655Calligrapher h4, .stacks_in_39655Calligrapher h3, .stacks_in_39655Calligrapher h2, .stacks_in_39655Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39655Calligrapher, .stacks_in_39655Calligrapher h1, .stacks_in_39655Calligrapher h2, .stacks_in_39655Calligrapher h3, .stacks_in_39655Calligrapher h4, .stacks_in_39655Calligrapher h5, .stacks_in_39655Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39655targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39655Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39655Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39655Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39655Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39655 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39656 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39659 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39661Calligrapher{			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_39661Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39661Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39661Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39661Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39661Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39661Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39661Calligrapher h6, .stacks_in_39661Calligrapher h5, .stacks_in_39661Calligrapher h4, .stacks_in_39661Calligrapher h3, .stacks_in_39661Calligrapher h2, .stacks_in_39661Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39661Calligrapher, .stacks_in_39661Calligrapher h1, .stacks_in_39661Calligrapher h2, .stacks_in_39661Calligrapher h3, .stacks_in_39661Calligrapher h4, .stacks_in_39661Calligrapher h5, .stacks_in_39661Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39661targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39661Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39661Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39661Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39661Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39661 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39662 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39664 {
	line-height: 2em;
}
#stacks_in_39667{}#stacks_in_39667 > .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_39667 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39667 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39667 > .jack.width-static{width:500px}#stacks_in_39667 > .jack.width-flexible{width:100%}#stacks_in_39667 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39667 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39667 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39667 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39667 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39667 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39667 > .jack::after{border-radius:15px}#stacks_in_39667 > .jack.border-detailed-radius,#stacks_in_39667 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39667 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39667 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39667 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39667 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39667 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39667 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39667 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39667 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39667 > .jack.bg-image:not(.glass){}#stacks_in_39667 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39667 > .jack.bg-image.glass.after,#stacks_in_39667 > .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_39667 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39667 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39667 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39667 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39667 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39667 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39667 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39667 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39667 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39667 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39667 > .jack.bg-image.glass.after,#stacks_in_39667 > .glass.jack.bg-image::after{}#stacks_in_39667 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39667 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39667 > .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_39667 > .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_39667 > .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_39667 > .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_39667 > .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_39667 > .jack.peek-shadow::before,#stacks_in_39667 > .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_39667 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39667 > .jack{overflow:hidden;}#stacks_in_39667 > .jack.height-static{height:500px}#stacks_in_39667 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39668 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_39668 {
		display: none !important;
	}
}
#stacks_in_39669 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39669 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39669 #jwresp_col2_stacks_in_39669{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39669 #jwresp_col1_stacks_in_39669,#stacks_in_39669 #jwresp_col2_stacks_in_39669{width:100%;float:none;display:block}#stacks_in_39669 #jwresp_col1_stacks_in_39669{margin-bottom:15px}}

#stacks_in_39669 {
	padding:  20px;
}
#stacks_in_39670 .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_39670 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39670 .fluid-image.unlimited img{width:100% !important}#stacks_in_39670 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39670 .fluid-image.align-left img{float:left}#stacks_in_39670 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39673Calligrapher{			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_39673Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39673Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39673Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39673Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39673Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39673Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39673Calligrapher h6, .stacks_in_39673Calligrapher h5, .stacks_in_39673Calligrapher h4, .stacks_in_39673Calligrapher h3, .stacks_in_39673Calligrapher h2, .stacks_in_39673Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39673Calligrapher, .stacks_in_39673Calligrapher h1, .stacks_in_39673Calligrapher h2, .stacks_in_39673Calligrapher h3, .stacks_in_39673Calligrapher h4, .stacks_in_39673Calligrapher h5, .stacks_in_39673Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39673targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39673Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39673Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39673Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39673Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39673 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39674 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39677 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39679 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39681Calligrapher{			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_39681Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39681Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39681Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39681Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39681Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39681Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39681Calligrapher h6, .stacks_in_39681Calligrapher h5, .stacks_in_39681Calligrapher h4, .stacks_in_39681Calligrapher h3, .stacks_in_39681Calligrapher h2, .stacks_in_39681Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39681Calligrapher, .stacks_in_39681Calligrapher h1, .stacks_in_39681Calligrapher h2, .stacks_in_39681Calligrapher h3, .stacks_in_39681Calligrapher h4, .stacks_in_39681Calligrapher h5, .stacks_in_39681Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39681targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39681Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39681Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39681Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39681Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39681 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39684 {
	line-height: 2em;
}
#stacks_in_39687{}#stacks_in_39687 > .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_39687 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39687 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39687 > .jack.width-static{width:500px}#stacks_in_39687 > .jack.width-flexible{width:100%}#stacks_in_39687 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39687 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39687 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39687 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39687 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39687 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39687 > .jack::after{border-radius:15px}#stacks_in_39687 > .jack.border-detailed-radius,#stacks_in_39687 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39687 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39687 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39687 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39687 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39687 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39687 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39687 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39687 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39687 > .jack.bg-image:not(.glass){}#stacks_in_39687 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39687 > .jack.bg-image.glass.after,#stacks_in_39687 > .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_39687 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39687 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39687 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39687 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39687 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39687 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39687 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39687 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39687 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39687 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39687 > .jack.bg-image.glass.after,#stacks_in_39687 > .glass.jack.bg-image::after{}#stacks_in_39687 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39687 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39687 > .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_39687 > .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_39687 > .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_39687 > .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_39687 > .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_39687 > .jack.peek-shadow::before,#stacks_in_39687 > .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_39687 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39687 > .jack{overflow:hidden;}#stacks_in_39687 > .jack.height-static{height:500px}#stacks_in_39687 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39688 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_39688 {
		display: none !important;
	}
}
#stacks_in_39689 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39689 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39689 #jwresp_col2_stacks_in_39689{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39689 #jwresp_col1_stacks_in_39689,#stacks_in_39689 #jwresp_col2_stacks_in_39689{width:100%;float:none;display:block}#stacks_in_39689 #jwresp_col1_stacks_in_39689{margin-bottom:15px}}

#stacks_in_39689 {
	padding:  20px;
}
#stacks_in_39690 .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_39690 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39690 .fluid-image.unlimited img{width:100% !important}#stacks_in_39690 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39690 .fluid-image.align-left img{float:left}#stacks_in_39690 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_39693 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_39693 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39694Calligrapher{			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_39694Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39694Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39694Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39694Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39694Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39694Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39694Calligrapher h6, .stacks_in_39694Calligrapher h5, .stacks_in_39694Calligrapher h4, .stacks_in_39694Calligrapher h3, .stacks_in_39694Calligrapher h2, .stacks_in_39694Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39694Calligrapher, .stacks_in_39694Calligrapher h1, .stacks_in_39694Calligrapher h2, .stacks_in_39694Calligrapher h3, .stacks_in_39694Calligrapher h4, .stacks_in_39694Calligrapher h5, .stacks_in_39694Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39694targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39694Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39694Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39694Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39694Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39694 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39695 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39698 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39700Calligrapher{			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_39700Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39700Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39700Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39700Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39700Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39700Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39700Calligrapher h6, .stacks_in_39700Calligrapher h5, .stacks_in_39700Calligrapher h4, .stacks_in_39700Calligrapher h3, .stacks_in_39700Calligrapher h2, .stacks_in_39700Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39700Calligrapher, .stacks_in_39700Calligrapher h1, .stacks_in_39700Calligrapher h2, .stacks_in_39700Calligrapher h3, .stacks_in_39700Calligrapher h4, .stacks_in_39700Calligrapher h5, .stacks_in_39700Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39700targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39700Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39700Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39700Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39700Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39700 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39701 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39703 {
	line-height: 2em;
}
#stacks_in_39706{}#stacks_in_39706 > .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_39706 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39706 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39706 > .jack.width-static{width:500px}#stacks_in_39706 > .jack.width-flexible{width:100%}#stacks_in_39706 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39706 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39706 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39706 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39706 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39706 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39706 > .jack::after{border-radius:15px}#stacks_in_39706 > .jack.border-detailed-radius,#stacks_in_39706 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39706 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39706 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39706 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39706 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39706 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39706 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39706 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39706 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39706 > .jack.bg-image:not(.glass){}#stacks_in_39706 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39706 > .jack.bg-image.glass.after,#stacks_in_39706 > .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_39706 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39706 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39706 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39706 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39706 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39706 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39706 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39706 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39706 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39706 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39706 > .jack.bg-image.glass.after,#stacks_in_39706 > .glass.jack.bg-image::after{}#stacks_in_39706 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39706 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39706 > .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_39706 > .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_39706 > .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_39706 > .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_39706 > .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_39706 > .jack.peek-shadow::before,#stacks_in_39706 > .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_39706 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39706 > .jack{overflow:hidden;}#stacks_in_39706 > .jack.height-static{height:500px}#stacks_in_39706 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_39707 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_39707 {
		display: none !important;
	}
}
#stacks_in_39708 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39708 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39708 #jwresp_col2_stacks_in_39708{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39708 #jwresp_col1_stacks_in_39708,#stacks_in_39708 #jwresp_col2_stacks_in_39708{width:100%;float:none;display:block}#stacks_in_39708 #jwresp_col1_stacks_in_39708{margin-bottom:15px}}

#stacks_in_39708 {
	padding:  20px;
}
#stacks_in_39709 .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_39709 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39709 .fluid-image.unlimited img{width:100% !important}#stacks_in_39709 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39709 .fluid-image.align-left img{float:left}#stacks_in_39709 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_39712 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_39712 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39713Calligrapher{			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_39713Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39713Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39713Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39713Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39713Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39713Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39713Calligrapher h6, .stacks_in_39713Calligrapher h5, .stacks_in_39713Calligrapher h4, .stacks_in_39713Calligrapher h3, .stacks_in_39713Calligrapher h2, .stacks_in_39713Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39713Calligrapher, .stacks_in_39713Calligrapher h1, .stacks_in_39713Calligrapher h2, .stacks_in_39713Calligrapher h3, .stacks_in_39713Calligrapher h4, .stacks_in_39713Calligrapher h5, .stacks_in_39713Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39713targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39713Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39713Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39713Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39713Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39713 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39714 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39717 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39719 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39721Calligrapher{			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_39721Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39721Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39721Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39721Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39721Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39721Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39721Calligrapher h6, .stacks_in_39721Calligrapher h5, .stacks_in_39721Calligrapher h4, .stacks_in_39721Calligrapher h3, .stacks_in_39721Calligrapher h2, .stacks_in_39721Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39721Calligrapher, .stacks_in_39721Calligrapher h1, .stacks_in_39721Calligrapher h2, .stacks_in_39721Calligrapher h3, .stacks_in_39721Calligrapher h4, .stacks_in_39721Calligrapher h5, .stacks_in_39721Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39721targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39721Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39721Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39721Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39721Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39721 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39722 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39724 {
	line-height: 2em;
}
#stacks_in_39727{}#stacks_in_39727 > .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_39727 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39727 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39727 > .jack.width-static{width:500px}#stacks_in_39727 > .jack.width-flexible{width:100%}#stacks_in_39727 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39727 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39727 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39727 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39727 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39727 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39727 > .jack::after{border-radius:15px}#stacks_in_39727 > .jack.border-detailed-radius,#stacks_in_39727 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39727 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39727 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39727 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39727 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39727 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39727 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39727 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39727 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39727 > .jack.bg-image:not(.glass){}#stacks_in_39727 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39727 > .jack.bg-image.glass.after,#stacks_in_39727 > .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_39727 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39727 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39727 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39727 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39727 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39727 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39727 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39727 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39727 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39727 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39727 > .jack.bg-image.glass.after,#stacks_in_39727 > .glass.jack.bg-image::after{}#stacks_in_39727 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39727 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39727 > .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_39727 > .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_39727 > .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_39727 > .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_39727 > .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_39727 > .jack.peek-shadow::before,#stacks_in_39727 > .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_39727 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39727 > .jack{overflow:hidden;}#stacks_in_39727 > .jack.height-static{height:500px}#stacks_in_39727 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_39728 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_39728 {
		display: none !important;
	}
}
#stacks_in_39729 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39729 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39729 #jwresp_col2_stacks_in_39729{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39729 #jwresp_col1_stacks_in_39729,#stacks_in_39729 #jwresp_col2_stacks_in_39729{width:100%;float:none;display:block}#stacks_in_39729 #jwresp_col1_stacks_in_39729{margin-bottom:15px}}

#stacks_in_39729 {
	padding:  20px;
}
#stacks_in_39730 .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_39730 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39730 .fluid-image.unlimited img{width:100% !important}#stacks_in_39730 .fluid-image.define_max img{width:100% !important;max-width:250px !important}#stacks_in_39730 .fluid-image.align-left img{float:left}#stacks_in_39730 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_39733 {
	height: 120.00px;
}




























@media print {
	#spacerStackstacks_in_39733 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39734Calligrapher{			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_39734Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39734Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39734Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39734Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39734Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39734Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39734Calligrapher h6, .stacks_in_39734Calligrapher h5, .stacks_in_39734Calligrapher h4, .stacks_in_39734Calligrapher h3, .stacks_in_39734Calligrapher h2, .stacks_in_39734Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39734Calligrapher, .stacks_in_39734Calligrapher h1, .stacks_in_39734Calligrapher h2, .stacks_in_39734Calligrapher h3, .stacks_in_39734Calligrapher h4, .stacks_in_39734Calligrapher h5, .stacks_in_39734Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39734targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39734Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39734Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39734Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39734Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39734 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39735 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39738 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39740 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39742Calligrapher{			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_39742Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39742Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39742Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39742Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39742Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39742Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39742Calligrapher h6, .stacks_in_39742Calligrapher h5, .stacks_in_39742Calligrapher h4, .stacks_in_39742Calligrapher h3, .stacks_in_39742Calligrapher h2, .stacks_in_39742Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39742Calligrapher, .stacks_in_39742Calligrapher h1, .stacks_in_39742Calligrapher h2, .stacks_in_39742Calligrapher h3, .stacks_in_39742Calligrapher h4, .stacks_in_39742Calligrapher h5, .stacks_in_39742Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39742targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39742Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39742Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39742Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39742Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39742 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39743 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39745 {
	line-height: 2em;
}
#stacks_in_39748{}#stacks_in_39748 > .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_39748 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39748 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39748 > .jack.width-static{width:500px}#stacks_in_39748 > .jack.width-flexible{width:100%}#stacks_in_39748 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39748 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39748 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39748 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39748 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39748 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39748 > .jack::after{border-radius:15px}#stacks_in_39748 > .jack.border-detailed-radius,#stacks_in_39748 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39748 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39748 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39748 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39748 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39748 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39748 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39748 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39748 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39748 > .jack.bg-image:not(.glass){}#stacks_in_39748 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39748 > .jack.bg-image.glass.after,#stacks_in_39748 > .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_39748 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39748 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39748 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39748 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39748 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39748 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39748 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39748 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39748 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39748 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39748 > .jack.bg-image.glass.after,#stacks_in_39748 > .glass.jack.bg-image::after{}#stacks_in_39748 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39748 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39748 > .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_39748 > .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_39748 > .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_39748 > .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_39748 > .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_39748 > .jack.peek-shadow::before,#stacks_in_39748 > .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_39748 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39748 > .jack{overflow:hidden;}#stacks_in_39748 > .jack.height-static{height:500px}#stacks_in_39748 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_39749 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_39749 {
		display: none !important;
	}
}
#stacks_in_39750 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39750 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39750 #jwresp_col2_stacks_in_39750{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39750 #jwresp_col1_stacks_in_39750,#stacks_in_39750 #jwresp_col2_stacks_in_39750{width:100%;float:none;display:block}#stacks_in_39750 #jwresp_col1_stacks_in_39750{margin-bottom:15px}}

#stacks_in_39750 {
	padding:  20px;
}
#stacks_in_39751 .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_39751 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39751 .fluid-image.unlimited img{width:100% !important}#stacks_in_39751 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39751 .fluid-image.align-left img{float:left}#stacks_in_39751 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_39754 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_39754 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39755Calligrapher{			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_39755Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39755Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39755Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39755Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39755Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39755Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39755Calligrapher h6, .stacks_in_39755Calligrapher h5, .stacks_in_39755Calligrapher h4, .stacks_in_39755Calligrapher h3, .stacks_in_39755Calligrapher h2, .stacks_in_39755Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39755Calligrapher, .stacks_in_39755Calligrapher h1, .stacks_in_39755Calligrapher h2, .stacks_in_39755Calligrapher h3, .stacks_in_39755Calligrapher h4, .stacks_in_39755Calligrapher h5, .stacks_in_39755Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39755targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39755Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39755Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39755Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39755Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39755 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39756 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39759 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39761 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39763Calligrapher{			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_39763Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39763Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39763Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39763Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39763Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39763Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39763Calligrapher h6, .stacks_in_39763Calligrapher h5, .stacks_in_39763Calligrapher h4, .stacks_in_39763Calligrapher h3, .stacks_in_39763Calligrapher h2, .stacks_in_39763Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39763Calligrapher, .stacks_in_39763Calligrapher h1, .stacks_in_39763Calligrapher h2, .stacks_in_39763Calligrapher h3, .stacks_in_39763Calligrapher h4, .stacks_in_39763Calligrapher h5, .stacks_in_39763Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39763targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39763Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39763Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39763Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39763Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39763 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39764 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39766 {
	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:500px}#stacks_in_39769 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39770 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_39770 {
		display: none !important;
	}
}
#stacks_in_39771 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39771 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39771 #jwresp_col2_stacks_in_39771{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39771 #jwresp_col1_stacks_in_39771,#stacks_in_39771 #jwresp_col2_stacks_in_39771{width:100%;float:none;display:block}#stacks_in_39771 #jwresp_col1_stacks_in_39771{margin-bottom:15px}}

#stacks_in_39771 {
	padding:  20px;
}
#stacks_in_39772 .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_39772 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39772 .fluid-image.unlimited img{width:100% !important}#stacks_in_39772 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39772 .fluid-image.align-left img{float:left}#stacks_in_39772 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39775Calligrapher{			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_39775Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39775Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39775Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39775Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39775Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39775Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39775Calligrapher h6, .stacks_in_39775Calligrapher h5, .stacks_in_39775Calligrapher h4, .stacks_in_39775Calligrapher h3, .stacks_in_39775Calligrapher h2, .stacks_in_39775Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39775Calligrapher, .stacks_in_39775Calligrapher h1, .stacks_in_39775Calligrapher h2, .stacks_in_39775Calligrapher h3, .stacks_in_39775Calligrapher h4, .stacks_in_39775Calligrapher h5, .stacks_in_39775Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39775targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39775Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39775Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39775Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39775Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39775 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39776 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39779 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39781 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39783Calligrapher{			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_39783Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39783Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39783Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39783Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39783Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39783Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39783Calligrapher h6, .stacks_in_39783Calligrapher h5, .stacks_in_39783Calligrapher h4, .stacks_in_39783Calligrapher h3, .stacks_in_39783Calligrapher h2, .stacks_in_39783Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39783Calligrapher, .stacks_in_39783Calligrapher h1, .stacks_in_39783Calligrapher h2, .stacks_in_39783Calligrapher h3, .stacks_in_39783Calligrapher h4, .stacks_in_39783Calligrapher h5, .stacks_in_39783Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39783targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39783Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39783Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39783Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39783Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39783 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39784 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39786 {
	line-height: 2em;
}
#stacks_in_39789{}#stacks_in_39789 > .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_39789 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39789 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39789 > .jack.width-static{width:500px}#stacks_in_39789 > .jack.width-flexible{width:100%}#stacks_in_39789 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39789 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39789 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39789 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39789 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39789 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39789 > .jack::after{border-radius:15px}#stacks_in_39789 > .jack.border-detailed-radius,#stacks_in_39789 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39789 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39789 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39789 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39789 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39789 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39789 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39789 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39789 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39789 > .jack.bg-image:not(.glass){}#stacks_in_39789 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39789 > .jack.bg-image.glass.after,#stacks_in_39789 > .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_39789 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39789 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39789 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39789 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39789 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39789 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39789 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39789 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39789 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39789 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39789 > .jack.bg-image.glass.after,#stacks_in_39789 > .glass.jack.bg-image::after{}#stacks_in_39789 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39789 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39789 > .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_39789 > .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_39789 > .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_39789 > .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_39789 > .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_39789 > .jack.peek-shadow::before,#stacks_in_39789 > .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_39789 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39789 > .jack{overflow:hidden;}#stacks_in_39789 > .jack.height-static{height:500px}#stacks_in_39789 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_39790 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_39790 {
		display: none !important;
	}
}
#stacks_in_39791 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_39791 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_39791 #jwresp_col2_stacks_in_39791{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_39791 #jwresp_col1_stacks_in_39791,#stacks_in_39791 #jwresp_col2_stacks_in_39791{width:100%;float:none;display:block}#stacks_in_39791 #jwresp_col1_stacks_in_39791{margin-bottom:15px}}

#stacks_in_39791 {
	padding:  20px;
}
#stacks_in_39326 .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_39326 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39326 .fluid-image.unlimited img{width:100% !important}#stacks_in_39326 .fluid-image.define_max img{width:100% !important;max-width:250px !important}#stacks_in_39326 .fluid-image.align-left img{float:left}#stacks_in_39326 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 130.00px;
}

#spacerStackstacks_in_39794 {
	height: 130.00px;
}




























@media print {
	#spacerStackstacks_in_39794 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39795Calligrapher{			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_39795Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39795Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39795Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39795Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39795Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39795Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39795Calligrapher h6, .stacks_in_39795Calligrapher h5, .stacks_in_39795Calligrapher h4, .stacks_in_39795Calligrapher h3, .stacks_in_39795Calligrapher h2, .stacks_in_39795Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39795Calligrapher, .stacks_in_39795Calligrapher h1, .stacks_in_39795Calligrapher h2, .stacks_in_39795Calligrapher h3, .stacks_in_39795Calligrapher h4, .stacks_in_39795Calligrapher h5, .stacks_in_39795Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39795targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39795Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39795Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39795Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39795Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39795 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39796 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39799 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39801Calligrapher{			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_39801Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39801Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39801Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39801Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39801Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39801Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39801Calligrapher h6, .stacks_in_39801Calligrapher h5, .stacks_in_39801Calligrapher h4, .stacks_in_39801Calligrapher h3, .stacks_in_39801Calligrapher h2, .stacks_in_39801Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39801Calligrapher, .stacks_in_39801Calligrapher h1, .stacks_in_39801Calligrapher h2, .stacks_in_39801Calligrapher h3, .stacks_in_39801Calligrapher h4, .stacks_in_39801Calligrapher h5, .stacks_in_39801Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39801targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39801Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39801Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39801Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39801Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39801 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39802 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39804 {
	line-height: 2em;
}
#stacks_in_39327{padding-left:0px;padding-right:0px;}#stacks_in_39327 > .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_39327 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39327 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39327 > .jack.width-static{width:500px}#stacks_in_39327 > .jack.width-flexible{width:100%}#stacks_in_39327 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39327 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39327 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39327 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39327 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39327 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39327 > .jack::after{border-radius:0px}#stacks_in_39327 > .jack.border-detailed-radius,#stacks_in_39327 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_39327 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39327 > .jack.bg-color{background-color:#89C5FF}#stacks_in_39327 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_39327 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39327 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39327 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39327 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39327 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39327 > .jack.bg-image:not(.glass){}#stacks_in_39327 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39327 > .jack.bg-image.glass.after,#stacks_in_39327 > .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_39327 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39327 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39327 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39327 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39327 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39327 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39327 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39327 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39327 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39327 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39327 > .jack.bg-image.glass.after,#stacks_in_39327 > .glass.jack.bg-image::after{}#stacks_in_39327 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39327 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39327 > .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_39327 > .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_39327 > .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_39327 > .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_39327 > .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_39327 > .jack.peek-shadow::before,#stacks_in_39327 > .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_39327 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39327 > .jack{overflow:visible;}#stacks_in_39327 > .jack.height-static{height:100px}#stacks_in_39327 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40202{}#stacks_in_40202 > .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_40202 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40202 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40202 > .jack.width-static{width:500px}#stacks_in_40202 > .jack.width-flexible{width:100%}#stacks_in_40202 > .jack.margin-detailed{margin:10.00px 0.00px 10.00px 0.00px}#stacks_in_40202 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40202 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40202 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40202 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40202 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40202 > .jack::after{border-radius:15px}#stacks_in_40202 > .jack.border-detailed-radius,#stacks_in_40202 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_40202 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40202 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40202 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_40202 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40202 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40202 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40202 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40202 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40202 > .jack.bg-image:not(.glass){}#stacks_in_40202 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40202 > .jack.bg-image.glass.after,#stacks_in_40202 > .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_40202 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40202 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40202 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40202 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40202 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40202 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40202 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40202 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40202 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40202 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40202 > .jack.bg-image.glass.after,#stacks_in_40202 > .glass.jack.bg-image::after{}#stacks_in_40202 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40202 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40202 > .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_40202 > .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_40202 > .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_40202 > .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_40202 > .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_40202 > .jack.peek-shadow::before,#stacks_in_40202 > .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_40202 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40202 > .jack{overflow:hidden;}#stacks_in_40202 > .jack.height-static{height:860px}#stacks_in_40202 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39809Calligrapher{			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_39809Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39809Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39809Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39809Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39809Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39809Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39809Calligrapher h6, .stacks_in_39809Calligrapher h5, .stacks_in_39809Calligrapher h4, .stacks_in_39809Calligrapher h3, .stacks_in_39809Calligrapher h2, .stacks_in_39809Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39809Calligrapher, .stacks_in_39809Calligrapher h1, .stacks_in_39809Calligrapher h2, .stacks_in_39809Calligrapher h3, .stacks_in_39809Calligrapher h4, .stacks_in_39809Calligrapher h5, .stacks_in_39809Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_39809Calligrapher, .stacks_in_39809Calligrapher h1, .stacks_in_39809Calligrapher h2, .stacks_in_39809Calligrapher h3, .stacks_in_39809Calligrapher h4, .stacks_in_39809Calligrapher h5, .stacks_in_39809Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39809targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39809Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39809Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39809Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39809Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39809 {
	padding: 0px 20px 0px 20px;
}
/* Start dooHeader X stack CSS code */.stacks_in_39810x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_39810x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_39810x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_39811 {
	display:inline-block; width:100%; line-height: 0.750000em;
	font-weight: lighter;
}
#stacks_in_40208{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_40208 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_40208{visibility:hidden}#stacks_in_40208 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_40208 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_40208 .cycler_nav{cursor:pointer;z-index:101;display:block;width:20px;height:20px;position:absolute;background:url(../schule_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:30%;}#stacks_in_40208 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_40208 .cycler_nav.prev:hover{background-position:0px -20px}#stacks_in_40208 .cycler_nav.prev:active{background-position:0px -40px}#stacks_in_40208 .cycler_nav.next{right:0px;background-position:0px -60px}#stacks_in_40208 .cycler_nav.next:hover{background-position:0px -80px}#stacks_in_40208 .cycler_nav.next:active{background-position:0px -100px}
#stacks_in_40209{}#stacks_in_40209 > .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_40209 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40209 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40209 > .jack.width-static{width:500px}#stacks_in_40209 > .jack.width-flexible{width:100%}#stacks_in_40209 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40209 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40209 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40209 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40209 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40209 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40209 > .jack::after{border-radius:15px}#stacks_in_40209 > .jack.border-detailed-radius,#stacks_in_40209 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40209 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40209 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40209 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40209 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40209 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40209 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40209 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40209 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40209 > .jack.bg-image:not(.glass){}#stacks_in_40209 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40209 > .jack.bg-image.glass.after,#stacks_in_40209 > .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_40209 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40209 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40209 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40209 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40209 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40209 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40209 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40209 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40209 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40209 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40209 > .jack.bg-image.glass.after,#stacks_in_40209 > .glass.jack.bg-image::after{}#stacks_in_40209 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40209 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40209 > .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_40209 > .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_40209 > .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_40209 > .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_40209 > .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_40209 > .jack.peek-shadow::before,#stacks_in_40209 > .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_40209 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40209 > .jack{overflow:hidden;}#stacks_in_40209 > .jack.height-static{height:100px}#stacks_in_40209 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40211 .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_40211 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40211 .fluid-image.unlimited img{width:100% !important}#stacks_in_40211 .fluid-image.define_max img{width:100% !important;max-width:400px !important}#stacks_in_40211 .fluid-image.align-left img{float:left}#stacks_in_40211 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40214Calligrapher{			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_40214Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40214Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40214Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40214Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40214Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40214Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40214Calligrapher h6, .stacks_in_40214Calligrapher h5, .stacks_in_40214Calligrapher h4, .stacks_in_40214Calligrapher h3, .stacks_in_40214Calligrapher h2, .stacks_in_40214Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40214Calligrapher, .stacks_in_40214Calligrapher h1, .stacks_in_40214Calligrapher h2, .stacks_in_40214Calligrapher h3, .stacks_in_40214Calligrapher h4, .stacks_in_40214Calligrapher h5, .stacks_in_40214Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40214targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40214Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40214Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40214Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40214Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40214 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40215 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40218 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40220 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40222Calligrapher{			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_40222Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40222Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40222Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40222Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40222Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40222Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40222Calligrapher h6, .stacks_in_40222Calligrapher h5, .stacks_in_40222Calligrapher h4, .stacks_in_40222Calligrapher h3, .stacks_in_40222Calligrapher h2, .stacks_in_40222Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40222Calligrapher, .stacks_in_40222Calligrapher h1, .stacks_in_40222Calligrapher h2, .stacks_in_40222Calligrapher h3, .stacks_in_40222Calligrapher h4, .stacks_in_40222Calligrapher h5, .stacks_in_40222Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40222targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40222Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40222Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40222Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40222Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40222 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40225 {
	line-height: 2em;
}
#stacks_in_40226{}#stacks_in_40226 > .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_40226 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40226 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40226 > .jack.width-static{width:500px}#stacks_in_40226 > .jack.width-flexible{width:100%}#stacks_in_40226 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40226 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40226 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40226 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40226 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40226 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40226 > .jack::after{border-radius:15px}#stacks_in_40226 > .jack.border-detailed-radius,#stacks_in_40226 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40226 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40226 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40226 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40226 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40226 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40226 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40226 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40226 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40226 > .jack.bg-image:not(.glass){}#stacks_in_40226 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40226 > .jack.bg-image.glass.after,#stacks_in_40226 > .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_40226 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40226 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40226 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40226 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40226 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40226 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40226 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40226 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40226 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40226 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40226 > .jack.bg-image.glass.after,#stacks_in_40226 > .glass.jack.bg-image::after{}#stacks_in_40226 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40226 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40226 > .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_40226 > .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_40226 > .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_40226 > .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_40226 > .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_40226 > .jack.peek-shadow::before,#stacks_in_40226 > .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_40226 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40226 > .jack{overflow:hidden;}#stacks_in_40226 > .jack.height-static{height:100px}#stacks_in_40226 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40227 .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_40227 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40227 .fluid-image.unlimited img{width:100% !important}#stacks_in_40227 .fluid-image.define_max img{width:100% !important;max-width:400px !important}#stacks_in_40227 .fluid-image.align-left img{float:left}#stacks_in_40227 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40230Calligrapher{			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_40230Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40230Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40230Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40230Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40230Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40230Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40230Calligrapher h6, .stacks_in_40230Calligrapher h5, .stacks_in_40230Calligrapher h4, .stacks_in_40230Calligrapher h3, .stacks_in_40230Calligrapher h2, .stacks_in_40230Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40230Calligrapher, .stacks_in_40230Calligrapher h1, .stacks_in_40230Calligrapher h2, .stacks_in_40230Calligrapher h3, .stacks_in_40230Calligrapher h4, .stacks_in_40230Calligrapher h5, .stacks_in_40230Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40230targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40230Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40230Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40230Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40230Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40230 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40231 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40234 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40238Calligrapher{			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_40238Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40238Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40238Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40238Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40238Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40238Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40238Calligrapher h6, .stacks_in_40238Calligrapher h5, .stacks_in_40238Calligrapher h4, .stacks_in_40238Calligrapher h3, .stacks_in_40238Calligrapher h2, .stacks_in_40238Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40238Calligrapher, .stacks_in_40238Calligrapher h1, .stacks_in_40238Calligrapher h2, .stacks_in_40238Calligrapher h3, .stacks_in_40238Calligrapher h4, .stacks_in_40238Calligrapher h5, .stacks_in_40238Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40238targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40238Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40238Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40238Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40238Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40238 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40241 {
	line-height: 2em;
}
#stacks_in_40242{}#stacks_in_40242 > .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_40242 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40242 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40242 > .jack.width-static{width:500px}#stacks_in_40242 > .jack.width-flexible{width:100%}#stacks_in_40242 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40242 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40242 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40242 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40242 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40242 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40242 > .jack::after{border-radius:15px}#stacks_in_40242 > .jack.border-detailed-radius,#stacks_in_40242 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40242 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40242 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40242 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40242 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40242 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40242 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40242 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40242 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40242 > .jack.bg-image:not(.glass){}#stacks_in_40242 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40242 > .jack.bg-image.glass.after,#stacks_in_40242 > .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_40242 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40242 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40242 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40242 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40242 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40242 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40242 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40242 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40242 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40242 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40242 > .jack.bg-image.glass.after,#stacks_in_40242 > .glass.jack.bg-image::after{}#stacks_in_40242 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40242 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40242 > .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_40242 > .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_40242 > .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_40242 > .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_40242 > .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_40242 > .jack.peek-shadow::before,#stacks_in_40242 > .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_40242 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40242 > .jack{overflow:hidden;}#stacks_in_40242 > .jack.height-static{height:100px}#stacks_in_40242 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40243 .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_40243 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40243 .fluid-image.unlimited img{width:100% !important}#stacks_in_40243 .fluid-image.define_max img{width:100% !important;max-width:600px !important}#stacks_in_40243 .fluid-image.align-left img{float:left}#stacks_in_40243 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40246Calligrapher{			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_40246Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40246Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40246Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40246Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40246Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40246Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40246Calligrapher h6, .stacks_in_40246Calligrapher h5, .stacks_in_40246Calligrapher h4, .stacks_in_40246Calligrapher h3, .stacks_in_40246Calligrapher h2, .stacks_in_40246Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40246Calligrapher, .stacks_in_40246Calligrapher h1, .stacks_in_40246Calligrapher h2, .stacks_in_40246Calligrapher h3, .stacks_in_40246Calligrapher h4, .stacks_in_40246Calligrapher h5, .stacks_in_40246Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40246targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40246Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40246Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40246Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40246Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40246 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40247 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40250 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40254Calligrapher{			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_40254Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40254Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40254Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40254Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40254Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40254Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40254Calligrapher h6, .stacks_in_40254Calligrapher h5, .stacks_in_40254Calligrapher h4, .stacks_in_40254Calligrapher h3, .stacks_in_40254Calligrapher h2, .stacks_in_40254Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40254Calligrapher, .stacks_in_40254Calligrapher h1, .stacks_in_40254Calligrapher h2, .stacks_in_40254Calligrapher h3, .stacks_in_40254Calligrapher h4, .stacks_in_40254Calligrapher h5, .stacks_in_40254Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40254targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40254Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40254Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40254Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40254Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40254 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40257 {
	line-height: 2em;
}
#stacks_in_40258{}#stacks_in_40258 > .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_40258 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40258 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40258 > .jack.width-static{width:500px}#stacks_in_40258 > .jack.width-flexible{width:100%}#stacks_in_40258 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40258 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40258 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40258 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40258 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40258 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40258 > .jack::after{border-radius:15px}#stacks_in_40258 > .jack.border-detailed-radius,#stacks_in_40258 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40258 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40258 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40258 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40258 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40258 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40258 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40258 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40258 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40258 > .jack.bg-image:not(.glass){}#stacks_in_40258 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40258 > .jack.bg-image.glass.after,#stacks_in_40258 > .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_40258 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40258 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40258 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40258 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40258 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40258 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40258 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40258 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40258 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40258 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40258 > .jack.bg-image.glass.after,#stacks_in_40258 > .glass.jack.bg-image::after{}#stacks_in_40258 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40258 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40258 > .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_40258 > .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_40258 > .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_40258 > .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_40258 > .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_40258 > .jack.peek-shadow::before,#stacks_in_40258 > .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_40258 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40258 > .jack{overflow:hidden;}#stacks_in_40258 > .jack.height-static{height:500px}#stacks_in_40258 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40259Calligrapher{			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_40259Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40259Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40259Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40259Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40259Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40259Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40259Calligrapher h6, .stacks_in_40259Calligrapher h5, .stacks_in_40259Calligrapher h4, .stacks_in_40259Calligrapher h3, .stacks_in_40259Calligrapher h2, .stacks_in_40259Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40259Calligrapher, .stacks_in_40259Calligrapher h1, .stacks_in_40259Calligrapher h2, .stacks_in_40259Calligrapher h3, .stacks_in_40259Calligrapher h4, .stacks_in_40259Calligrapher h5, .stacks_in_40259Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40259targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40259Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40259Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40259Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40259Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40259 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40260 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40263 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40267Calligrapher{			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_40267Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40267Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40267Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40267Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40267Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40267Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40267Calligrapher h6, .stacks_in_40267Calligrapher h5, .stacks_in_40267Calligrapher h4, .stacks_in_40267Calligrapher h3, .stacks_in_40267Calligrapher h2, .stacks_in_40267Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40267Calligrapher, .stacks_in_40267Calligrapher h1, .stacks_in_40267Calligrapher h2, .stacks_in_40267Calligrapher h3, .stacks_in_40267Calligrapher h4, .stacks_in_40267Calligrapher h5, .stacks_in_40267Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40267targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40267Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40267Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40267Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40267Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40267 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40270 {
	line-height: 2em;
}
#stacks_in_40272{}#stacks_in_40272 > .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_40272 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40272 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40272 > .jack.width-static{width:500px}#stacks_in_40272 > .jack.width-flexible{width:100%}#stacks_in_40272 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40272 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40272 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40272 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40272 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40272 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40272 > .jack::after{border-radius:15px}#stacks_in_40272 > .jack.border-detailed-radius,#stacks_in_40272 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40272 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40272 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40272 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40272 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40272 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40272 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40272 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40272 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40272 > .jack.bg-image:not(.glass){}#stacks_in_40272 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40272 > .jack.bg-image.glass.after,#stacks_in_40272 > .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_40272 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40272 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40272 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40272 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40272 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40272 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40272 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40272 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40272 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40272 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40272 > .jack.bg-image.glass.after,#stacks_in_40272 > .glass.jack.bg-image::after{}#stacks_in_40272 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40272 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40272 > .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_40272 > .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_40272 > .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_40272 > .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_40272 > .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_40272 > .jack.peek-shadow::before,#stacks_in_40272 > .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_40272 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40272 > .jack{overflow:hidden;}#stacks_in_40272 > .jack.height-static{height:100px}#stacks_in_40272 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40273 .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_40273 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40273 .fluid-image.unlimited img{width:100% !important}#stacks_in_40273 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40273 .fluid-image.align-left img{float:left}#stacks_in_40273 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40276Calligrapher{			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_40276Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40276Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40276Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40276Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40276Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40276Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40276Calligrapher h6, .stacks_in_40276Calligrapher h5, .stacks_in_40276Calligrapher h4, .stacks_in_40276Calligrapher h3, .stacks_in_40276Calligrapher h2, .stacks_in_40276Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40276Calligrapher, .stacks_in_40276Calligrapher h1, .stacks_in_40276Calligrapher h2, .stacks_in_40276Calligrapher h3, .stacks_in_40276Calligrapher h4, .stacks_in_40276Calligrapher h5, .stacks_in_40276Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40276targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40276Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40276Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40276Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40276Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40276 {
	margin: 30px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_40277 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40280 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40284Calligrapher{			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_40284Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40284Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40284Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40284Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40284Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40284Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40284Calligrapher h6, .stacks_in_40284Calligrapher h5, .stacks_in_40284Calligrapher h4, .stacks_in_40284Calligrapher h3, .stacks_in_40284Calligrapher h2, .stacks_in_40284Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40284Calligrapher, .stacks_in_40284Calligrapher h1, .stacks_in_40284Calligrapher h2, .stacks_in_40284Calligrapher h3, .stacks_in_40284Calligrapher h4, .stacks_in_40284Calligrapher h5, .stacks_in_40284Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40284targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40284Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40284Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40284Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40284Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40284 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40287 {
	line-height: 2em;
}
#stacks_in_40288{}#stacks_in_40288 > .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_40288 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40288 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40288 > .jack.width-static{width:500px}#stacks_in_40288 > .jack.width-flexible{width:100%}#stacks_in_40288 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40288 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40288 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40288 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40288 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40288 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40288 > .jack::after{border-radius:15px}#stacks_in_40288 > .jack.border-detailed-radius,#stacks_in_40288 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40288 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40288 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40288 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40288 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40288 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40288 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40288 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40288 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40288 > .jack.bg-image:not(.glass){}#stacks_in_40288 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40288 > .jack.bg-image.glass.after,#stacks_in_40288 > .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_40288 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40288 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40288 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40288 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40288 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40288 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40288 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40288 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40288 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40288 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40288 > .jack.bg-image.glass.after,#stacks_in_40288 > .glass.jack.bg-image::after{}#stacks_in_40288 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40288 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40288 > .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_40288 > .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_40288 > .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_40288 > .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_40288 > .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_40288 > .jack.peek-shadow::before,#stacks_in_40288 > .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_40288 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40288 > .jack{overflow:hidden;}#stacks_in_40288 > .jack.height-static{height:100px}#stacks_in_40288 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40289 .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_40289 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40289 .fluid-image.unlimited img{width:100% !important}#stacks_in_40289 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40289 .fluid-image.align-left img{float:left}#stacks_in_40289 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40292Calligrapher{			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_40292Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40292Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40292Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40292Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40292Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40292Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40292Calligrapher h6, .stacks_in_40292Calligrapher h5, .stacks_in_40292Calligrapher h4, .stacks_in_40292Calligrapher h3, .stacks_in_40292Calligrapher h2, .stacks_in_40292Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40292Calligrapher, .stacks_in_40292Calligrapher h1, .stacks_in_40292Calligrapher h2, .stacks_in_40292Calligrapher h3, .stacks_in_40292Calligrapher h4, .stacks_in_40292Calligrapher h5, .stacks_in_40292Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40292targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40292Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40292Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40292Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40292Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40292 {
	margin: 30px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_40293 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40296 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40298 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40300 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40304Calligrapher{			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_40304Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40304Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40304Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40304Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40304Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40304Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40304Calligrapher h6, .stacks_in_40304Calligrapher h5, .stacks_in_40304Calligrapher h4, .stacks_in_40304Calligrapher h3, .stacks_in_40304Calligrapher h2, .stacks_in_40304Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40304Calligrapher, .stacks_in_40304Calligrapher h1, .stacks_in_40304Calligrapher h2, .stacks_in_40304Calligrapher h3, .stacks_in_40304Calligrapher h4, .stacks_in_40304Calligrapher h5, .stacks_in_40304Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40304targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40304Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40304Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40304Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40304Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40304 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40307 {
	line-height: 2em;
}
#stacks_in_40308{}#stacks_in_40308 > .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_40308 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40308 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40308 > .jack.width-static{width:500px}#stacks_in_40308 > .jack.width-flexible{width:100%}#stacks_in_40308 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40308 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40308 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40308 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40308 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40308 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40308 > .jack::after{border-radius:15px}#stacks_in_40308 > .jack.border-detailed-radius,#stacks_in_40308 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40308 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40308 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40308 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40308 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40308 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40308 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40308 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40308 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40308 > .jack.bg-image:not(.glass){}#stacks_in_40308 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40308 > .jack.bg-image.glass.after,#stacks_in_40308 > .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_40308 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40308 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40308 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40308 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40308 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40308 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40308 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40308 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40308 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40308 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40308 > .jack.bg-image.glass.after,#stacks_in_40308 > .glass.jack.bg-image::after{}#stacks_in_40308 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40308 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40308 > .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_40308 > .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_40308 > .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_40308 > .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_40308 > .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_40308 > .jack.peek-shadow::before,#stacks_in_40308 > .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_40308 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40308 > .jack{overflow:hidden;}#stacks_in_40308 > .jack.height-static{height:100px}#stacks_in_40308 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40309 .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_40309 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40309 .fluid-image.unlimited img{width:100% !important}#stacks_in_40309 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40309 .fluid-image.align-left img{float:left}#stacks_in_40309 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40312Calligrapher{			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_40312Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40312Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40312Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40312Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40312Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40312Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40312Calligrapher h6, .stacks_in_40312Calligrapher h5, .stacks_in_40312Calligrapher h4, .stacks_in_40312Calligrapher h3, .stacks_in_40312Calligrapher h2, .stacks_in_40312Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40312Calligrapher, .stacks_in_40312Calligrapher h1, .stacks_in_40312Calligrapher h2, .stacks_in_40312Calligrapher h3, .stacks_in_40312Calligrapher h4, .stacks_in_40312Calligrapher h5, .stacks_in_40312Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40312targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40312Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40312Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40312Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40312Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40312 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40313 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40316 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40320Calligrapher{			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_40320Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40320Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40320Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40320Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40320Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40320Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40320Calligrapher h6, .stacks_in_40320Calligrapher h5, .stacks_in_40320Calligrapher h4, .stacks_in_40320Calligrapher h3, .stacks_in_40320Calligrapher h2, .stacks_in_40320Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40320Calligrapher, .stacks_in_40320Calligrapher h1, .stacks_in_40320Calligrapher h2, .stacks_in_40320Calligrapher h3, .stacks_in_40320Calligrapher h4, .stacks_in_40320Calligrapher h5, .stacks_in_40320Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40320targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40320Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40320Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40320Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40320Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40320 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40323 {
	line-height: 2em;
}
#stacks_in_40324{}#stacks_in_40324 > .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_40324 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40324 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40324 > .jack.width-static{width:500px}#stacks_in_40324 > .jack.width-flexible{width:100%}#stacks_in_40324 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40324 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40324 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40324 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40324 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40324 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40324 > .jack::after{border-radius:15px}#stacks_in_40324 > .jack.border-detailed-radius,#stacks_in_40324 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40324 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40324 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40324 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40324 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40324 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40324 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40324 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40324 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40324 > .jack.bg-image:not(.glass){}#stacks_in_40324 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40324 > .jack.bg-image.glass.after,#stacks_in_40324 > .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_40324 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40324 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40324 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40324 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40324 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40324 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40324 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40324 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40324 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40324 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40324 > .jack.bg-image.glass.after,#stacks_in_40324 > .glass.jack.bg-image::after{}#stacks_in_40324 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40324 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40324 > .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_40324 > .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_40324 > .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_40324 > .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_40324 > .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_40324 > .jack.peek-shadow::before,#stacks_in_40324 > .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_40324 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40324 > .jack{overflow:hidden;}#stacks_in_40324 > .jack.height-static{height:100px}#stacks_in_40324 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40325 .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_40325 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40325 .fluid-image.unlimited img{width:100% !important}#stacks_in_40325 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40325 .fluid-image.align-left img{float:left}#stacks_in_40325 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40328Calligrapher{			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_40328Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40328Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40328Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40328Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40328Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40328Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40328Calligrapher h6, .stacks_in_40328Calligrapher h5, .stacks_in_40328Calligrapher h4, .stacks_in_40328Calligrapher h3, .stacks_in_40328Calligrapher h2, .stacks_in_40328Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40328Calligrapher, .stacks_in_40328Calligrapher h1, .stacks_in_40328Calligrapher h2, .stacks_in_40328Calligrapher h3, .stacks_in_40328Calligrapher h4, .stacks_in_40328Calligrapher h5, .stacks_in_40328Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40328targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40328Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40328Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40328Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40328Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40328 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40329 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40332 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40336Calligrapher{			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_40336Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40336Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40336Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40336Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40336Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40336Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40336Calligrapher h6, .stacks_in_40336Calligrapher h5, .stacks_in_40336Calligrapher h4, .stacks_in_40336Calligrapher h3, .stacks_in_40336Calligrapher h2, .stacks_in_40336Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40336Calligrapher, .stacks_in_40336Calligrapher h1, .stacks_in_40336Calligrapher h2, .stacks_in_40336Calligrapher h3, .stacks_in_40336Calligrapher h4, .stacks_in_40336Calligrapher h5, .stacks_in_40336Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40336targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40336Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40336Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40336Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40336Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40336 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40339 {
	line-height: 2em;
}
#stacks_in_40340{}#stacks_in_40340 > .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_40340 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40340 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40340 > .jack.width-static{width:500px}#stacks_in_40340 > .jack.width-flexible{width:100%}#stacks_in_40340 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40340 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40340 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40340 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40340 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40340 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40340 > .jack::after{border-radius:15px}#stacks_in_40340 > .jack.border-detailed-radius,#stacks_in_40340 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40340 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40340 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40340 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40340 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40340 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40340 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40340 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40340 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40340 > .jack.bg-image:not(.glass){}#stacks_in_40340 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40340 > .jack.bg-image.glass.after,#stacks_in_40340 > .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_40340 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40340 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40340 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40340 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40340 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40340 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40340 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40340 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40340 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40340 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40340 > .jack.bg-image.glass.after,#stacks_in_40340 > .glass.jack.bg-image::after{}#stacks_in_40340 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40340 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40340 > .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_40340 > .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_40340 > .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_40340 > .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_40340 > .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_40340 > .jack.peek-shadow::before,#stacks_in_40340 > .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_40340 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40340 > .jack{overflow:hidden;}#stacks_in_40340 > .jack.height-static{height:100px}#stacks_in_40340 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40341 .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_40341 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40341 .fluid-image.unlimited img{width:100% !important}#stacks_in_40341 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40341 .fluid-image.align-left img{float:left}#stacks_in_40341 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40344Calligrapher{			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_40344Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40344Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40344Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40344Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40344Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40344Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40344Calligrapher h6, .stacks_in_40344Calligrapher h5, .stacks_in_40344Calligrapher h4, .stacks_in_40344Calligrapher h3, .stacks_in_40344Calligrapher h2, .stacks_in_40344Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40344Calligrapher, .stacks_in_40344Calligrapher h1, .stacks_in_40344Calligrapher h2, .stacks_in_40344Calligrapher h3, .stacks_in_40344Calligrapher h4, .stacks_in_40344Calligrapher h5, .stacks_in_40344Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40344targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40344Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40344Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40344Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40344Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40344 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40345 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40348 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40352Calligrapher{			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_40352Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40352Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40352Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40352Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40352Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40352Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40352Calligrapher h6, .stacks_in_40352Calligrapher h5, .stacks_in_40352Calligrapher h4, .stacks_in_40352Calligrapher h3, .stacks_in_40352Calligrapher h2, .stacks_in_40352Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40352Calligrapher, .stacks_in_40352Calligrapher h1, .stacks_in_40352Calligrapher h2, .stacks_in_40352Calligrapher h3, .stacks_in_40352Calligrapher h4, .stacks_in_40352Calligrapher h5, .stacks_in_40352Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40352targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40352Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40352Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40352Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40352Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40352 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40355 {
	line-height: 2em;
}
#stacks_in_40356{}#stacks_in_40356 > .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_40356 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40356 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40356 > .jack.width-static{width:500px}#stacks_in_40356 > .jack.width-flexible{width:100%}#stacks_in_40356 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40356 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40356 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40356 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40356 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40356 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40356 > .jack::after{border-radius:15px}#stacks_in_40356 > .jack.border-detailed-radius,#stacks_in_40356 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40356 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40356 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40356 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40356 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40356 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40356 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40356 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40356 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40356 > .jack.bg-image:not(.glass){}#stacks_in_40356 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40356 > .jack.bg-image.glass.after,#stacks_in_40356 > .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_40356 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40356 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40356 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40356 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40356 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40356 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40356 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40356 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40356 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40356 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40356 > .jack.bg-image.glass.after,#stacks_in_40356 > .glass.jack.bg-image::after{}#stacks_in_40356 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40356 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40356 > .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_40356 > .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_40356 > .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_40356 > .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_40356 > .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_40356 > .jack.peek-shadow::before,#stacks_in_40356 > .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_40356 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40356 > .jack{overflow:hidden;}#stacks_in_40356 > .jack.height-static{height:100px}#stacks_in_40356 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40357 .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_40357 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40357 .fluid-image.unlimited img{width:100% !important}#stacks_in_40357 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40357 .fluid-image.align-left img{float:left}#stacks_in_40357 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40360Calligrapher{			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_40360Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40360Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40360Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40360Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40360Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40360Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40360Calligrapher h6, .stacks_in_40360Calligrapher h5, .stacks_in_40360Calligrapher h4, .stacks_in_40360Calligrapher h3, .stacks_in_40360Calligrapher h2, .stacks_in_40360Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40360Calligrapher, .stacks_in_40360Calligrapher h1, .stacks_in_40360Calligrapher h2, .stacks_in_40360Calligrapher h3, .stacks_in_40360Calligrapher h4, .stacks_in_40360Calligrapher h5, .stacks_in_40360Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40360targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40360Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40360Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40360Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40360Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40360 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40361 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40364 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40368Calligrapher{			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_40368Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40368Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40368Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40368Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40368Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40368Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40368Calligrapher h6, .stacks_in_40368Calligrapher h5, .stacks_in_40368Calligrapher h4, .stacks_in_40368Calligrapher h3, .stacks_in_40368Calligrapher h2, .stacks_in_40368Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40368Calligrapher, .stacks_in_40368Calligrapher h1, .stacks_in_40368Calligrapher h2, .stacks_in_40368Calligrapher h3, .stacks_in_40368Calligrapher h4, .stacks_in_40368Calligrapher h5, .stacks_in_40368Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40368targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40368Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40368Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40368Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40368Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40368 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40369 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40371 {
	line-height: 2em;
}
#stacks_in_40372{}#stacks_in_40372 > .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_40372 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40372 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40372 > .jack.width-static{width:500px}#stacks_in_40372 > .jack.width-flexible{width:100%}#stacks_in_40372 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40372 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40372 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40372 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40372 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40372 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40372 > .jack::after{border-radius:15px}#stacks_in_40372 > .jack.border-detailed-radius,#stacks_in_40372 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40372 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40372 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40372 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40372 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40372 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40372 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40372 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40372 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40372 > .jack.bg-image:not(.glass){}#stacks_in_40372 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40372 > .jack.bg-image.glass.after,#stacks_in_40372 > .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_40372 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40372 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40372 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40372 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40372 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40372 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40372 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40372 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40372 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40372 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40372 > .jack.bg-image.glass.after,#stacks_in_40372 > .glass.jack.bg-image::after{}#stacks_in_40372 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40372 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40372 > .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_40372 > .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_40372 > .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_40372 > .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_40372 > .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_40372 > .jack.peek-shadow::before,#stacks_in_40372 > .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_40372 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40372 > .jack{overflow:hidden;}#stacks_in_40372 > .jack.height-static{height:100px}#stacks_in_40372 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40373 .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_40373 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40373 .fluid-image.unlimited img{width:100% !important}#stacks_in_40373 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40373 .fluid-image.align-left img{float:left}#stacks_in_40373 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40376Calligrapher{			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_40376Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40376Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40376Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40376Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40376Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40376Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40376Calligrapher h6, .stacks_in_40376Calligrapher h5, .stacks_in_40376Calligrapher h4, .stacks_in_40376Calligrapher h3, .stacks_in_40376Calligrapher h2, .stacks_in_40376Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40376Calligrapher, .stacks_in_40376Calligrapher h1, .stacks_in_40376Calligrapher h2, .stacks_in_40376Calligrapher h3, .stacks_in_40376Calligrapher h4, .stacks_in_40376Calligrapher h5, .stacks_in_40376Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40376targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40376Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40376Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40376Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40376Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40376 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40377 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40380 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40384Calligrapher{			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_40384Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40384Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40384Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40384Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40384Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40384Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40384Calligrapher h6, .stacks_in_40384Calligrapher h5, .stacks_in_40384Calligrapher h4, .stacks_in_40384Calligrapher h3, .stacks_in_40384Calligrapher h2, .stacks_in_40384Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40384Calligrapher, .stacks_in_40384Calligrapher h1, .stacks_in_40384Calligrapher h2, .stacks_in_40384Calligrapher h3, .stacks_in_40384Calligrapher h4, .stacks_in_40384Calligrapher h5, .stacks_in_40384Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40384targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40384Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40384Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40384Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40384Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40384 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40385 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40387 {
	line-height: 2em;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_40388 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_40388 {
		display: none !important;
	}
}
#stacks_in_40389{}#stacks_in_40389 > .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_40389 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40389 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40389 > .jack.width-static{width:500px}#stacks_in_40389 > .jack.width-flexible{width:100%}#stacks_in_40389 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40389 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40389 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40389 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40389 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40389 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40389 > .jack::after{border-radius:15px}#stacks_in_40389 > .jack.border-detailed-radius,#stacks_in_40389 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40389 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40389 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40389 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40389 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40389 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40389 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40389 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40389 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40389 > .jack.bg-image:not(.glass){}#stacks_in_40389 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40389 > .jack.bg-image.glass.after,#stacks_in_40389 > .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_40389 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40389 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40389 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40389 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40389 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40389 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40389 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40389 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40389 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40389 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40389 > .jack.bg-image.glass.after,#stacks_in_40389 > .glass.jack.bg-image::after{}#stacks_in_40389 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40389 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40389 > .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_40389 > .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_40389 > .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_40389 > .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_40389 > .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_40389 > .jack.peek-shadow::before,#stacks_in_40389 > .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_40389 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40389 > .jack{overflow:hidden;}#stacks_in_40389 > .jack.height-static{height:100px}#stacks_in_40389 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40390 .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_40390 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40390 .fluid-image.unlimited img{width:100% !important}#stacks_in_40390 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40390 .fluid-image.align-left img{float:left}#stacks_in_40390 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40393Calligrapher{			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_40393Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40393Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40393Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40393Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40393Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40393Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40393Calligrapher h6, .stacks_in_40393Calligrapher h5, .stacks_in_40393Calligrapher h4, .stacks_in_40393Calligrapher h3, .stacks_in_40393Calligrapher h2, .stacks_in_40393Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40393Calligrapher, .stacks_in_40393Calligrapher h1, .stacks_in_40393Calligrapher h2, .stacks_in_40393Calligrapher h3, .stacks_in_40393Calligrapher h4, .stacks_in_40393Calligrapher h5, .stacks_in_40393Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40393targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40393Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40393Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40393Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40393Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40393 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40394 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40397 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40401Calligrapher{			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_40401Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40401Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40401Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40401Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40401Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40401Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40401Calligrapher h6, .stacks_in_40401Calligrapher h5, .stacks_in_40401Calligrapher h4, .stacks_in_40401Calligrapher h3, .stacks_in_40401Calligrapher h2, .stacks_in_40401Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40401Calligrapher, .stacks_in_40401Calligrapher h1, .stacks_in_40401Calligrapher h2, .stacks_in_40401Calligrapher h3, .stacks_in_40401Calligrapher h4, .stacks_in_40401Calligrapher h5, .stacks_in_40401Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40401targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40401Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40401Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40401Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40401Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40401 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40402 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40404 {
	line-height: 2em;
}
#stacks_in_40405{}#stacks_in_40405 > .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_40405 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40405 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40405 > .jack.width-static{width:500px}#stacks_in_40405 > .jack.width-flexible{width:100%}#stacks_in_40405 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40405 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40405 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40405 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40405 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40405 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40405 > .jack::after{border-radius:15px}#stacks_in_40405 > .jack.border-detailed-radius,#stacks_in_40405 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40405 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40405 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40405 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40405 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40405 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40405 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40405 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40405 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40405 > .jack.bg-image:not(.glass){}#stacks_in_40405 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40405 > .jack.bg-image.glass.after,#stacks_in_40405 > .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_40405 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40405 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40405 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40405 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40405 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40405 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40405 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40405 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40405 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40405 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40405 > .jack.bg-image.glass.after,#stacks_in_40405 > .glass.jack.bg-image::after{}#stacks_in_40405 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40405 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40405 > .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_40405 > .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_40405 > .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_40405 > .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_40405 > .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_40405 > .jack.peek-shadow::before,#stacks_in_40405 > .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_40405 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40405 > .jack{overflow:hidden;}#stacks_in_40405 > .jack.height-static{height:100px}#stacks_in_40405 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40406 .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_40406 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40406 .fluid-image.unlimited img{width:100% !important}#stacks_in_40406 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40406 .fluid-image.align-left img{float:left}#stacks_in_40406 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40409Calligrapher{			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_40409Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40409Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40409Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40409Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40409Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40409Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40409Calligrapher h6, .stacks_in_40409Calligrapher h5, .stacks_in_40409Calligrapher h4, .stacks_in_40409Calligrapher h3, .stacks_in_40409Calligrapher h2, .stacks_in_40409Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40409Calligrapher, .stacks_in_40409Calligrapher h1, .stacks_in_40409Calligrapher h2, .stacks_in_40409Calligrapher h3, .stacks_in_40409Calligrapher h4, .stacks_in_40409Calligrapher h5, .stacks_in_40409Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40409targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40409Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40409Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40409Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40409Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40409 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40410 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40413 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40415Calligrapher{			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_40415Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40415Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40415Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40415Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40415Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40415Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40415Calligrapher h6, .stacks_in_40415Calligrapher h5, .stacks_in_40415Calligrapher h4, .stacks_in_40415Calligrapher h3, .stacks_in_40415Calligrapher h2, .stacks_in_40415Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40415Calligrapher, .stacks_in_40415Calligrapher h1, .stacks_in_40415Calligrapher h2, .stacks_in_40415Calligrapher h3, .stacks_in_40415Calligrapher h4, .stacks_in_40415Calligrapher h5, .stacks_in_40415Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40415targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40415Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40415Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40415Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40415Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40415 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40416 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40418 {
	line-height: 2em;
}
#stacks_in_40419{}#stacks_in_40419 > .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_40419 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40419 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40419 > .jack.width-static{width:500px}#stacks_in_40419 > .jack.width-flexible{width:100%}#stacks_in_40419 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40419 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40419 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40419 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40419 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40419 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40419 > .jack::after{border-radius:15px}#stacks_in_40419 > .jack.border-detailed-radius,#stacks_in_40419 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40419 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40419 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40419 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40419 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40419 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40419 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40419 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40419 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40419 > .jack.bg-image:not(.glass){}#stacks_in_40419 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40419 > .jack.bg-image.glass.after,#stacks_in_40419 > .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_40419 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40419 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40419 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40419 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40419 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40419 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40419 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40419 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40419 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40419 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40419 > .jack.bg-image.glass.after,#stacks_in_40419 > .glass.jack.bg-image::after{}#stacks_in_40419 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40419 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40419 > .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_40419 > .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_40419 > .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_40419 > .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_40419 > .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_40419 > .jack.peek-shadow::before,#stacks_in_40419 > .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_40419 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40419 > .jack{overflow:hidden;}#stacks_in_40419 > .jack.height-static{height:100px}#stacks_in_40419 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40420 .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_40420 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40420 .fluid-image.unlimited img{width:100% !important}#stacks_in_40420 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40420 .fluid-image.align-left img{float:left}#stacks_in_40420 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40423Calligrapher{			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_40423Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40423Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40423Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40423Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40423Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40423Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40423Calligrapher h6, .stacks_in_40423Calligrapher h5, .stacks_in_40423Calligrapher h4, .stacks_in_40423Calligrapher h3, .stacks_in_40423Calligrapher h2, .stacks_in_40423Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40423Calligrapher, .stacks_in_40423Calligrapher h1, .stacks_in_40423Calligrapher h2, .stacks_in_40423Calligrapher h3, .stacks_in_40423Calligrapher h4, .stacks_in_40423Calligrapher h5, .stacks_in_40423Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40423targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40423Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40423Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40423Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40423Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40423 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40424 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40427 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40429 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40431Calligrapher{			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_40431Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40431Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40431Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40431Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40431Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40431Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40431Calligrapher h6, .stacks_in_40431Calligrapher h5, .stacks_in_40431Calligrapher h4, .stacks_in_40431Calligrapher h3, .stacks_in_40431Calligrapher h2, .stacks_in_40431Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40431Calligrapher, .stacks_in_40431Calligrapher h1, .stacks_in_40431Calligrapher h2, .stacks_in_40431Calligrapher h3, .stacks_in_40431Calligrapher h4, .stacks_in_40431Calligrapher h5, .stacks_in_40431Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40431targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40431Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40431Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40431Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40431Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40431 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40432 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40434 {
	line-height: 2em;
}
#stacks_in_40435{}#stacks_in_40435 > .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_40435 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40435 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40435 > .jack.width-static{width:500px}#stacks_in_40435 > .jack.width-flexible{width:100%}#stacks_in_40435 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40435 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40435 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40435 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40435 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40435 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40435 > .jack::after{border-radius:15px}#stacks_in_40435 > .jack.border-detailed-radius,#stacks_in_40435 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40435 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40435 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40435 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40435 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40435 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40435 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40435 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40435 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40435 > .jack.bg-image:not(.glass){}#stacks_in_40435 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40435 > .jack.bg-image.glass.after,#stacks_in_40435 > .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_40435 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40435 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40435 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40435 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40435 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40435 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40435 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40435 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40435 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40435 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40435 > .jack.bg-image.glass.after,#stacks_in_40435 > .glass.jack.bg-image::after{}#stacks_in_40435 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40435 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40435 > .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_40435 > .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_40435 > .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_40435 > .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_40435 > .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_40435 > .jack.peek-shadow::before,#stacks_in_40435 > .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_40435 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40435 > .jack{overflow:hidden;}#stacks_in_40435 > .jack.height-static{height:100px}#stacks_in_40435 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40436 .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_40436 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40436 .fluid-image.unlimited img{width:100% !important}#stacks_in_40436 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40436 .fluid-image.align-left img{float:left}#stacks_in_40436 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40439Calligrapher{			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_40439Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40439Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40439Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40439Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40439Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40439Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40439Calligrapher h6, .stacks_in_40439Calligrapher h5, .stacks_in_40439Calligrapher h4, .stacks_in_40439Calligrapher h3, .stacks_in_40439Calligrapher h2, .stacks_in_40439Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40439Calligrapher, .stacks_in_40439Calligrapher h1, .stacks_in_40439Calligrapher h2, .stacks_in_40439Calligrapher h3, .stacks_in_40439Calligrapher h4, .stacks_in_40439Calligrapher h5, .stacks_in_40439Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40439targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40439Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40439Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40439Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40439Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40439 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40440 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40443 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40445 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40447Calligrapher{			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_40447Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40447Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40447Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40447Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40447Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40447Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40447Calligrapher h6, .stacks_in_40447Calligrapher h5, .stacks_in_40447Calligrapher h4, .stacks_in_40447Calligrapher h3, .stacks_in_40447Calligrapher h2, .stacks_in_40447Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40447Calligrapher, .stacks_in_40447Calligrapher h1, .stacks_in_40447Calligrapher h2, .stacks_in_40447Calligrapher h3, .stacks_in_40447Calligrapher h4, .stacks_in_40447Calligrapher h5, .stacks_in_40447Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40447targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40447Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40447Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40447Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40447Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40447 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40448 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40450 {
	line-height: 2em;
}
#stacks_in_40451{}#stacks_in_40451 > .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_40451 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40451 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40451 > .jack.width-static{width:500px}#stacks_in_40451 > .jack.width-flexible{width:100%}#stacks_in_40451 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40451 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40451 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40451 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40451 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40451 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40451 > .jack::after{border-radius:15px}#stacks_in_40451 > .jack.border-detailed-radius,#stacks_in_40451 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40451 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40451 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40451 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40451 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40451 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40451 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40451 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40451 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40451 > .jack.bg-image:not(.glass){}#stacks_in_40451 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40451 > .jack.bg-image.glass.after,#stacks_in_40451 > .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_40451 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40451 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40451 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40451 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40451 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40451 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40451 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40451 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40451 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40451 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40451 > .jack.bg-image.glass.after,#stacks_in_40451 > .glass.jack.bg-image::after{}#stacks_in_40451 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40451 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40451 > .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_40451 > .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_40451 > .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_40451 > .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_40451 > .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_40451 > .jack.peek-shadow::before,#stacks_in_40451 > .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_40451 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40451 > .jack{overflow:hidden;}#stacks_in_40451 > .jack.height-static{height:100px}#stacks_in_40451 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40452 .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_40452 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40452 .fluid-image.unlimited img{width:100% !important}#stacks_in_40452 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40452 .fluid-image.align-left img{float:left}#stacks_in_40452 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40455Calligrapher{			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_40455Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40455Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40455Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40455Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40455Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40455Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40455Calligrapher h6, .stacks_in_40455Calligrapher h5, .stacks_in_40455Calligrapher h4, .stacks_in_40455Calligrapher h3, .stacks_in_40455Calligrapher h2, .stacks_in_40455Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40455Calligrapher, .stacks_in_40455Calligrapher h1, .stacks_in_40455Calligrapher h2, .stacks_in_40455Calligrapher h3, .stacks_in_40455Calligrapher h4, .stacks_in_40455Calligrapher h5, .stacks_in_40455Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40455targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40455Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40455Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40455Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40455Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40455 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40456 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40459 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40461 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40463Calligrapher{			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_40463Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40463Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40463Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40463Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40463Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40463Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40463Calligrapher h6, .stacks_in_40463Calligrapher h5, .stacks_in_40463Calligrapher h4, .stacks_in_40463Calligrapher h3, .stacks_in_40463Calligrapher h2, .stacks_in_40463Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40463Calligrapher, .stacks_in_40463Calligrapher h1, .stacks_in_40463Calligrapher h2, .stacks_in_40463Calligrapher h3, .stacks_in_40463Calligrapher h4, .stacks_in_40463Calligrapher h5, .stacks_in_40463Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40463targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40463Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40463Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40463Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40463Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40463 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40464 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40466 {
	line-height: 2em;
}
#stacks_in_40467{}#stacks_in_40467 > .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_40467 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40467 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40467 > .jack.width-static{width:500px}#stacks_in_40467 > .jack.width-flexible{width:100%}#stacks_in_40467 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40467 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40467 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40467 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40467 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40467 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40467 > .jack::after{border-radius:15px}#stacks_in_40467 > .jack.border-detailed-radius,#stacks_in_40467 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40467 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40467 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40467 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40467 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40467 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40467 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40467 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40467 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40467 > .jack.bg-image:not(.glass){}#stacks_in_40467 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40467 > .jack.bg-image.glass.after,#stacks_in_40467 > .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_40467 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40467 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40467 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40467 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40467 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40467 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40467 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40467 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40467 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40467 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40467 > .jack.bg-image.glass.after,#stacks_in_40467 > .glass.jack.bg-image::after{}#stacks_in_40467 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40467 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40467 > .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_40467 > .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_40467 > .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_40467 > .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_40467 > .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_40467 > .jack.peek-shadow::before,#stacks_in_40467 > .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_40467 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40467 > .jack{overflow:hidden;}#stacks_in_40467 > .jack.height-static{height:100px}#stacks_in_40467 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40468 .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_40468 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40468 .fluid-image.unlimited img{width:100% !important}#stacks_in_40468 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40468 .fluid-image.align-left img{float:left}#stacks_in_40468 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40471Calligrapher{			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_40471Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40471Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40471Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40471Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40471Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40471Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40471Calligrapher h6, .stacks_in_40471Calligrapher h5, .stacks_in_40471Calligrapher h4, .stacks_in_40471Calligrapher h3, .stacks_in_40471Calligrapher h2, .stacks_in_40471Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40471Calligrapher, .stacks_in_40471Calligrapher h1, .stacks_in_40471Calligrapher h2, .stacks_in_40471Calligrapher h3, .stacks_in_40471Calligrapher h4, .stacks_in_40471Calligrapher h5, .stacks_in_40471Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40471targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40471Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40471Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40471Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40471Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40471 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40472 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40475 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40477Calligrapher{			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_40477Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40477Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40477Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40477Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40477Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40477Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40477Calligrapher h6, .stacks_in_40477Calligrapher h5, .stacks_in_40477Calligrapher h4, .stacks_in_40477Calligrapher h3, .stacks_in_40477Calligrapher h2, .stacks_in_40477Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40477Calligrapher, .stacks_in_40477Calligrapher h1, .stacks_in_40477Calligrapher h2, .stacks_in_40477Calligrapher h3, .stacks_in_40477Calligrapher h4, .stacks_in_40477Calligrapher h5, .stacks_in_40477Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40477targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40477Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40477Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40477Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40477Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40477 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40478 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40480 {
	line-height: 2em;
}
#stacks_in_40481{}#stacks_in_40481 > .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_40481 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40481 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40481 > .jack.width-static{width:500px}#stacks_in_40481 > .jack.width-flexible{width:100%}#stacks_in_40481 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40481 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40481 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40481 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40481 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40481 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40481 > .jack::after{border-radius:15px}#stacks_in_40481 > .jack.border-detailed-radius,#stacks_in_40481 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40481 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40481 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40481 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40481 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40481 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40481 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40481 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40481 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40481 > .jack.bg-image:not(.glass){}#stacks_in_40481 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40481 > .jack.bg-image.glass.after,#stacks_in_40481 > .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_40481 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40481 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40481 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40481 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40481 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40481 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40481 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40481 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40481 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40481 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40481 > .jack.bg-image.glass.after,#stacks_in_40481 > .glass.jack.bg-image::after{}#stacks_in_40481 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40481 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40481 > .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_40481 > .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_40481 > .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_40481 > .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_40481 > .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_40481 > .jack.peek-shadow::before,#stacks_in_40481 > .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_40481 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40481 > .jack{overflow:hidden;}#stacks_in_40481 > .jack.height-static{height:100px}#stacks_in_40481 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40482 .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_40482 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40482 .fluid-image.unlimited img{width:100% !important}#stacks_in_40482 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40482 .fluid-image.align-left img{float:left}#stacks_in_40482 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40485Calligrapher{			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_40485Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40485Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40485Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40485Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40485Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40485Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40485Calligrapher h6, .stacks_in_40485Calligrapher h5, .stacks_in_40485Calligrapher h4, .stacks_in_40485Calligrapher h3, .stacks_in_40485Calligrapher h2, .stacks_in_40485Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40485Calligrapher, .stacks_in_40485Calligrapher h1, .stacks_in_40485Calligrapher h2, .stacks_in_40485Calligrapher h3, .stacks_in_40485Calligrapher h4, .stacks_in_40485Calligrapher h5, .stacks_in_40485Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40485targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40485Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40485Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40485Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40485Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40485 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40486 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40489 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40491 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40493Calligrapher{			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_40493Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40493Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40493Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40493Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40493Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40493Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40493Calligrapher h6, .stacks_in_40493Calligrapher h5, .stacks_in_40493Calligrapher h4, .stacks_in_40493Calligrapher h3, .stacks_in_40493Calligrapher h2, .stacks_in_40493Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40493Calligrapher, .stacks_in_40493Calligrapher h1, .stacks_in_40493Calligrapher h2, .stacks_in_40493Calligrapher h3, .stacks_in_40493Calligrapher h4, .stacks_in_40493Calligrapher h5, .stacks_in_40493Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40493targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40493Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40493Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40493Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40493Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40493 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40494 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40496 {
	line-height: 2em;
}
#stacks_in_40497{}#stacks_in_40497 > .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_40497 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40497 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40497 > .jack.width-static{width:500px}#stacks_in_40497 > .jack.width-flexible{width:100%}#stacks_in_40497 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40497 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40497 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40497 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40497 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40497 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40497 > .jack::after{border-radius:15px}#stacks_in_40497 > .jack.border-detailed-radius,#stacks_in_40497 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40497 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40497 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40497 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40497 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40497 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40497 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40497 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40497 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40497 > .jack.bg-image:not(.glass){}#stacks_in_40497 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40497 > .jack.bg-image.glass.after,#stacks_in_40497 > .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_40497 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40497 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40497 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40497 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40497 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40497 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40497 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40497 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40497 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40497 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40497 > .jack.bg-image.glass.after,#stacks_in_40497 > .glass.jack.bg-image::after{}#stacks_in_40497 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40497 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40497 > .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_40497 > .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_40497 > .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_40497 > .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_40497 > .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_40497 > .jack.peek-shadow::before,#stacks_in_40497 > .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_40497 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40497 > .jack{overflow:hidden;}#stacks_in_40497 > .jack.height-static{height:100px}#stacks_in_40497 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40498 .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_40498 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40498 .fluid-image.unlimited img{width:100% !important}#stacks_in_40498 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40498 .fluid-image.align-left img{float:left}#stacks_in_40498 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40501Calligrapher{			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_40501Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40501Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40501Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40501Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40501Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40501Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40501Calligrapher h6, .stacks_in_40501Calligrapher h5, .stacks_in_40501Calligrapher h4, .stacks_in_40501Calligrapher h3, .stacks_in_40501Calligrapher h2, .stacks_in_40501Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40501Calligrapher, .stacks_in_40501Calligrapher h1, .stacks_in_40501Calligrapher h2, .stacks_in_40501Calligrapher h3, .stacks_in_40501Calligrapher h4, .stacks_in_40501Calligrapher h5, .stacks_in_40501Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40501targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40501Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40501Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40501Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40501Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40501 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40502 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40505 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40507Calligrapher{			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_40507Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40507Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40507Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40507Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40507Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40507Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40507Calligrapher h6, .stacks_in_40507Calligrapher h5, .stacks_in_40507Calligrapher h4, .stacks_in_40507Calligrapher h3, .stacks_in_40507Calligrapher h2, .stacks_in_40507Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40507Calligrapher, .stacks_in_40507Calligrapher h1, .stacks_in_40507Calligrapher h2, .stacks_in_40507Calligrapher h3, .stacks_in_40507Calligrapher h4, .stacks_in_40507Calligrapher h5, .stacks_in_40507Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40507targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40507Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40507Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40507Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40507Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40507 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40508 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40510 {
	line-height: 2em;
}
#stacks_in_40511{}#stacks_in_40511 > .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_40511 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40511 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40511 > .jack.width-static{width:500px}#stacks_in_40511 > .jack.width-flexible{width:100%}#stacks_in_40511 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40511 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40511 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40511 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40511 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40511 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40511 > .jack::after{border-radius:15px}#stacks_in_40511 > .jack.border-detailed-radius,#stacks_in_40511 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40511 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40511 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40511 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40511 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40511 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40511 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40511 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40511 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40511 > .jack.bg-image:not(.glass){}#stacks_in_40511 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40511 > .jack.bg-image.glass.after,#stacks_in_40511 > .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_40511 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40511 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40511 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40511 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40511 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40511 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40511 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40511 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40511 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40511 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40511 > .jack.bg-image.glass.after,#stacks_in_40511 > .glass.jack.bg-image::after{}#stacks_in_40511 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40511 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40511 > .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_40511 > .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_40511 > .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_40511 > .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_40511 > .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_40511 > .jack.peek-shadow::before,#stacks_in_40511 > .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_40511 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40511 > .jack{overflow:hidden;}#stacks_in_40511 > .jack.height-static{height:100px}#stacks_in_40511 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40512 .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_40512 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40512 .fluid-image.unlimited img{width:100% !important}#stacks_in_40512 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40512 .fluid-image.align-left img{float:left}#stacks_in_40512 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40515Calligrapher{			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_40515Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40515Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40515Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40515Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40515Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40515Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40515Calligrapher h6, .stacks_in_40515Calligrapher h5, .stacks_in_40515Calligrapher h4, .stacks_in_40515Calligrapher h3, .stacks_in_40515Calligrapher h2, .stacks_in_40515Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40515Calligrapher, .stacks_in_40515Calligrapher h1, .stacks_in_40515Calligrapher h2, .stacks_in_40515Calligrapher h3, .stacks_in_40515Calligrapher h4, .stacks_in_40515Calligrapher h5, .stacks_in_40515Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40515targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40515Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40515Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40515Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40515Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40515 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40516 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40519 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40521 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40523Calligrapher{			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_40523Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40523Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40523Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40523Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40523Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40523Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40523Calligrapher h6, .stacks_in_40523Calligrapher h5, .stacks_in_40523Calligrapher h4, .stacks_in_40523Calligrapher h3, .stacks_in_40523Calligrapher h2, .stacks_in_40523Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40523Calligrapher, .stacks_in_40523Calligrapher h1, .stacks_in_40523Calligrapher h2, .stacks_in_40523Calligrapher h3, .stacks_in_40523Calligrapher h4, .stacks_in_40523Calligrapher h5, .stacks_in_40523Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40523targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40523Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40523Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40523Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40523Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40523 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40524 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40526 {
	line-height: 2em;
}
#stacks_in_40527{}#stacks_in_40527 > .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_40527 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40527 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40527 > .jack.width-static{width:500px}#stacks_in_40527 > .jack.width-flexible{width:100%}#stacks_in_40527 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40527 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40527 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40527 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40527 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40527 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40527 > .jack::after{border-radius:15px}#stacks_in_40527 > .jack.border-detailed-radius,#stacks_in_40527 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40527 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40527 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40527 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40527 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40527 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40527 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40527 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40527 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40527 > .jack.bg-image:not(.glass){}#stacks_in_40527 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40527 > .jack.bg-image.glass.after,#stacks_in_40527 > .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_40527 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40527 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40527 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40527 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40527 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40527 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40527 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40527 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40527 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40527 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40527 > .jack.bg-image.glass.after,#stacks_in_40527 > .glass.jack.bg-image::after{}#stacks_in_40527 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40527 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40527 > .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_40527 > .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_40527 > .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_40527 > .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_40527 > .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_40527 > .jack.peek-shadow::before,#stacks_in_40527 > .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_40527 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40527 > .jack{overflow:hidden;}#stacks_in_40527 > .jack.height-static{height:100px}#stacks_in_40527 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40528 .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_40528 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40528 .fluid-image.unlimited img{width:100% !important}#stacks_in_40528 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40528 .fluid-image.align-left img{float:left}#stacks_in_40528 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40531Calligrapher{			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_40531Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40531Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40531Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40531Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40531Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40531Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40531Calligrapher h6, .stacks_in_40531Calligrapher h5, .stacks_in_40531Calligrapher h4, .stacks_in_40531Calligrapher h3, .stacks_in_40531Calligrapher h2, .stacks_in_40531Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40531Calligrapher, .stacks_in_40531Calligrapher h1, .stacks_in_40531Calligrapher h2, .stacks_in_40531Calligrapher h3, .stacks_in_40531Calligrapher h4, .stacks_in_40531Calligrapher h5, .stacks_in_40531Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40531targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40531Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40531Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40531Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40531Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40531 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40532 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40535 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40537 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40539Calligrapher{			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_40539Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40539Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40539Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40539Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40539Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40539Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40539Calligrapher h6, .stacks_in_40539Calligrapher h5, .stacks_in_40539Calligrapher h4, .stacks_in_40539Calligrapher h3, .stacks_in_40539Calligrapher h2, .stacks_in_40539Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40539Calligrapher, .stacks_in_40539Calligrapher h1, .stacks_in_40539Calligrapher h2, .stacks_in_40539Calligrapher h3, .stacks_in_40539Calligrapher h4, .stacks_in_40539Calligrapher h5, .stacks_in_40539Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40539targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40539Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40539Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40539Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40539Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40539 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40540 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40542 {
	line-height: 2em;
}
#stacks_in_40543{}#stacks_in_40543 > .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_40543 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40543 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40543 > .jack.width-static{width:500px}#stacks_in_40543 > .jack.width-flexible{width:100%}#stacks_in_40543 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40543 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40543 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40543 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40543 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40543 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40543 > .jack::after{border-radius:15px}#stacks_in_40543 > .jack.border-detailed-radius,#stacks_in_40543 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40543 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40543 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40543 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40543 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40543 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40543 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40543 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40543 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40543 > .jack.bg-image:not(.glass){}#stacks_in_40543 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40543 > .jack.bg-image.glass.after,#stacks_in_40543 > .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_40543 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40543 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40543 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40543 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40543 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40543 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40543 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40543 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40543 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40543 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40543 > .jack.bg-image.glass.after,#stacks_in_40543 > .glass.jack.bg-image::after{}#stacks_in_40543 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40543 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40543 > .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_40543 > .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_40543 > .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_40543 > .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_40543 > .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_40543 > .jack.peek-shadow::before,#stacks_in_40543 > .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_40543 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40543 > .jack{overflow:hidden;}#stacks_in_40543 > .jack.height-static{height:100px}#stacks_in_40543 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40544 .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_40544 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40544 .fluid-image.unlimited img{width:100% !important}#stacks_in_40544 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40544 .fluid-image.align-left img{float:left}#stacks_in_40544 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40547Calligrapher{			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_40547Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40547Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40547Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40547Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40547Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40547Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40547Calligrapher h6, .stacks_in_40547Calligrapher h5, .stacks_in_40547Calligrapher h4, .stacks_in_40547Calligrapher h3, .stacks_in_40547Calligrapher h2, .stacks_in_40547Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40547Calligrapher, .stacks_in_40547Calligrapher h1, .stacks_in_40547Calligrapher h2, .stacks_in_40547Calligrapher h3, .stacks_in_40547Calligrapher h4, .stacks_in_40547Calligrapher h5, .stacks_in_40547Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40547targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40547Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40547Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40547Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40547Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40547 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40548 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40551 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40553 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40555Calligrapher{			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_40555Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40555Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40555Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40555Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40555Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40555Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40555Calligrapher h6, .stacks_in_40555Calligrapher h5, .stacks_in_40555Calligrapher h4, .stacks_in_40555Calligrapher h3, .stacks_in_40555Calligrapher h2, .stacks_in_40555Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40555Calligrapher, .stacks_in_40555Calligrapher h1, .stacks_in_40555Calligrapher h2, .stacks_in_40555Calligrapher h3, .stacks_in_40555Calligrapher h4, .stacks_in_40555Calligrapher h5, .stacks_in_40555Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40555targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40555Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40555Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40555Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40555Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40555 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40556 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40558 {
	line-height: 2em;
}
#stacks_in_40559{}#stacks_in_40559 > .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_40559 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40559 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40559 > .jack.width-static{width:500px}#stacks_in_40559 > .jack.width-flexible{width:100%}#stacks_in_40559 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40559 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40559 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40559 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40559 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40559 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40559 > .jack::after{border-radius:15px}#stacks_in_40559 > .jack.border-detailed-radius,#stacks_in_40559 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40559 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40559 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40559 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40559 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40559 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40559 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40559 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40559 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40559 > .jack.bg-image:not(.glass){}#stacks_in_40559 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40559 > .jack.bg-image.glass.after,#stacks_in_40559 > .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_40559 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40559 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40559 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40559 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40559 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40559 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40559 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40559 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40559 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40559 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40559 > .jack.bg-image.glass.after,#stacks_in_40559 > .glass.jack.bg-image::after{}#stacks_in_40559 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40559 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40559 > .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_40559 > .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_40559 > .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_40559 > .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_40559 > .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_40559 > .jack.peek-shadow::before,#stacks_in_40559 > .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_40559 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40559 > .jack{overflow:hidden;}#stacks_in_40559 > .jack.height-static{height:100px}#stacks_in_40559 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40560 .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_40560 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40560 .fluid-image.unlimited img{width:100% !important}#stacks_in_40560 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40560 .fluid-image.align-left img{float:left}#stacks_in_40560 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40563Calligrapher{			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_40563Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40563Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40563Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40563Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40563Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40563Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40563Calligrapher h6, .stacks_in_40563Calligrapher h5, .stacks_in_40563Calligrapher h4, .stacks_in_40563Calligrapher h3, .stacks_in_40563Calligrapher h2, .stacks_in_40563Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40563Calligrapher, .stacks_in_40563Calligrapher h1, .stacks_in_40563Calligrapher h2, .stacks_in_40563Calligrapher h3, .stacks_in_40563Calligrapher h4, .stacks_in_40563Calligrapher h5, .stacks_in_40563Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40563targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40563Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40563Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40563Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40563Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40563 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40564 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40567 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40569 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40571Calligrapher{			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_40571Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40571Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40571Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40571Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40571Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40571Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40571Calligrapher h6, .stacks_in_40571Calligrapher h5, .stacks_in_40571Calligrapher h4, .stacks_in_40571Calligrapher h3, .stacks_in_40571Calligrapher h2, .stacks_in_40571Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40571Calligrapher, .stacks_in_40571Calligrapher h1, .stacks_in_40571Calligrapher h2, .stacks_in_40571Calligrapher h3, .stacks_in_40571Calligrapher h4, .stacks_in_40571Calligrapher h5, .stacks_in_40571Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40571targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40571Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40571Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40571Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40571Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40571 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40572 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40574 {
	line-height: 2em;
}
#stacks_in_40575{}#stacks_in_40575 > .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_40575 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40575 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40575 > .jack.width-static{width:500px}#stacks_in_40575 > .jack.width-flexible{width:100%}#stacks_in_40575 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40575 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40575 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40575 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40575 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40575 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40575 > .jack::after{border-radius:15px}#stacks_in_40575 > .jack.border-detailed-radius,#stacks_in_40575 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40575 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40575 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40575 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40575 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40575 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40575 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40575 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40575 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40575 > .jack.bg-image:not(.glass){}#stacks_in_40575 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40575 > .jack.bg-image.glass.after,#stacks_in_40575 > .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_40575 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40575 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40575 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40575 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40575 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40575 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40575 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40575 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40575 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40575 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40575 > .jack.bg-image.glass.after,#stacks_in_40575 > .glass.jack.bg-image::after{}#stacks_in_40575 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40575 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40575 > .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_40575 > .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_40575 > .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_40575 > .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_40575 > .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_40575 > .jack.peek-shadow::before,#stacks_in_40575 > .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_40575 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40575 > .jack{overflow:hidden;}#stacks_in_40575 > .jack.height-static{height:100px}#stacks_in_40575 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40576 .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_40576 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40576 .fluid-image.unlimited img{width:100% !important}#stacks_in_40576 .fluid-image.define_max img{width:100% !important;max-width:300px !important}#stacks_in_40576 .fluid-image.align-left img{float:left}#stacks_in_40576 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40579Calligrapher{			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_40579Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40579Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40579Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40579Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40579Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40579Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40579Calligrapher h6, .stacks_in_40579Calligrapher h5, .stacks_in_40579Calligrapher h4, .stacks_in_40579Calligrapher h3, .stacks_in_40579Calligrapher h2, .stacks_in_40579Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40579Calligrapher, .stacks_in_40579Calligrapher h1, .stacks_in_40579Calligrapher h2, .stacks_in_40579Calligrapher h3, .stacks_in_40579Calligrapher h4, .stacks_in_40579Calligrapher h5, .stacks_in_40579Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40579targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40579Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40579Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40579Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40579Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40579 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40580 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40583 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40585Calligrapher{			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_40585Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40585Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40585Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40585Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40585Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40585Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40585Calligrapher h6, .stacks_in_40585Calligrapher h5, .stacks_in_40585Calligrapher h4, .stacks_in_40585Calligrapher h3, .stacks_in_40585Calligrapher h2, .stacks_in_40585Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40585Calligrapher, .stacks_in_40585Calligrapher h1, .stacks_in_40585Calligrapher h2, .stacks_in_40585Calligrapher h3, .stacks_in_40585Calligrapher h4, .stacks_in_40585Calligrapher h5, .stacks_in_40585Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40585targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40585Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40585Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40585Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40585Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40585 {
	padding: 0px 20px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40586Calligrapher{			line-height: normal !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40586Calligrapher, .stacks_in_40586Calligrapher h1, .stacks_in_40586Calligrapher h2, .stacks_in_40586Calligrapher h3, .stacks_in_40586Calligrapher h4, .stacks_in_40586Calligrapher h5, .stacks_in_40586Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40586targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Calligrapher stack CSS code */
#stacks_in_40587 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40589 {
	line-height: 2em;
}
#stacks_in_31628 *,
#stacks_in_31628 *:before,
#stacks_in_31628 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_31629{}#stacks_in_31629 > .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_31629 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31629 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31629 > .jack.width-static{width:500px}#stacks_in_31629 > .jack.width-flexible{width:100%}#stacks_in_31629 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31629 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31629 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31629 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31629 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31629 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31629 > .jack::after{border-radius:15px}#stacks_in_31629 > .jack.border-detailed-radius,#stacks_in_31629 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31629 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31629 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31629 > .jack.bg-gradient{background-color:#F5DEDA}#stacks_in_31629 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31629 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31629 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31629 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31629 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31629 > .jack.bg-image:not(.glass){}#stacks_in_31629 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31629 > .jack.bg-image.glass.after,#stacks_in_31629 > .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_31629 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31629 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31629 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31629 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31629 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31629 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31629 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31629 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31629 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31629 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31629 > .jack.bg-image.glass.after,#stacks_in_31629 > .glass.jack.bg-image::after{}#stacks_in_31629 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31629 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31629 > .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_31629 > .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_31629 > .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_31629 > .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_31629 > .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_31629 > .jack.peek-shadow::before,#stacks_in_31629 > .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_31629 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31629 > .jack{overflow:hidden;}#stacks_in_31629 > .jack.height-static{height:100px}#stacks_in_31629 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_31631 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_31631 .jwresp_col_wrapper{margin:0;width:49%;float:left;position:relative;overflow:auto}#stacks_in_31631 .jwresp_col_wrapper.right{float:right}#stacks_in_31631 .jwresp_col{overflow:hidden;width:48%;float:left;margin:0}#stacks_in_31631 #jwresp_col2_stacks_in_31631,#stacks_in_31631 #jwresp_col4_stacks_in_31631{float:right}#stacks_in_31631 #jwresp_col1_stacks_in_31631,#stacks_in_31631 #jwresp_col3_stacks_in_31631{margin-right:2} @media screen and (max-width:770px){#stacks_in_31631 .jwresp_col_wrapper.left,#stacks_in_31631 .jwresp_col_wrapper.right{width:100%;float:none;clear:both}#stacks_in_31631 .jwresp_col_wrapper.left{margin-bottom:20px}#stacks_in_31631 .jwresp_col{width:49%}#stacks_in_31631 #jwresp_col1_stacks_in_31631,#stacks_in_31631 #jwresp_col3_stacks_in_31631{margin:0}}  @media screen and (max-width:500px){#stacks_in_31631 .jwresp_col{width:100%;display:block}#stacks_in_31631 #jwresp_col1_stacks_in_31631,#stacks_in_31631 #jwresp_col2_stacks_in_31631,#stacks_in_31631 #jwresp_col3_stacks_in_31631{margin:0;margin-bottom:20px}#stacks_in_31631 #jwresp_col4_stacks_in_31631{margin:0}#stacks_in_31631 .jwresp_col_wrapper.left{margin-bottom:0}}

#stacks_in_31631 {
	margin: 10px 0px 10px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31632 {
	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_31632 .borderbuttonthing, #stacks_in_31632 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #630339;
	color: #630339;
	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_31632 .borderbuttonthing:hover {
	background: #630339;
	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_31632 .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_31634 {
	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_31634 .borderbuttonthing, #stacks_in_31634 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #630339;
	color: #630339;
	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_31634 .borderbuttonthing:hover {
	background: #630339;
	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_31634 .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_31636 {
	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_31636 .borderbuttonthing, #stacks_in_31636 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #630339;
	color: #630339;
	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_31636 .borderbuttonthing:hover {
	background: #630339;
	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_31636 .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_31638 {
	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_31638 .borderbuttonthing, #stacks_in_31638 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #630339;
	color: #630339;
	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_31638 .borderbuttonthing:hover {
	background: #630339;
	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_31638 .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_31741{}#stacks_in_31741 > .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_31741 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31741 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31741 > .jack.width-static{width:500px}#stacks_in_31741 > .jack.width-flexible{width:100%}#stacks_in_31741 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31741 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31741 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31741 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31741 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31741 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31741 > .jack::after{border-radius:15px}#stacks_in_31741 > .jack.border-detailed-radius,#stacks_in_31741 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31741 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31741 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31741 > .jack.bg-gradient{background-color:#F5DEDA}#stacks_in_31741 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31741 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31741 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31741 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31741 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31741 > .jack.bg-image:not(.glass){}#stacks_in_31741 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31741 > .jack.bg-image.glass.after,#stacks_in_31741 > .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_31741 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31741 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31741 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31741 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31741 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31741 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31741 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31741 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31741 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31741 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31741 > .jack.bg-image.glass.after,#stacks_in_31741 > .glass.jack.bg-image::after{}#stacks_in_31741 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31741 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31741 > .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_31741 > .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_31741 > .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_31741 > .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_31741 > .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_31741 > .jack.peek-shadow::before,#stacks_in_31741 > .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_31741 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31741 > .jack{overflow:hidden;}#stacks_in_31741 > .jack.height-static{height:100px}#stacks_in_31741 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_31741 {
	padding: 0px 0px 10px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31744 {
	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_31744 .borderbuttonthing, #stacks_in_31744 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 15px;
	border: 2px solid #630339;
	color: #630339;
	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_31744 .borderbuttonthing:hover {
	background: #630339;
	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_31744 .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_31744 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31746 {
	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_31746 .borderbuttonthing, #stacks_in_31746 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 15px;
	border: 2px solid #630339;
	color: #630339;
	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_31746 .borderbuttonthing:hover {
	background: #630339;
	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_31746 .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_31746 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31748 {
	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_31748 .borderbuttonthing, #stacks_in_31748 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 15px;
	border: 2px solid #630339;
	color: #630339;
	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_31748 .borderbuttonthing:hover {
	background: #630339;
	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_31748 .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_31748 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31750 {
	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_31750 .borderbuttonthing, #stacks_in_31750 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 15px;
	border: 2px solid #630339;
	color: #630339;
	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_31750 .borderbuttonthing:hover {
	background: #630339;
	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_31750 .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_31750 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_30240{padding-left:0px;padding-right:0px;}#stacks_in_30240 > .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_30240 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30240 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30240 > .jack.width-static{width:500px}#stacks_in_30240 > .jack.width-flexible{width:100%}#stacks_in_30240 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30240 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30240 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30240 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30240 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30240 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30240 > .jack::after{border-radius:0px}#stacks_in_30240 > .jack.border-detailed-radius,#stacks_in_30240 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30240 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30240 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30240 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30240 > .jack.bg-image:not(.glass){background-image:url(../schule_files/bgImage-30240.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30240 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30240 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30240 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_30240 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30240 > .jack.bg-image:not(.glass){}#stacks_in_30240 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30240 > .jack.bg-image.glass.after,#stacks_in_30240 > .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(../schule_files/bgImage-30240.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30240 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30240 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30240 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30240 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30240 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30240 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30240 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30240 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_30240 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30240 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30240 > .jack.bg-image.glass.after,#stacks_in_30240 > .glass.jack.bg-image::after{}#stacks_in_30240 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30240 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30240 > .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_30240 > .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_30240 > .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_30240 > .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_30240 > .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_30240 > .jack.peek-shadow::before,#stacks_in_30240 > .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_30240 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30240 > .jack{overflow:hidden;}#stacks_in_30240 > .jack.height-static{height:50px}#stacks_in_30240 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_30240 {
	margin: 25px 0px 0px 0px;
}
