@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_47720{padding-left:0px;padding-right:0px;}#stacks_in_47720 > .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_47720 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_47720 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_47720 > .jack.width-static{width:500px}#stacks_in_47720 > .jack.width-flexible{width:100%}#stacks_in_47720 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_47720 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_47720 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_47720 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_47720 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_47720 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_47720 > .jack::after{border-radius:0px}#stacks_in_47720 > .jack.border-detailed-radius,#stacks_in_47720 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_47720 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_47720 > .jack.bg-color{background-color:#89C5FF}#stacks_in_47720 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_47720 > .jack.bg-image:not(.glass){background-image:url(../verlag_files/bgImage-47720.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_47720 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_47720 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_47720 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_47720 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_47720 > .jack.bg-image:not(.glass){}#stacks_in_47720 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_47720 > .jack.bg-image.glass.after,#stacks_in_47720 > .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(../verlag_files/bgImage-47720.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_47720 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_47720 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_47720 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_47720 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_47720 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_47720 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_47720 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_47720 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_47720 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_47720 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_47720 > .jack.bg-image.glass.after,#stacks_in_47720 > .glass.jack.bg-image::after{}#stacks_in_47720 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_47720 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_47720 > .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_47720 > .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_47720 > .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_47720 > .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_47720 > .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_47720 > .jack.peek-shadow::before,#stacks_in_47720 > .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_47720 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_47720 > .jack{overflow:hidden;}#stacks_in_47720 > .jack.height-static{height:70px}#stacks_in_47720 > .jack.height-minmax{min-height:100px;max-height:800px}

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

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

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

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

#stacks_in_49635 {
	font-weight: lighter;
}
#stacks_in_47723{padding-left:0px;padding-right:0px;}#stacks_in_47723 > .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_47723 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_47723 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_47723 > .jack.width-static{width:500px}#stacks_in_47723 > .jack.width-flexible{width:100%}#stacks_in_47723 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_47723 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_47723 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_47723 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_47723 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_47723 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_47723 > .jack::after{border-radius:0px}#stacks_in_47723 > .jack.border-detailed-radius,#stacks_in_47723 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_47723 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_47723 > .jack.bg-color{background-color:#89C5FF}#stacks_in_47723 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_47723 > .jack.bg-image:not(.glass){background-image:url(../verlag_files/bgImage-47723.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_47723 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_47723 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_47723 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_47723 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_47723 > .jack.bg-image:not(.glass){}#stacks_in_47723 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_47723 > .jack.bg-image.glass.after,#stacks_in_47723 > .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(../verlag_files/bgImage-47723.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_47723 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_47723 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_47723 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_47723 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_47723 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_47723 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_47723 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_47723 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_47723 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_47723 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_47723 > .jack.bg-image.glass.after,#stacks_in_47723 > .glass.jack.bg-image::after{}#stacks_in_47723 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_47723 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_47723 > .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_47723 > .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_47723 > .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_47723 > .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_47723 > .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_47723 > .jack.peek-shadow::before,#stacks_in_47723 > .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_47723 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_47723 > .jack{overflow:hidden;}#stacks_in_47723 > .jack.height-static{height:20px}#stacks_in_47723 > .jack.height-minmax{min-height:100px;max-height:800px}

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

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

#stacks_in_49642 {
	font-weight: lighter;
}
#stacks_in_47755{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_47755 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_47755{visibility:hidden}#stacks_in_47755 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_47755 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_47755 .cycler_pager{text-align:center;cursor:pointer;z-index:100;display:block;position:absolute;width:100%}#stacks_in_47755 .cycler_pager.none{display:none}#stacks_in_47755 .cycler_pager a{margin:5px;padding:0;display:inline-block;text-align:center}#stacks_in_47755 .cycler_pager.left{text-align:left}#stacks_in_47755 .cycler_pager.right{text-align:right}#stacks_in_47755 .cycler_pager.numbers.left.high,#stacks_in_47755 .cycler_pager.numbers.left.low{width:42px}#stacks_in_47755 .cycler_pager.sprite.left.high,#stacks_in_47755 .cycler_pager.sprite.left.low{width:25px}#stacks_in_47755 .cycler_pager.css_bullets.left.high,#stacks_in_47755 .cycler_pager.css_bullets.left.low{width:32px}#stacks_in_47755 .cycler_pager.numbers.right.high,#stacks_in_47755 .cycler_pager.numbers.right.low{width:42px}#stacks_in_47755 .cycler_pager.sprite.right.high,#stacks_in_47755 .cycler_pager.sprite.right.low{width:25px}#stacks_in_47755 .cycler_pager.css_bullets.right.high,#stacks_in_47755 .cycler_pager.css_bullets.right.low{width:32px}#stacks_in_47755 .cycler_pager.bottom,#stacks_in_47755 .cycler_pager.low{bottom:0}#stacks_in_47755 .cycler_pager.top,#stacks_in_47755 .cycler_pager.high{top:0}#stacks_in_47755 .cycler_pager.left{left:0}#stacks_in_47755 .cycler_pager.right{right:0}#stacks_in_47755 .cycler_pager.sprite a{text-indent:-9999px;width:15px;height:15px;background:url(../verlag_files/cycler-images/15x15-pop-blue.png) 0px 0px no-repeat;background-size:100%}#stacks_in_47755 .cycler_pager.sprite a:hover{background-position:0px -15px}#stacks_in_47755 .cycler_pager.sprite a.activeSlide{background-position:0px -30px}#stacks_in_47755 .cycler_pager.numbers a{height:20px;width:20px;font-size:20px;padding:5px;background-color:#B7B7B7;border-radius:10px;-moz-box-shadow:inset 0px 0px 1px rgba(0,0,0,0.2);-webkit-box-shadow:inset 0px 0px 1px rgba(0,0,0,0.2);box-shadow:inset 0px 0px 1px rgba(0,0,0,0.2);border:1px solid #606060;text-align:center;line-height:20px;color:#E50000;text-decoration:none;text-shadow:0px 1px 1px #FFFFFF;}#stacks_in_47755 .cycler_pager.numbers a.activeSlide{color:#E50000;background-color:#606060}#stacks_in_47755 .cycler_pager.css_bullets a{position:relative;margin:5px;display:inline-block;height:20px;width:20px;background-color:#B7B7B7;border-radius:12px;box-shadow:inset 0px 0px 1px rgba(0,0,0,0.2);border:1px solid #606060;}#stacks_in_47755 .cycler_pager.css_bullets a.hover,#stacks_in_47755 .cycler_pager.css_bullets a:hover{background-color:#606060}#stacks_in_47755 .cycler_pager.css_bullets span{display:block;visibility:hidden;margin:0 auto;text-indent:-9999px;height:10px;width:10px;top:5px;position:relative;background-color:#043631;box-shadow:inset -5px 5px 10px rgba(0,0,0,0.2);border-radius:12px}#stacks_in_47755 .cycler_pager.css_bullets a.activeSlide span{visibility:visible}#stacks_in_47755 .cycler_pager.css_bullets a.activeSlide{background-color:#B7B7B7}
#stacks_in_47756 .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_47756 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_47756 .fluid-image.unlimited img{width:100% !important}#stacks_in_47756 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_47756 .fluid-image.align-left img{float:left}#stacks_in_47756 .fluid-image.align-right img{float:right}
#stacks_in_47759 .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_47759 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_47759 .fluid-image.unlimited img{width:100% !important}#stacks_in_47759 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_47759 .fluid-image.align-left img{float:left}#stacks_in_47759 .fluid-image.align-right img{float:right}
#stacks_in_47761 .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_47761 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_47761 .fluid-image.unlimited img{width:100% !important}#stacks_in_47761 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_47761 .fluid-image.align-left img{float:left}#stacks_in_47761 .fluid-image.align-right img{float:right}
#stacks_in_47763 .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_47763 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_47763 .fluid-image.unlimited img{width:100% !important}#stacks_in_47763 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_47763 .fluid-image.align-left img{float:left}#stacks_in_47763 .fluid-image.align-right img{float:right}
#stacks_in_47765 .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_47765 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_47765 .fluid-image.unlimited img{width:100% !important}#stacks_in_47765 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_47765 .fluid-image.align-left img{float:left}#stacks_in_47765 .fluid-image.align-right img{float:right}
#stacks_in_47726{padding-left:0px;padding-right:0px;}#stacks_in_47726 > .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_47726 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_47726 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_47726 > .jack.width-static{width:500px}#stacks_in_47726 > .jack.width-flexible{width:100%}#stacks_in_47726 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_47726 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_47726 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_47726 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_47726 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_47726 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_47726 > .jack::after{border-radius:0px}#stacks_in_47726 > .jack.border-detailed-radius,#stacks_in_47726 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_47726 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_47726 > .jack.bg-color{background-color:#89C5FF}#stacks_in_47726 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_47726 > .jack.bg-image:not(.glass){background-image:url(../verlag_files/bgImage-47726.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_47726 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_47726 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_47726 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_47726 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_47726 > .jack.bg-image:not(.glass){}#stacks_in_47726 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_47726 > .jack.bg-image.glass.after,#stacks_in_47726 > .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(../verlag_files/bgImage-47726.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_47726 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_47726 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_47726 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_47726 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_47726 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_47726 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_47726 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_47726 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_47726 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_47726 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_47726 > .jack.bg-image.glass.after,#stacks_in_47726 > .glass.jack.bg-image::after{}#stacks_in_47726 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_47726 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_47726 > .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_47726 > .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_47726 > .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_47726 > .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_47726 > .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_47726 > .jack.peek-shadow::before,#stacks_in_47726 > .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_47726 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_47726 > .jack{overflow:hidden;}#stacks_in_47726 > .jack.height-static{height:60px}#stacks_in_47726 > .jack.height-minmax{min-height:100px;max-height:800px}

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

#stacks_in_47768 {
	margin: 20px 40px 20px 40px;
	padding:  20px;
}

#stacks_in_47770 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_49697{}#stacks_in_49697 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_49697 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_49697 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_49697 > .jack.width-static{width:500px}#stacks_in_49697 > .jack.width-flexible{width:100%}#stacks_in_49697 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_49697 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_49697 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_49697 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_49697 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_49697 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_49697 > .jack::after{border-radius:20px}#stacks_in_49697 > .jack.border-detailed-radius,#stacks_in_49697 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_49697 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_49697 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_49697 > .jack.bg-gradient{background-color:#A1EBA6}#stacks_in_49697 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_49697 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_49697 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_49697 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_49697 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_49697 > .jack.bg-image:not(.glass){}#stacks_in_49697 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_49697 > .jack.bg-image.glass.after,#stacks_in_49697 > .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_49697 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_49697 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_49697 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_49697 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_49697 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_49697 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_49697 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_49697 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_49697 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_49697 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_49697 > .jack.bg-image.glass.after,#stacks_in_49697 > .glass.jack.bg-image::after{}#stacks_in_49697 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_49697 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_49697 > .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_49697 > .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_49697 > .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_49697 > .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_49697 > .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_49697 > .jack.peek-shadow::before,#stacks_in_49697 > .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_49697 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_49697 > .jack{overflow:hidden;}#stacks_in_49697 > .jack.height-static{height:100px}#stacks_in_49697 > .jack.height-minmax{min-height:100px;max-height:800px}

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

#stacks_in_49700 {
	margin: 20px 10px 20px 10px;
}

#stacks_in_49698 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_49665{padding-left:0px;padding-right:0px;}#stacks_in_49665 > .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_49665 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_49665 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_49665 > .jack.width-static{width:500px}#stacks_in_49665 > .jack.width-flexible{width:100%}#stacks_in_49665 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_49665 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_49665 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_49665 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_49665 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_49665 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_49665 > .jack::after{border-radius:0px}#stacks_in_49665 > .jack.border-detailed-radius,#stacks_in_49665 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_49665 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_49665 > .jack.bg-color{background-color:#89C5FF}#stacks_in_49665 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_49665 > .jack.bg-image:not(.glass){background-image:url(../verlag_files/bgImage-49665.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_49665 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_49665 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_49665 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_49665 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_49665 > .jack.bg-image:not(.glass){}#stacks_in_49665 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_49665 > .jack.bg-image.glass.after,#stacks_in_49665 > .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(../verlag_files/bgImage-49665.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_49665 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_49665 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_49665 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_49665 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_49665 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_49665 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_49665 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_49665 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_49665 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_49665 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_49665 > .jack.bg-image.glass.after,#stacks_in_49665 > .glass.jack.bg-image::after{}#stacks_in_49665 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_49665 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_49665 > .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_49665 > .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_49665 > .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_49665 > .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_49665 > .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_49665 > .jack.peek-shadow::before,#stacks_in_49665 > .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_49665 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_49665 > .jack{overflow:hidden;}#stacks_in_49665 > .jack.height-static{height:20px}#stacks_in_49665 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_49665 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_49695{padding-left:0px;padding-right:0px;}#stacks_in_49695 > .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_49695 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_49695 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_49695 > .jack.width-static{width:500px}#stacks_in_49695 > .jack.width-flexible{width:100%}#stacks_in_49695 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_49695 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_49695 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_49695 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_49695 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_49695 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_49695 > .jack::after{border-radius:0px}#stacks_in_49695 > .jack.border-detailed-radius,#stacks_in_49695 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_49695 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_49695 > .jack.bg-color{background-color:#89C5FF}#stacks_in_49695 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_49695 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_49695 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_49695 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_49695 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_49695 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_49695 > .jack.bg-image:not(.glass){}#stacks_in_49695 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_49695 > .jack.bg-image.glass.after,#stacks_in_49695 > .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_49695 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_49695 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_49695 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_49695 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_49695 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_49695 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_49695 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_49695 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_49695 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_49695 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_49695 > .jack.bg-image.glass.after,#stacks_in_49695 > .glass.jack.bg-image::after{}#stacks_in_49695 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_49695 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_49695 > .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_49695 > .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_49695 > .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_49695 > .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_49695 > .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_49695 > .jack.peek-shadow::before,#stacks_in_49695 > .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_49695 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_49695 > .jack{overflow:visible;}#stacks_in_49695 > .jack.height-static{height:100px}#stacks_in_49695 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_49674 .jwresp_wrapper{width:100%;overflow:auto;position:relative}#stacks_in_49674 .jwresp_col{overflow:hidden;margin:0 0%; width:20%; float:none}#stacks_in_49674 #jwresp_col1_stacks_in_49674,#stacks_in_49674 #jwresp_col2_stacks_in_49674{float:left}#stacks_in_49674 #jwresp_col4_stacks_in_49674,#stacks_in_49674 #jwresp_col5_stacks_in_49674{float:right}#stacks_in_49674 #jwresp_col1_stacks_in_49674{margin-left:0}#stacks_in_49674 #jwresp_col5_stacks_in_49674{margin-right:0}#stacks_in_49674 #jwresp_col3_stacks_in_49674{margin:0 auto;float:none}#stacks_in_49674 .jwresp_clear{display:none} @media screen and (max-width:1030px){#stacks_in_49674 .jwresp_clear{display:block;clear:both;height:0}#stacks_in_49674 #jwresp_col1_stacks_in_49674,#stacks_in_49674 #jwresp_col2_stacks_in_49674,#stacks_in_49674 #jwresp_col3_stacks_in_49674,#stacks_in_49674 #jwresp_col4_stacks_in_49674{margin:0}#stacks_in_49674 #jwresp_col5_stacks_in_49674{position:relative;margin:0 auto;float:none;width:34%}#stacks_in_49674 #jwresp_col1_stacks_in_49674,#stacks_in_49674 #jwresp_col2_stacks_in_49674{width:33%}#stacks_in_49674 #jwresp_col1_stacks_in_49674,#stacks_in_49674 #jwresp_col4_stacks_in_49674{float:left}#stacks_in_49674 #jwresp_col2_stacks_in_49674,#stacks_in_49674 #jwresp_col3_stacks_in_49674{float:right}#stacks_in_49674 #jwresp_col4_stacks_in_49674,#stacks_in_49674 #jwresp_col3_stacks_in_49674{width:50%;margin-top:15px}}  @media screen and (max-width:500px){#stacks_in_49674 #jwresp_col1_stacks_in_49674,#stacks_in_49674 #jwresp_col2_stacks_in_49674,#stacks_in_49674 #jwresp_col3_stacks_in_49674,#stacks_in_49674 #jwresp_col4_stacks_in_49674,#stacks_in_49674 #jwresp_col5_stacks_in_49674{width:100%;display:block;margin:0}#stacks_in_49674 #jwresp_col1_stacks_in_49674,#stacks_in_49674 #jwresp_col2_stacks_in_49674,#stacks_in_49674 #jwresp_col4_stacks_in_49674,#stacks_in_49674 #jwresp_col5_stacks_in_49674{margin-bottom:15px}}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_49683 .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_49683 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

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

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

#stacks_in_49685 .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_49685 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

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

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

#stacks_in_49691 .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_49691 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

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

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

#stacks_in_49689 .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_49689 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

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

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

#stacks_in_49687 .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_49687 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_47735{padding-left:0px;padding-right:0px;}#stacks_in_47735 > .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_47735 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_47735 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_47735 > .jack.width-static{width:500px}#stacks_in_47735 > .jack.width-flexible{width:100%}#stacks_in_47735 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_47735 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_47735 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_47735 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_47735 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_47735 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_47735 > .jack::after{border-radius:0px}#stacks_in_47735 > .jack.border-detailed-radius,#stacks_in_47735 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_47735 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_47735 > .jack.bg-color{background-color:#89C5FF}#stacks_in_47735 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_47735 > .jack.bg-image:not(.glass){background-image:url(../verlag_files/bgImage-47735.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_47735 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_47735 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_47735 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_47735 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_47735 > .jack.bg-image:not(.glass){}#stacks_in_47735 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_47735 > .jack.bg-image.glass.after,#stacks_in_47735 > .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(../verlag_files/bgImage-47735.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_47735 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_47735 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_47735 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_47735 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_47735 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_47735 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_47735 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_47735 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_47735 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_47735 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_47735 > .jack.bg-image.glass.after,#stacks_in_47735 > .glass.jack.bg-image::after{}#stacks_in_47735 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_47735 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_47735 > .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_47735 > .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_47735 > .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_47735 > .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_47735 > .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_47735 > .jack.peek-shadow::before,#stacks_in_47735 > .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_47735 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_47735 > .jack{overflow:hidden;}#stacks_in_47735 > .jack.height-static{height:80px}#stacks_in_47735 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_47735 {
	margin: 20px 0px 20px 0px;
}
#stacks_in_55146{padding-left:0px;padding-right:0px;}#stacks_in_55146 > .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_55146 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_55146 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_55146 > .jack.width-static{width:500px}#stacks_in_55146 > .jack.width-flexible{width:100%}#stacks_in_55146 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_55146 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_55146 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_55146 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_55146 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_55146 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_55146 > .jack::after{border-radius:0px}#stacks_in_55146 > .jack.border-detailed-radius,#stacks_in_55146 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_55146 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_55146 > .jack.bg-color{background-color:#89C5FF}#stacks_in_55146 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_55146 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_55146 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_55146 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_55146 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_55146 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_55146 > .jack.bg-image:not(.glass){}#stacks_in_55146 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_55146 > .jack.bg-image.glass.after,#stacks_in_55146 > .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_55146 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_55146 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_55146 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_55146 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_55146 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_55146 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_55146 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_55146 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_55146 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_55146 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_55146 > .jack.bg-image.glass.after,#stacks_in_55146 > .glass.jack.bg-image::after{}#stacks_in_55146 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_55146 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_55146 > .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_55146 > .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_55146 > .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_55146 > .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_55146 > .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_55146 > .jack.peek-shadow::before,#stacks_in_55146 > .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_55146 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_55146 > .jack{overflow:visible;}#stacks_in_55146 > .jack.height-static{height:100px}#stacks_in_55146 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_55147{padding-left:0px;padding-right:0px;}#stacks_in_55147 > .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_55147 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_55147 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_55147 > .jack.width-static{width:500px}#stacks_in_55147 > .jack.width-flexible{width:100%}#stacks_in_55147 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_55147 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_55147 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_55147 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_55147 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_55147 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_55147 > .jack::after{border-radius:0px}#stacks_in_55147 > .jack.border-detailed-radius,#stacks_in_55147 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_55147 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_55147 > .jack.bg-color{background-color:#89C5FF}#stacks_in_55147 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_55147 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_55147 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_55147 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_55147 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_55147 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_55147 > .jack.bg-image:not(.glass){}#stacks_in_55147 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_55147 > .jack.bg-image.glass.after,#stacks_in_55147 > .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_55147 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_55147 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_55147 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_55147 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_55147 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_55147 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_55147 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_55147 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_55147 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_55147 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_55147 > .jack.bg-image.glass.after,#stacks_in_55147 > .glass.jack.bg-image::after{}#stacks_in_55147 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_55147 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_55147 > .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_55147 > .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_55147 > .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_55147 > .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_55147 > .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_55147 > .jack.peek-shadow::before,#stacks_in_55147 > .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_55147 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_55147 > .jack{overflow:visible;}#stacks_in_55147 > .jack.height-static{height:100px}#stacks_in_55147 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_56023{}#stacks_in_56023 > .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_56023 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_56023 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_56023 > .jack.width-static{width:500px}#stacks_in_56023 > .jack.width-flexible{width:100%}#stacks_in_56023 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_56023 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_56023 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_56023 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_56023 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_56023 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_56023 > .jack::after{border-radius:15px}#stacks_in_56023 > .jack.border-detailed-radius,#stacks_in_56023 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_56023 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_56023 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_56023 > .jack.bg-gradient{background-color:#AFE9BB}#stacks_in_56023 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_56023 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_56023 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_56023 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_56023 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_56023 > .jack.bg-image:not(.glass){}#stacks_in_56023 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_56023 > .jack.bg-image.glass.after,#stacks_in_56023 > .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_56023 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_56023 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_56023 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_56023 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_56023 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_56023 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_56023 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_56023 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_56023 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_56023 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_56023 > .jack.bg-image.glass.after,#stacks_in_56023 > .glass.jack.bg-image::after{}#stacks_in_56023 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_56023 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_56023 > .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_56023 > .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_56023 > .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_56023 > .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_56023 > .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_56023 > .jack.peek-shadow::before,#stacks_in_56023 > .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_56023 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_56023 > .jack{overflow:hidden;}#stacks_in_56023 > .jack.height-static{height:100px}#stacks_in_56023 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_55151Calligrapher{			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_55151Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_55151Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_55151Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_55151Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_55151Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_55151Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_55151Calligrapher h6, .stacks_in_55151Calligrapher h5, .stacks_in_55151Calligrapher h4, .stacks_in_55151Calligrapher h3, .stacks_in_55151Calligrapher h2, .stacks_in_55151Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_55151Calligrapher, .stacks_in_55151Calligrapher h1, .stacks_in_55151Calligrapher h2, .stacks_in_55151Calligrapher h3, .stacks_in_55151Calligrapher h4, .stacks_in_55151Calligrapher h5, .stacks_in_55151Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_55151Calligrapher, .stacks_in_55151Calligrapher h1, .stacks_in_55151Calligrapher h2, .stacks_in_55151Calligrapher h3, .stacks_in_55151Calligrapher h4, .stacks_in_55151Calligrapher h5, .stacks_in_55151Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_55151targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_55151Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_55151Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_55151Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_55151Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_55151 {
	padding: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_55156x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_55156x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_55156x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_55157 {
	font-weight: lighter;
}
#stacks_in_55152{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_55152 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_55152{visibility:hidden}#stacks_in_55152 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_55152 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_55152 .cycler_nav{cursor:pointer;z-index:101;display:block;display:none;width:50px;height:50px;position:absolute;background:url(../verlag_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:40%;}#stacks_in_55152 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_55152 .cycler_nav.prev:hover{background-position:0px -50px}#stacks_in_55152 .cycler_nav.prev:active{background-position:0px -100px}#stacks_in_55152 .cycler_nav.next{right:0px;background-position:0px -150px}#stacks_in_55152 .cycler_nav.next:hover{background-position:0px -200px}#stacks_in_55152 .cycler_nav.next:active{background-position:0px -250px}
#stacks_in_55160{}#stacks_in_55160 > .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_55160 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_55160 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_55160 > .jack.width-static{width:500px}#stacks_in_55160 > .jack.width-flexible{width:100%}#stacks_in_55160 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_55160 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_55160 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_55160 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_55160 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_55160 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_55160 > .jack::after{border-radius:15px}#stacks_in_55160 > .jack.border-detailed-radius,#stacks_in_55160 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_55160 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_55160 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_55160 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_55160 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_55160 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_55160 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_55160 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_55160 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_55160 > .jack.bg-image:not(.glass){}#stacks_in_55160 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_55160 > .jack.bg-image.glass.after,#stacks_in_55160 > .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_55160 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_55160 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_55160 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_55160 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_55160 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_55160 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_55160 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_55160 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_55160 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_55160 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_55160 > .jack.bg-image.glass.after,#stacks_in_55160 > .glass.jack.bg-image::after{}#stacks_in_55160 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_55160 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_55160 > .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_55160 > .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_55160 > .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_55160 > .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_55160 > .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_55160 > .jack.peek-shadow::before,#stacks_in_55160 > .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_55160 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_55160 > .jack{overflow:hidden;}#stacks_in_55160 > .jack.height-static{height:500px}#stacks_in_55160 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_55162 {
	height: 45.00px;
}




























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

#stacks_in_55163 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_55164 {
	height: 5.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_55183 {
	height: 45.00px;
}




























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

#stacks_in_55184 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_55185 {
	height: 5.00px;
}




























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

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

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

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

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_55204 {
	height: 45.00px;
}




























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

#stacks_in_55205 {
	padding:  20px;
}

.spacerStack {
	height: 55.00px;
}

#spacerStackstacks_in_55206 {
	height: 55.00px;
}




























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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_55225 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_55230 {
	height: 20.00px;
}




























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

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

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

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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_55246 {
	height: 20.00px;
}




























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

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

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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_55270 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_55275 {
	height: 20.00px;
}




























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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_55291 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_55296 {
	height: 20.00px;
}




























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

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

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

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

.spacerStack {
	height: 95.00px;
}

#spacerStackstacks_in_55312 {
	height: 95.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 35.00px;
}

#spacerStackstacks_in_55332 {
	height: 35.00px;
}




























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

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

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_55337 {
	height: 120.00px;
}




























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

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

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

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

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_55353 {
	height: 25.00px;
}




























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

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

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_55358 {
	height: 70.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_55374 {
	height: 50.00px;
}




























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

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

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_55379 {
	height: 70.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_55395 {
	height: 50.00px;
}




























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

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_55400 {
	height: 40.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_55414 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_55419 {
	height: 40.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_55435 {
	height: 30.00px;
}




























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

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_55440 {
	height: 40.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_55456 {
	height: 5.00px;
}




























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

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

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

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

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

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

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

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_55476 {
	height: 60.00px;
}




























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

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

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_55481 {
	height: 60.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_55495 {
	height: 75.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_55515 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_55520 {
	height: 80.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_55534 {
	height: 30.00px;
}




























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

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

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_55539 {
	height: 80.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_55555 {
	height: 30.00px;
}




























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

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

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_55560 {
	height: 120.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_55576 {
	height: 25.00px;
}




























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

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

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_55581 {
	height: 80.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_55597 {
	height: 75.00px;
}




























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

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

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

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

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

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

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_55617 {
	height: 40.00px;
}




























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

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

.spacerStack {
	height: 130.00px;
}

#spacerStackstacks_in_55621 {
	height: 130.00px;
}




























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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_56214 {
	line-height: 2em;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_56215 {
	height: 10.00px;
}




























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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_56416 {
	line-height: 2em;
}
#stacks_in_47732{padding-left:0px;padding-right:0px;}#stacks_in_47732 > .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_47732 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_47732 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_47732 > .jack.width-static{width:500px}#stacks_in_47732 > .jack.width-flexible{width:100%}#stacks_in_47732 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_47732 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_47732 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_47732 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_47732 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_47732 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_47732 > .jack::after{border-radius:0px}#stacks_in_47732 > .jack.border-detailed-radius,#stacks_in_47732 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_47732 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_47732 > .jack.bg-color{background-color:#89C5FF}#stacks_in_47732 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_47732 > .jack.bg-image:not(.glass){background-image:url(../verlag_files/bgImage-47732.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_47732 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_47732 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_47732 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_47732 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_47732 > .jack.bg-image:not(.glass){}#stacks_in_47732 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_47732 > .jack.bg-image.glass.after,#stacks_in_47732 > .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(../verlag_files/bgImage-47732.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_47732 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_47732 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_47732 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_47732 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_47732 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_47732 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_47732 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_47732 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_47732 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_47732 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_47732 > .jack.bg-image.glass.after,#stacks_in_47732 > .glass.jack.bg-image::after{}#stacks_in_47732 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_47732 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_47732 > .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_47732 > .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_47732 > .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_47732 > .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_47732 > .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_47732 > .jack.peek-shadow::before,#stacks_in_47732 > .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_47732 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_47732 > .jack{overflow:hidden;}#stacks_in_47732 > .jack.height-static{height:40px}#stacks_in_47732 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_49707{padding-left:0px;padding-right:0px;}#stacks_in_49707 > .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_49707 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_49707 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_49707 > .jack.width-static{width:500px}#stacks_in_49707 > .jack.width-flexible{width:100%}#stacks_in_49707 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_49707 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_49707 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_49707 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_49707 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_49707 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_49707 > .jack::after{border-radius:0px}#stacks_in_49707 > .jack.border-detailed-radius,#stacks_in_49707 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_49707 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_49707 > .jack.bg-color{background-color:#89C5FF}#stacks_in_49707 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_49707 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_49707 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_49707 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_49707 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_49707 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_49707 > .jack.bg-image:not(.glass){}#stacks_in_49707 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_49707 > .jack.bg-image.glass.after,#stacks_in_49707 > .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_49707 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_49707 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_49707 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_49707 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_49707 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_49707 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_49707 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_49707 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_49707 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_49707 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_49707 > .jack.bg-image.glass.after,#stacks_in_49707 > .glass.jack.bg-image::after{}#stacks_in_49707 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_49707 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_49707 > .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_49707 > .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_49707 > .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_49707 > .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_49707 > .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_49707 > .jack.peek-shadow::before,#stacks_in_49707 > .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_49707 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_49707 > .jack{overflow:visible;}#stacks_in_49707 > .jack.height-static{height:100px}#stacks_in_49707 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_49708 *,
#stacks_in_49708 *:before,
#stacks_in_49708 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



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

#stacks_in_49711 {
	margin: 10px 0px 15px 0px;
}
#stacks_in_49713 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_49713 .jwresp_col{float:none} #stacks_in_49713 #jwresp_col2_stacks_in_49713{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_49713 #jwresp_col1_stacks_in_49713,#stacks_in_49713 #jwresp_col3_stacks_in_49713{width:32%}#stacks_in_49713 #jwresp_col1_stacks_in_49713{float:left}#stacks_in_49713 #jwresp_col3_stacks_in_49713{float:right} @media screen and (max-width:770px){#stacks_in_49713 #jwresp_col1_stacks_in_49713,#stacks_in_49713 #jwresp_col3_stacks_in_49713{margin-bottom:20px}#stacks_in_49713 #jwresp_col1_stacks_in_49713{width:49%}#stacks_in_49713 #jwresp_col3_stacks_in_49713{width:49%}#stacks_in_49713 #jwresp_col2_stacks_in_49713{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_49713 #jwresp_col1_stacks_in_49713,#stacks_in_49713 #jwresp_col3_stacks_in_49713,#stacks_in_49713 #jwresp_col2_stacks_in_49713{float:none;width:100%;display:block}#stacks_in_49713 #jwresp_col1_stacks_in_49713,#stacks_in_49713 #jwresp_col3_stacks_in_49713{margin-bottom:20px}} 

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

#borderbuttonthingstacks_in_49715 {
	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_49715 .borderbuttonthing, #stacks_in_49715 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_49715 .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_49717 {
	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_49717 .borderbuttonthing, #stacks_in_49717 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_49717 .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_49719 {
	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_49719 .borderbuttonthing, #stacks_in_49719 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

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

#stacks_in_49709 {
	margin: 25px 0px 15px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_49721 {
	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_49721 .borderbuttonthing, #stacks_in_49721 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 15px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_49721 .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_49721 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_49723 {
	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_49723 .borderbuttonthing, #stacks_in_49723 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 15px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_49723 .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_49723 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_49724 {
	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_49724 .borderbuttonthing, #stacks_in_49724 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 15px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

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

#stacks_in_49724 .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_49724 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_49705{padding-left:0px;padding-right:0px;}#stacks_in_49705 > .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_49705 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_49705 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_49705 > .jack.width-static{width:500px}#stacks_in_49705 > .jack.width-flexible{width:100%}#stacks_in_49705 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_49705 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_49705 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_49705 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_49705 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_49705 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_49705 > .jack::after{border-radius:0px}#stacks_in_49705 > .jack.border-detailed-radius,#stacks_in_49705 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_49705 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_49705 > .jack.bg-color{background-color:#89C5FF}#stacks_in_49705 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_49705 > .jack.bg-image:not(.glass){background-image:url(../verlag_files/bgImage-49705.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_49705 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_49705 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_49705 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_49705 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_49705 > .jack.bg-image:not(.glass){}#stacks_in_49705 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_49705 > .jack.bg-image.glass.after,#stacks_in_49705 > .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(../verlag_files/bgImage-49705.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_49705 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_49705 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_49705 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_49705 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_49705 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_49705 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_49705 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_49705 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_2_col.jpg)}#stacks_in_49705 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_49705 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_49705 > .jack.bg-image.glass.after,#stacks_in_49705 > .glass.jack.bg-image::after{}#stacks_in_49705 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_49705 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_49705 > .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_49705 > .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_49705 > .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_49705 > .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_49705 > .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_49705 > .jack.peek-shadow::before,#stacks_in_49705 > .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_49705 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_49705 > .jack{overflow:hidden;}#stacks_in_49705 > .jack.height-static{height:90px}#stacks_in_49705 > .jack.height-minmax{min-height:100px;max-height:800px}
