 .target_stack.width-fill{width:100%}.target_stack.width-auto{width:auto}.target_stack.position-browser{position:fixed!important}.target_stack.position-absolute{position:absolute!important}.target_stack.position-body{position:absolute!important}.target_stack.position-right{float:right}.target_stack.position-left{float:left}.target_stack.vcenter{top:0;height:100%}.target_stack.vcenter>.com_joeworkman_stacks_target_stack{position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.target_stack.hcenter>.com_joeworkman_stacks_target_stack{position:relative;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.target_stack.hcenter.vcenter>.com_joeworkman_stacks_target_stack{-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%)}@media only screen and (min-width:40em){.target_stack.target-small-only{position:relative!important;float:none!important;height:auto!important;left:auto!important;top:auto!important;bottom:auto!important;right:auto!important}.target_stack.target-small-only>.com_joeworkman_stacks_target_stack{left:auto!important;top:auto!important;bottom:auto!important;right:auto!important;-webkit-transform:none!important;transform:none!important}}@media only screen and (max-width:39.9375em){.target_stack.disable-small{position:relative!important;float:none!important;height:auto!important;left:auto!important;top:auto!important;bottom:auto!important;right:auto!important}.target_stack.disable-small>.com_joeworkman_stacks_target_stack{left:auto!important;top:auto!important;bottom:auto!important;right:auto!important;-webkit-transform:none!important;transform:none!important}}@media only screen and (max-width:62.5em){.target_stack.disable-medium{position:relative!important;float:none!important;height:auto!important;left:auto!important;top:auto!important;bottom:auto!important;right:auto!important}.target_stack.disable-medium>.com_joeworkman_stacks_target_stack{left:auto!important;top:auto!important;bottom:auto!important;right:auto!important;-webkit-transform:none!important;transform:none!important}}
@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 opLoad{0%{opacity:0}100%{opacity:1}}@keyframes opLoad{0%{opacity:0}100%{opacity:1}}.ncp{clear:both;padding:0;margin:0;counter-reset:section}.ncp.fadeimg{-webkit-animation:opLoad 1s ease-out;animation:opLoad 1s ease-out}.ncp.fadeimg img{opacity:0;-webkit-transition:opacity 1s ease-out;transition:opacity 1s ease-out}.ncp.fadeimg img.show{opacity:1}.ncp .g:before,.ncp .g:after{content:"";display:table}.ncp .g:after{clear:both}.ncp .c{display:block;float:left;margin:1% 0 1% 1.6%}.ncp .s1_1,.ncp .s1_2,.ncp .s1_3,.ncp .s1_4{margin:1% 0}.ncp .c:first-child{margin-left:0}.ncp.s1 > .c{width:100%}.ncp.s2 > .c{width:49.2%}.ncp.s3 > .c{width:32.26%}.ncp.s4 > .c{width:23.8%}
@important "partials/mixins";
#loader-outer-stacks_in_2203338 {
  z-index: 10000000000000000000;
  position: relative;
  /*  */ }

#loader-stacks_in_2203338 .loader-text {
  font-family: "Open Sans";
  top: 50%;
  left: 50%;
  text-align: center;
  position: absolute;
  width: 100%;
  max-width: 90%;
  z-index: 10000000000000000000;
  color: rgba(0, 0, 0, 1.00);
  font-size: 18px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
  #loader-stacks_in_2203338 .loader-text.loader-8-text {
    /*  */
    margin-top: -50px;
    /*  */ }
  #loader-stacks_in_2203338 .loader-text.loader-4-text {
    /*  */
    margin-top: -50px;
    /*  */ }

#loader-stacks_in_2203338 .loader-type {
  position: relative;
  z-index: 10000000000000000000; }

#loader-stacks_in_2203338 {
  /*  */
  /*  */
  /*  */
  position: fixed;
  /*  */
  /*  */
  overflow: hidden;
  z-index: 10000000000000000000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  #loader-stacks_in_2203338::before {
    /*  */
    background: rgba(245, 245, 245, 1.00);
    /*  */
    /*  */
    /*  */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    opacity: 1.0; }

.loader-1-stacks_in_2203338 {
  width: 100%;
  max-width: 90%;
  height: 8px;
  position: relative;
  background-color: rgba(253, 186, 44, 1.00); }
  .loader-1-stacks_in_2203338 .bar {
    content: "";
    display: inline;
    position: absolute;
    width: 0;
    height: 100%;
    left: 50%;
    text-align: center; }
  .loader-1-stacks_in_2203338 .bar:nth-child(1) {
    background-color: rgba(218, 71, 51, 1.00);
    -webkit-animation: loader-1-stacks_in_2203338 3s linear infinite;
            animation: loader-1-stacks_in_2203338 3s linear infinite; }
  .loader-1-stacks_in_2203338 .bar:nth-child(2) {
    background-color: rgba(59, 120, 231, 1.00);
    -webkit-animation: loader-1-stacks_in_2203338 3s linear 1s infinite;
            animation: loader-1-stacks_in_2203338 3s linear 1s infinite; }
  .loader-1-stacks_in_2203338 .bar:nth-child(3) {
    background-color: rgba(253, 186, 44, 1.00);
    -webkit-animation: loader-1-stacks_in_2203338 3s linear 2s infinite;
            animation: loader-1-stacks_in_2203338 3s linear 2s infinite; }

@-webkit-keyframes loader-1-stacks_in_2203338 {
  from {
    left: 50%;
    width: 0;
    z-index: 100; }
  33.3333% {
    left: 0;
    z-index: 10;
    width: 100%; }
  to {
    left: 0;
    width: 100%; } }

@keyframes loader-1-stacks_in_2203338 {
  from {
    left: 50%;
    width: 0;
    z-index: 100; }
  33.3333% {
    left: 0;
    z-index: 10;
    width: 100%; }
  to {
    left: 0;
    width: 100%; } }

.loader-2-stacks_in_2203338 {
  width: 50px;
  height: 50px;
  margin: 50px;
  -webkit-animation: loader-2-1-stacks_in_2203338 1.4s infinite ease-in-out, loader-2-2-stacks_in_2203338 1.4s infinite ease-in-out alternate;
          animation: loader-2-1-stacks_in_2203338 1.4s infinite ease-in-out, loader-2-2-stacks_in_2203338 1.4s infinite ease-in-out alternate; }

@-webkit-keyframes loader-2-1-stacks_in_2203338 {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
            transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(0deg); }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(-180deg); } }

@keyframes loader-2-1-stacks_in_2203338 {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
            transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(0deg); }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
            transform: perspective(120px) rotateX(-180deg) rotateY(-180deg); } }

@-webkit-keyframes loader-2-2-stacks_in_2203338 {
  0% {
    background-color: rgba(218, 71, 51, 1.00); }
  50% {
    background-color: rgba(59, 120, 231, 1.00); }
  100% {
    background-color: rgba(253, 186, 44, 1.00); } }

@keyframes loader-2-2-stacks_in_2203338 {
  0% {
    background-color: rgba(218, 71, 51, 1.00); }
  50% {
    background-color: rgba(59, 120, 231, 1.00); }
  100% {
    background-color: rgba(253, 186, 44, 1.00); } }

.loader-3-stacks_in_2203338 {
  width: 50px;
  height: 50px;
  border: none;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  box-sizing: border-box;
  background: rgba(253, 186, 44, 1.00);
  -webkit-animation: loader-3-stacks_in_2203338 1s infinite linear;
          animation: loader-3-stacks_in_2203338 1s infinite linear; }
  .loader-3-stacks_in_2203338::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1.00);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }

@-webkit-keyframes loader-3-stacks_in_2203338 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes loader-3-stacks_in_2203338 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.loader-4-stacks_in_2203338 .bar {
  border-radius: 0px;
  display: inline-block;
  width: 4px;
  height: 18px;
  margin: 0 0px;
  -webkit-animation: loader-4-stacks_in_2203338 1s ease-in-out infinite;
          animation: loader-4-stacks_in_2203338 1s ease-in-out infinite; }
  .loader-4-stacks_in_2203338 .bar:nth-child(1) {
    background-color: rgba(52, 152, 219, 1.00);
    -webkit-animation-delay: 0;
            animation-delay: 0; }
  .loader-4-stacks_in_2203338 .bar:nth-child(2) {
    background-color: rgba(192, 57, 43, 1.00);
    -webkit-animation-delay: 0.09s;
            animation-delay: 0.09s; }
  .loader-4-stacks_in_2203338 .bar:nth-child(3) {
    background-color: rgba(241, 196, 15, 1.00);
    -webkit-animation-delay: .18s;
            animation-delay: .18s; }
  .loader-4-stacks_in_2203338 .bar:nth-child(4) {
    background-color: rgba(39, 174, 96, 1.00);
    -webkit-animation-delay: .27s;
            animation-delay: .27s; }

@-webkit-keyframes loader-4-stacks_in_2203338 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  20% {
    -webkit-transform: scale(1, 2.2);
            transform: scale(1, 2.2); }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes loader-4-stacks_in_2203338 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  20% {
    -webkit-transform: scale(1, 2.2);
            transform: scale(1, 2.2); }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

.loader-5-stacks_in_2203338 {
  opacity: 0;
  width: 90px;
  height: 90px;
  border-radius: 50px;
  -webkit-animation: loader-5-stacks_in_2203338 1s ease-out;
          animation: loader-5-stacks_in_2203338 1s ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border: 5px solid rgba(51, 51, 51, 1.00); }

@-webkit-keyframes loader-5-stacks_in_2203338 {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0; } }

@keyframes loader-5-stacks_in_2203338 {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0; } }

.loader-6-stacks_in_2203338 {
  width: 100%;
  height: 40px; }

.loader-6-stacks_in_2203338 .bar {
  width: 40px;
  height: 40px;
  left: -40px;
  position: absolute;
  background-color: rgba(39, 174, 96, 1.00);
  border-radius: 4px;
  -webkit-animation: loader-6-stacks_in_2203338 4s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
          animation: loader-6-stacks_in_2203338 4s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); }
  .loader-6-stacks_in_2203338 .bar:nth-child(2) {
    -webkit-animation-delay: 150ms;
            animation-delay: 150ms; }
  .loader-6-stacks_in_2203338 .bar:nth-child(3) {
    -webkit-animation-delay: 300ms;
            animation-delay: 300ms; }
  .loader-6-stacks_in_2203338 .bar:nth-child(4) {
    -webkit-animation-delay: 450ms;
            animation-delay: 450ms; }

@-webkit-keyframes loader-6-stacks_in_2203338 {
  0% {
    left: 0%; }
  75% {
    left: 100%; }
  100% {
    left: 100%; } }

@keyframes loader-6-stacks_in_2203338 {
  0% {
    left: 0%; }
  75% {
    left: 100%; }
  100% {
    left: 100%; } }

.loader-7-stacks_in_2203338 {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 8px;
  max-width: 90%;
  background-color: rgba(241, 241, 241, 1.00); }
  .loader-7-stacks_in_2203338:before {
    display: block;
    position: absolute;
    content: "";
    left: -200px;
    width: 200px;
    height: 8px;
    background-color: rgba(0, 0, 0, 1.00);
    -webkit-animation: loader-7-stacks_in_2203338 2s linear infinite;
            animation: loader-7-stacks_in_2203338 2s linear infinite; }

@-webkit-keyframes loader-7-stacks_in_2203338 {
  from {
    left: -200px;
    width: 30%; }
  50% {
    width: 30%; }
  70% {
    width: 70%; }
  80% {
    left: 50%; }
  95% {
    left: 120%; }
  to {
    left: 100%; } }

@keyframes loader-7-stacks_in_2203338 {
  from {
    left: -200px;
    width: 30%; }
  50% {
    width: 30%; }
  70% {
    width: 70%; }
  80% {
    left: 50%; }
  95% {
    left: 120%; }
  to {
    left: 100%; } }

.loader-8-stacks_in_2203338 {
  width: 100%;
  height: 20px;
  background-size: 28px 28px;
  max-width: 90%;
  border-radius: 3pxpx;
  -webkit-animation: loader-8-stacks_in_2203338 .5s linear infinite;
          animation: loader-8-stacks_in_2203338 .5s linear infinite;
  border: 1px solid rgba(0, 0, 0, 1.00);
  background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 1.00), rgba(0, 0, 0, 1.00) 11px, rgba(241, 241, 241, 1.00) 10px, rgba(241, 241, 241, 1.00) 20px); }

@-webkit-keyframes loader-8-stacks_in_2203338 {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 28px 0; } }

@keyframes loader-8-stacks_in_2203338 {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 28px 0; } }

.loader-9-stacks_in_2203338 {
  font-family: "Droid Serif";
  position: relative;
  color: rgba(241, 241, 241, 1.00);
  font-size: px; }
  .loader-9-stacks_in_2203338:before {
    content: attr(data-text);
    max-width: 100%;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    color: rgba(0, 0, 0, 1.00);
    -webkit-animation: loader-9-stacks_in_2203338 8s linear;
            animation: loader-9-stacks_in_2203338 8s linear;
    /*  */ }
  @media only screen and (min-width: 480px) {
    .loader-9-stacks_in_2203338 {
      font-size: 24px; } }
  @media only screen and (min-width: 768px) {
    .loader-9-stacks_in_2203338 {
      font-size: 32px; } }
  @media only screen and (min-width: 1100px) {
    .loader-9-stacks_in_2203338 {
      font-size: 40px; } }

@-webkit-keyframes loader-9-stacks_in_2203338 {
  0% {
    max-width: 0; } }

@keyframes loader-9-stacks_in_2203338 {
  0% {
    max-width: 0; } }

.loader-10-stacks_in_2203338 {
  width: 200px;
  height: 200px;
  position: relative;
  border-radius: 50%;
  background: url() no-repeat center center;
  background-size: 100% 100%; }
  .loader-10-stacks_in_2203338::after {
    content: '';
    z-index: 2;
    width: 200px;
    height: 200px;
    display: block;
    margin-top: -8px;
    margin-left: -8px;
    position: absolute;
    border-radius: 50%;
    border: 8px solid rgba(241, 241, 241, 1.00);
    -webkit-animation: loader-10-stacks_in_2203338 1.7s infinite linear;
            animation: loader-10-stacks_in_2203338 1.7s infinite linear; }
  .loader-10-stacks_in_2203338-half::after {
    border-right-color: transparent;
    border-bottom-color: transparent; }
  .loader-10-stacks_in_2203338-quarter::after {
    border-right-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent; }
  .loader-10-stacks_in_2203338-third::after {
    border-right-color: transparent; }
  .loader-10-stacks_in_2203338::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    z-index: -1;
    margin-top: -8px;
    margin-left: -8px;
    border-radius: 50%;
    border: 8px solid rgba(0, 0, 0, 1.00); }

@-webkit-keyframes loader-10-stacks_in_2203338 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes loader-10-stacks_in_2203338 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

#stacks_in_2203003 {
	padding: 10px 0px 0px 0px;
}

/* Start Agent-X stack CSS code */.stacks_in_2202512label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_2202512iPhoneContent, .stacks_in_2202512iPadContent, .stacks_in_2202512AndroidContent, .stacks_in_2202512BlackberryContent, .stacks_in_2202512DesktopContent {	display: none;}.stacks_in_2202512label{	display: none;}/* End Agent-X stack CSS code */ .target_stacks_in_2202514{ }.target_stacks_in_2202514.rotate{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;transform-origin:center center}.target_stacks_in_2202514.width-flexible{width:100%}.target_stacks_in_2202514.width-fixed{width:250px}.target_stacks_in_2202514.height-flexible{height:100%}.target_stacks_in_2202514.height-fixed{height:250px}.target_stacks_in_2202514.top_pt{top:5%}.target_stacks_in_2202514.top_px{top:5px}.target_stacks_in_2202514.bottom_pt{bottom:5%}.target_stacks_in_2202514.bottom_px{bottom:5px}.target_stacks_in_2202514.right_pt{right:10%}.target_stacks_in_2202514.right_px{right:10px}.target_stacks_in_2202514.left_pt{left:10%}.target_stacks_in_2202514.left_px{left:10px}  
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202518Calligrapher{			font-size: 110% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.1em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202518Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202518Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202518Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202518Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202518Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202518Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202518Calligrapher h6, .stacks_in_2202518Calligrapher h5, .stacks_in_2202518Calligrapher h4, .stacks_in_2202518Calligrapher h3, .stacks_in_2202518Calligrapher h2, .stacks_in_2202518Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202518Calligrapher, .stacks_in_2202518Calligrapher h1, .stacks_in_2202518Calligrapher h2, .stacks_in_2202518Calligrapher h3, .stacks_in_2202518Calligrapher h4, .stacks_in_2202518Calligrapher h5, .stacks_in_2202518Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202518Calligrapher, .stacks_in_2202518Calligrapher h1, .stacks_in_2202518Calligrapher h2, .stacks_in_2202518Calligrapher h3, .stacks_in_2202518Calligrapher h4, .stacks_in_2202518Calligrapher h5, .stacks_in_2202518Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202518targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202518Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202518Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202518Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202518Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202520 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202522Calligrapher{			font-size: 100% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.1em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202522Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202522Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202522Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202522Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202522Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202522Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202522Calligrapher h6, .stacks_in_2202522Calligrapher h5, .stacks_in_2202522Calligrapher h4, .stacks_in_2202522Calligrapher h3, .stacks_in_2202522Calligrapher h2, .stacks_in_2202522Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202522Calligrapher, .stacks_in_2202522Calligrapher h1, .stacks_in_2202522Calligrapher h2, .stacks_in_2202522Calligrapher h3, .stacks_in_2202522Calligrapher h4, .stacks_in_2202522Calligrapher h5, .stacks_in_2202522Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202522Calligrapher, .stacks_in_2202522Calligrapher h1, .stacks_in_2202522Calligrapher h2, .stacks_in_2202522Calligrapher h3, .stacks_in_2202522Calligrapher h4, .stacks_in_2202522Calligrapher h5, .stacks_in_2202522Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202522targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202522Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202522Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202522Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202522Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202524 {
	padding: 5px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_2202526 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202526 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2202526 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202528Calligrapher{			font-size: 70% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.1em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202528Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202528Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202528Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202528Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202528Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202528Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202528Calligrapher h6, .stacks_in_2202528Calligrapher h5, .stacks_in_2202528Calligrapher h4, .stacks_in_2202528Calligrapher h3, .stacks_in_2202528Calligrapher h2, .stacks_in_2202528Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202528Calligrapher, .stacks_in_2202528Calligrapher h1, .stacks_in_2202528Calligrapher h2, .stacks_in_2202528Calligrapher h3, .stacks_in_2202528Calligrapher h4, .stacks_in_2202528Calligrapher h5, .stacks_in_2202528Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202528Calligrapher, .stacks_in_2202528Calligrapher h1, .stacks_in_2202528Calligrapher h2, .stacks_in_2202528Calligrapher h3, .stacks_in_2202528Calligrapher h4, .stacks_in_2202528Calligrapher h5, .stacks_in_2202528Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202528targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202528Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202528Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202528Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202528Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202530 {
	padding: 15px 0px 5px 0px;
}
 .target_stacks_in_2202534{ }.target_stacks_in_2202534.rotate{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;transform-origin:center center}.target_stacks_in_2202534.width-flexible{width:100%}.target_stacks_in_2202534.width-fixed{width:250px}.target_stacks_in_2202534.height-flexible{height:100%}.target_stacks_in_2202534.height-fixed{height:250px}.target_stacks_in_2202534.top_pt{top:5%}.target_stacks_in_2202534.top_px{top:5px}.target_stacks_in_2202534.bottom_pt{bottom:5%}.target_stacks_in_2202534.bottom_px{bottom:5px}.target_stacks_in_2202534.right_pt{right:10%}.target_stacks_in_2202534.right_px{right:10px}.target_stacks_in_2202534.left_pt{left:10%}.target_stacks_in_2202534.left_px{left:10px}  
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202538Calligrapher{			font-size: 110% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.1em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202538Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202538Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202538Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202538Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202538Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202538Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202538Calligrapher h6, .stacks_in_2202538Calligrapher h5, .stacks_in_2202538Calligrapher h4, .stacks_in_2202538Calligrapher h3, .stacks_in_2202538Calligrapher h2, .stacks_in_2202538Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202538Calligrapher, .stacks_in_2202538Calligrapher h1, .stacks_in_2202538Calligrapher h2, .stacks_in_2202538Calligrapher h3, .stacks_in_2202538Calligrapher h4, .stacks_in_2202538Calligrapher h5, .stacks_in_2202538Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202538Calligrapher, .stacks_in_2202538Calligrapher h1, .stacks_in_2202538Calligrapher h2, .stacks_in_2202538Calligrapher h3, .stacks_in_2202538Calligrapher h4, .stacks_in_2202538Calligrapher h5, .stacks_in_2202538Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202538targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202538Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202538Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202538Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202538Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202540 {
	padding: 30px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202542Calligrapher{			font-size: 100% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.1em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202542Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202542Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202542Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202542Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202542Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202542Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202542Calligrapher h6, .stacks_in_2202542Calligrapher h5, .stacks_in_2202542Calligrapher h4, .stacks_in_2202542Calligrapher h3, .stacks_in_2202542Calligrapher h2, .stacks_in_2202542Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202542Calligrapher, .stacks_in_2202542Calligrapher h1, .stacks_in_2202542Calligrapher h2, .stacks_in_2202542Calligrapher h3, .stacks_in_2202542Calligrapher h4, .stacks_in_2202542Calligrapher h5, .stacks_in_2202542Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202542Calligrapher, .stacks_in_2202542Calligrapher h1, .stacks_in_2202542Calligrapher h2, .stacks_in_2202542Calligrapher h3, .stacks_in_2202542Calligrapher h4, .stacks_in_2202542Calligrapher h5, .stacks_in_2202542Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202542targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202542Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202542Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202542Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202542Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202544 {
	padding: 5px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_2202546 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202546 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2202546 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202548Calligrapher{			font-size: 70% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.1em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202548Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202548Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202548Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202548Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202548Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202548Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202548Calligrapher h6, .stacks_in_2202548Calligrapher h5, .stacks_in_2202548Calligrapher h4, .stacks_in_2202548Calligrapher h3, .stacks_in_2202548Calligrapher h2, .stacks_in_2202548Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202548Calligrapher, .stacks_in_2202548Calligrapher h1, .stacks_in_2202548Calligrapher h2, .stacks_in_2202548Calligrapher h3, .stacks_in_2202548Calligrapher h4, .stacks_in_2202548Calligrapher h5, .stacks_in_2202548Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202548Calligrapher, .stacks_in_2202548Calligrapher h1, .stacks_in_2202548Calligrapher h2, .stacks_in_2202548Calligrapher h3, .stacks_in_2202548Calligrapher h4, .stacks_in_2202548Calligrapher h5, .stacks_in_2202548Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202548targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202548Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202548Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202548Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202548Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202550 {
	padding: 15px 0px 5px 0px;
}
 .target_stacks_in_2202554{ }.target_stacks_in_2202554.rotate{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;transform-origin:center center}.target_stacks_in_2202554.width-flexible{width:100%}.target_stacks_in_2202554.width-fixed{width:250px}.target_stacks_in_2202554.height-flexible{height:100%}.target_stacks_in_2202554.height-fixed{height:250px}.target_stacks_in_2202554.top_pt{top:5%}.target_stacks_in_2202554.top_px{top:5px}.target_stacks_in_2202554.bottom_pt{bottom:5%}.target_stacks_in_2202554.bottom_px{bottom:5px}.target_stacks_in_2202554.right_pt{right:15%}.target_stacks_in_2202554.right_px{right:15px}.target_stacks_in_2202554.left_pt{left:15%}.target_stacks_in_2202554.left_px{left:15px}  
 .target_stacks_in_2202558{ z-index:19; }.target_stacks_in_2202558.rotate{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;transform-origin:center center}.target_stacks_in_2202558.width-flexible{width:100%}.target_stacks_in_2202558.width-fixed{width:250px}.target_stacks_in_2202558.height-flexible{height:100%}.target_stacks_in_2202558.height-fixed{height:250px}.target_stacks_in_2202558.top_pt{top:160%}.target_stacks_in_2202558.top_px{top:160px}.target_stacks_in_2202558.bottom_pt{bottom:160%}.target_stacks_in_2202558.bottom_px{bottom:160px}.target_stacks_in_2202558.right_pt{right:0%}.target_stacks_in_2202558.right_px{right:0px}.target_stacks_in_2202558.left_pt{left:0%}.target_stacks_in_2202558.left_px{left:0px}  
#usefulStackWrapperstacks_in_2202560 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1100px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202560 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 700px) {
	#usefulStackstacks_in_2202560 {
		display: none;
	}
}












#ncp-stacks_in_2202562 img{max-width:100%;height:auto; width:auto;}#ncp-stacks_in_2202562.s2 .c.s1_2 .c-pad,#ncp-stacks_in_2202562.s3 .c.s1_3 .c-pad,#ncp-stacks_in_2202562.s4 .c.s1_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_2202562.s3 .c.s2_3 .c-pad,#ncp-stacks_in_2202562.s4 .c.s2_4 .c-pad,#ncp-stacks_in_2202562.s4 .c.s3_4 .c-pad{padding:0 2px}#ncp-stacks_in_2202562.s2 .c.s2_2 .c-pad,#ncp-stacks_in_2202562.s3 .c.s3_3 .c-pad,#ncp-stacks_in_2202562.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}@media only screen and (max-width:600px){#ncp-stacks_in_2202562 .c{margin:1% 0;padding:4px 0;width:100%}#ncp-stacks_in_2202562 .c:first-child,#ncp-stacks_in_2202562.s4 .c.s1_4,#ncp-stacks_in_2202562.s4 .c.s2_4{padding:0 0 4px}#ncp-stacks_in_2202562 .c:last-child,#ncp-stacks_in_2202562.s4 .c.s3_4,#ncp-stacks_in_2202562.s4 .c.s4_4{padding:4px 0 0}#ncp-stacks_in_2202562.s2 .c-pad,#ncp-stacks_in_2202562.s3 .c-pad{padding:0 !important}#ncp-stacks_in_2202562.s4 .c{width:49.2%}#ncp-stacks_in_2202562.s4 .c.s1_4 .c-pad,#ncp-stacks_in_2202562.s4 .c.s3_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_2202562.s4 .c.s2_4 .c-pad,#ncp-stacks_in_2202562.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}}@media only screen and (max-width:300px){#ncp-stacks_in_2202562 .c .c-pad{padding:0 !important}#ncp-stacks_in_2202562.s4 .c{width:100%}}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202564Calligrapher{			font-size: 115% !important;			color: #E0E0E0 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.1em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202564Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202564Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202564Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202564Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202564Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202564Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202564Calligrapher h6, .stacks_in_2202564Calligrapher h5, .stacks_in_2202564Calligrapher h4, .stacks_in_2202564Calligrapher h3, .stacks_in_2202564Calligrapher h2, .stacks_in_2202564Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202564Calligrapher, .stacks_in_2202564Calligrapher h1, .stacks_in_2202564Calligrapher h2, .stacks_in_2202564Calligrapher h3, .stacks_in_2202564Calligrapher h4, .stacks_in_2202564Calligrapher h5, .stacks_in_2202564Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202564Calligrapher, .stacks_in_2202564Calligrapher h1, .stacks_in_2202564Calligrapher h2, .stacks_in_2202564Calligrapher h3, .stacks_in_2202564Calligrapher h4, .stacks_in_2202564Calligrapher h5, .stacks_in_2202564Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202564targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202564Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202564Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202564Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202564Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202566 {
	padding: 10px 0px 5px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202568Calligrapher{			font-size: 280% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.1em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202568Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202568Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202568Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202568Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202568Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202568Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202568Calligrapher h6, .stacks_in_2202568Calligrapher h5, .stacks_in_2202568Calligrapher h4, .stacks_in_2202568Calligrapher h3, .stacks_in_2202568Calligrapher h2, .stacks_in_2202568Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202568Calligrapher, .stacks_in_2202568Calligrapher h1, .stacks_in_2202568Calligrapher h2, .stacks_in_2202568Calligrapher h3, .stacks_in_2202568Calligrapher h4, .stacks_in_2202568Calligrapher h5, .stacks_in_2202568Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202568Calligrapher, .stacks_in_2202568Calligrapher h1, .stacks_in_2202568Calligrapher h2, .stacks_in_2202568Calligrapher h3, .stacks_in_2202568Calligrapher h4, .stacks_in_2202568Calligrapher h5, .stacks_in_2202568Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202568targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202568Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202568Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202568Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202568Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202570 {
	padding: 40px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202572Calligrapher{			font-size: 260% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.1em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202572Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202572Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202572Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202572Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202572Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202572Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202572Calligrapher h6, .stacks_in_2202572Calligrapher h5, .stacks_in_2202572Calligrapher h4, .stacks_in_2202572Calligrapher h3, .stacks_in_2202572Calligrapher h2, .stacks_in_2202572Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202572Calligrapher, .stacks_in_2202572Calligrapher h1, .stacks_in_2202572Calligrapher h2, .stacks_in_2202572Calligrapher h3, .stacks_in_2202572Calligrapher h4, .stacks_in_2202572Calligrapher h5, .stacks_in_2202572Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202572Calligrapher, .stacks_in_2202572Calligrapher h1, .stacks_in_2202572Calligrapher h2, .stacks_in_2202572Calligrapher h3, .stacks_in_2202572Calligrapher h4, .stacks_in_2202572Calligrapher h5, .stacks_in_2202572Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202572targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202572Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202572Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202572Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202572Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202574 {
	padding: 20px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_2202576 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202576 {
	padding-bottom: 0%;
	padding-top: 4%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2202576 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202578Calligrapher{			font-size: 115% !important;			color: #B3B3B3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.1em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202578Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202578Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202578Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202578Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202578Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202578Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202578Calligrapher h6, .stacks_in_2202578Calligrapher h5, .stacks_in_2202578Calligrapher h4, .stacks_in_2202578Calligrapher h3, .stacks_in_2202578Calligrapher h2, .stacks_in_2202578Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202578Calligrapher, .stacks_in_2202578Calligrapher h1, .stacks_in_2202578Calligrapher h2, .stacks_in_2202578Calligrapher h3, .stacks_in_2202578Calligrapher h4, .stacks_in_2202578Calligrapher h5, .stacks_in_2202578Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202578Calligrapher, .stacks_in_2202578Calligrapher h1, .stacks_in_2202578Calligrapher h2, .stacks_in_2202578Calligrapher h3, .stacks_in_2202578Calligrapher h4, .stacks_in_2202578Calligrapher h5, .stacks_in_2202578Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202578targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202578Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202578Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202578Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202578Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202580 {
	padding: 5px 0px 5px 0px;
}
/* Use this file for your stack CSS code */

/* CSS code only used in Stacks edit mode */



#ContentFader_stacks_in_2202586{
}
#stacks_in_2202588 {
	padding: 70px 0px 0px 0px;
}
#stacks_in_221968 *,
#stacks_in_221968 *:before,
#stacks_in_221968 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * cleanResponse
 * Version: 2.0.4
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns
 */

/***************************************  NO GUTTER **********************************/

.stacks_in_222216.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_222216.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

/****************  3 Non ******************/

.stacks_in_222216.CR3_L.CR3_Goff {
	width: 33%;
}
.stacks_in_222216.CR3_R.CR3_Goff {
	width: 33%;
}
.stacks_in_222216.CR3_RS.CR3_Goff {
	width: 33.2%;
	float: right;
}
.stacks_in_222216.CR3_M.CR3_Goff {
	margin: 0 0% 10px 0%;
	width: 34%;
}

/****************  4 Non ******************/

.stacks_in_222216.CR4.CR4_Goff {
	width: 25%;
}
.stacks_in_222216.CR4_S.CR4_Goff {
	width: 25%;
}
.stacks_in_222216.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
	width: 25.1%;
	float: left;
}
.stacks_in_222216.CR4_LF.CR4_Goff, .stacks_in_222216.CR4_LL.CR4_Goff, .stacks_in_222216.CR4_LF2.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_222216.CR4_LF.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_222216.CR4_LL2.CR4_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
	.stacks_in_222216.CR4_R.CR4_LL2.CR4_S.CR4_Goff{
		float: left;
		width: 25%;
	}
}

/****************  5 Non ******************/

.stacks_in_222216.CR5.CR5_Goff {
	width: 20%;
}
.stacks_in_222216.CR5_S.CR5_Goff {
	width: 20%;
}
.stacks_in_222216.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
	width: 20.3%;
}
.stacks_in_222216.CR5_M.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_222216.CR5_LF.CR5_Goff, .stacks_in_222216.CR5_LL.CR5_Goff, .stacks_in_222216.CR5_RF.CR5_Goff, .stacks_in_222216.CR5_RL.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_222216.cleanRespone5_First.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_222216.cleanRespone5_Last.CR5_Goff {
	margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_222216.CR6.CR6_Goff {
	width: 16.66%;
}
.stacks_in_222216.CR6_S.CR6_Goff {
	width: 16.69%;
}
.stacks_in_222216.CR6_R1.CR6_LL.CR6_S.CR6_Goff, stacks_in_222216.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
	width: 17%;
}
.stacks_in_222216.CR6_M.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_222216.CR6_LF.CR6_Goff,
.stacks_in_222216.CR6_LL.CR6_Goff,
.stacks_in_222216.CR6_RF.CR6_Goff,
.stacks_in_222216.CR6_RL.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_222216.CR6_L1.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_222216.CR6_R1.CR6_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
		.stacks_in_222216.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
		.stacks_in_222216.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
			width: 16.6%;
	}
}

/***************************************  1 COLUMN **********************************/

.stacks_in_222216.cleanResponse1_L {
	width: 100%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_222216.cleanResponse1_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  2 COLUMN **********************************/

.stacks_in_222216.cleanResponse2_L {
	float: left;
	width: 49%;
	margin: 0 0 10px 0;
}
.stacks_in_222216.cleanResponse2_R {
	float: right;
	width: 49%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_222216.cleanResponse2_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.cleanResponse2_R {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.cleanResponse2_L.CR2_Goff {
		width: 100%;
		margin:0 0 10px 0;
	}
	.stacks_in_222216.cleanResponse2_R.CR2_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  3 COLUMN **********************************/

.stacks_in_222216.CR3_L {
	float: left;
	width: 32%;
	margin: 0 0 10px 0;

}
.stacks_in_222216.CR3_R {
	float: right;
	width: 32%;
	margin: 0 0 10px 0;
}
.stacks_in_222216.CR3_M {
	float: left;
	margin: 0 2% 10px 2%;
	width: 32%;
}
@media (max-width: 800px) {
	
	/*  ============ LARGE BOTTOM ================== */
	
	.stacks_in_222216.CR3_L.cleanResp1 {
		float: left;
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.stacks_in_222216.CR3_M.cleanResp1 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_222216.CR3_R.cleanResp1,
	.stacks_in_222216.CR3_RS.cleanResp1 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR3_L.cleanResp1.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR3_M.cleanResp1.CR3_Goff  {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR3_R.cleanResp1.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR3_RS.cleanResp1.CR3_Goff  {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	
	/*  ============ LARGE TOP ================== */
	
	.stacks_in_222216.CR3_L.cleanResp2 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR3_M.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.stacks_in_222216.CR3_R.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_222216.CR3_RS.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_222216.CR3_L.cleanResp2.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR3_M.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR3_R.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR3_RS.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	
}
@media (max-width: 600px){
	.stacks_in_222216.CR3_L,
	.stacks_in_222216.CR3_R.cleanResp2,
	.stacks_in_222216.CR3_R,
	.stacks_in_222216.CR3_R.cleanResp1,
	.stacks_in_222216.CR3_RS.cleanResp2,
	.stacks_in_222216.CR3_RS.cleanResp3 {
		float: left !important;
		width: 100% !important;
		margin: 0 0 10px 0!important;
	}
	.stacks_in_222216.CR3_RS.CR3_Goff {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
	.stacks_in_222216.CR3_M {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
}

/***************************************  4 COLUMN **********************************/

.stacks_in_222216.CR4_L {
	float: left;
}
.stacks_in_222216.CR4_R {
	float: left;
}
.stacks_in_222216.CR4 {
	width: 23.5%;
}
.stacks_in_222216.CR4_S {
	width: 23.6%;
}
.stacks_in_222216.CR4_LF,
.stacks_in_222216.CR4_LL,
.stacks_in_222216.CR4_LF2 {
	margin: 0 1% 10px 1%;
}
.stacks_in_222216.CR4_LF {
	margin: 0 1% 10px 0;
}
.stacks_in_222216.CR4_LL2 {
	margin: 0 0 10px 1%;
	float: right;
}
@media (max-width: 1074px) {
	.stacks_in_222216.CR4_S{
		width: 23.5%;
	}
}
@media (max-width: 800px) {
	.stacks_in_222216.CR4 {
		width: 49%;
	}
	.stacks_in_222216.CR4_S {
		width: 49%;
	}
	.stacks_in_222216.CR4_LF {
		float: left;
		margin: 0 1% 10px 0 ;
	}
	.stacks_in_222216.CR4_LL {
		float: left;
		margin: 0 0 10px 1% ;
	}
	.stacks_in_222216.CR4_LF2 {
		float: left;
		margin: 0 1% 10px 0 ;
	}
	.stacks_in_222216.CR4_LL2 {
		float: left;
		margin: 0 0 10px 1% ;
	}
	.stacks_in_222216.CR4_R {
		float:left;
	}
	.stacks_in_222216.CR4.CR4_Goff {
		width: 50%;
	}
	.stacks_in_222216.CR4_S.CR4_Goff,
	.stacks_in_222216.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 50%;
	}
	.stacks_in_222216.CR4_LF.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_222216.CR4_LL.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_222216.CR4_LF2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_222216.CR4_LL2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
}

@media (max-width: 600px){
	.stacks_in_222216.CR4 {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR4_S {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR4.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR4_S.CR4_Goff,
	.stacks_in_222216.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  5 COLUMN **********************************/

.stacks_in_222216 .CR5_L {
	float: left;
}
.stacks_in_222216 .CR5_R {
	float: left;
}
.stacks_in_222216 .CR5 {
	width: 18.4%;
}
.stacks_in_222216.CR5_S {
	width: 18.4%;
}
.stacks_in_222216.CR5_M {
	float: left;
	margin: 0 1% 10px 1%;
}
.stacks_in_222216.CR5_LF,
.stacks_in_222216.CR5_LL,
.stacks_in_222216.CR5_RF,
.stacks_in_222216.CR5_RL {
	float: left;
	margin: 0 1% 10px 1%;
}
.stacks_in_222216.cleanRespone5_First {
	margin: 0 1% 10px 0;
}
.stacks_in_222216.cleanRespone5_Last {
	float:right;
	margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
	.stacks_in_222216.CR5, .stacks_in_222216.CR5_S {
		width: 49%;
	}
	.stacks_in_222216.CR5_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_222216.CR5_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_222216.CR5.cleanRespone5_Last,
	.stacks_in_222216.CR5_S.cleanRespone5_Last {
		float: left;
		width: 99.8% ;
		margin: 0 auto 10px auto;
	}
	.stacks_in_222216.CR5.CR5_Goff {
		width: 50%;
	}
	.stacks_in_222216.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_222216.CR5_LF.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR5_LL.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.cleanRespone5_Last.CR5_Goff,
	.stacks_in_222216.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
		float: left;
		width: 100% ;
		margin: 0 auto 10px auto;
	}

	/*  ============ LARGE TOP ================== */
	
	.stacks_in_222216.CR5.cleanResp2,
	.stacks_in_222216.CR5_S.cleanResp2 {
		width: 49%;
	}
	.stacks_in_222216.CR5_LF.cleanResp2,
	.stacks_in_222216.cleanRespone5_Last.cleanResp2 {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_222216.CR5_LL.cleanResp2 {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_222216.CR5.cleanRespone5_First.cleanResp2,
	.stacks_in_222216.CR5_S.cleanRespone5_First.cleanResp2 {
		float: left;
		width: 99.8%;
		margin: 0 auto 10px auto;
	}
	.stacks_in_222216.CR5.cleanResp2.CR5_Goff {
		width: 50%;
	}
	.stacks_in_222216.CR5_S.cleanResp2.CR5_Goff,
	.stacks_in_222216.CR5_R1.CR5_LF.cleanRespone5_Last.cleanResp2.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_222216.CR5_LF.cleanResp2.CR5_Goff,
	.stacks_in_222216.cleanRespone5_Last.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
		
	}
	.stacks_in_222216.CR5_LL.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.cleanRespone5_First.cleanResp2.CR5_Goff,
	.stacks_in_222216.cleanRespone5_First.cleanResp2.CR5_S.CR5_Goff {
		float: left;
		width: 100%;
		margin: 0 auto 10px auto;
	}
}
@media (max-width: 600px) {
	.stacks_in_222216.CR5.CR5_LL.cleanResp2,
	.stacks_in_222216.CR5.CR5_LF.cleanResp2,
	.stacks_in_222216.CR5.CR5_LL.cleanResp1,
	.stacks_in_222216.CR5.CR5_LF.cleanResp1,
	.stacks_in_222216.CR5_S.CR5_LL.cleanResp2,
	.stacks_in_222216.CR5_S.CR5_LF.cleanResp2,
	.stacks_in_222216.CR5_S.CR5_LL.cleanResp1,
	.stacks_in_222216.CR5_S.CR5_LF.cleanResp1 {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR5.CR5_Goff,
	.stacks_in_222216.CR5_S.CR5_Goff,
	.stacks_in_222216.CR5_LL.cleanResp2.CR5_Goff {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
}

/***************************************  6 COLUMN **********************************/

.stacks_in_222216.CR6_L,
.stacks_in_222216.CR6_L1 {
	float: left;
}
.stacks_in_222216.CR6_R,
.stacks_in_222216.CR6_R1 {
	float: left;
}
.stacks_in_222216.CR6 {
	width: 15%;
}
.stacks_in_222216.CR6_S {
	width: 15.2%;
}
.stacks_in_222216.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_222216.CR6_LF,
.stacks_in_222216.CR6_LL,
.stacks_in_222216.CR6_RF,
.stacks_in_222216.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_222216.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_222216.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_222216.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_222216.CR6,
	.stacks_in_222216.CR6_S {
		width: 49%;
	}
	.stacks_in_222216.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_222216.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_222216.CR6.CR6_Goff,
	.stacks_in_222216.CR6_S.CR6_Goff,
	.stacks_in_222216.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_222216.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_222216.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_222216.CR6,
	.stacks_in_222216.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_222218Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_222218Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222218Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222218Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222218Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222218Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222218Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222218Calligrapher h6, .stacks_in_222218Calligrapher h5, .stacks_in_222218Calligrapher h4, .stacks_in_222218Calligrapher h3, .stacks_in_222218Calligrapher h2, .stacks_in_222218Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_222218Calligrapher, .stacks_in_222218Calligrapher h1, .stacks_in_222218Calligrapher h2, .stacks_in_222218Calligrapher h3, .stacks_in_222218Calligrapher h4, .stacks_in_222218Calligrapher h5, .stacks_in_222218Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_222218targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_222218Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_222218Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_222218Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_222218Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Agent-X stack CSS code */.stacks_in_2202596label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_2202596iPhoneContent, .stacks_in_2202596iPadContent, .stacks_in_2202596AndroidContent, .stacks_in_2202596BlackberryContent, .stacks_in_2202596DesktopContent {	display: none;}.stacks_in_2202596label{	display: none;}/* End Agent-X stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202598Calligrapher{			font-size: 100% !important;			color: #8C7C56 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.9em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202598Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202598Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202598Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202598Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202598Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202598Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202598Calligrapher h6, .stacks_in_2202598Calligrapher h5, .stacks_in_2202598Calligrapher h4, .stacks_in_2202598Calligrapher h3, .stacks_in_2202598Calligrapher h2, .stacks_in_2202598Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202598Calligrapher, .stacks_in_2202598Calligrapher h1, .stacks_in_2202598Calligrapher h2, .stacks_in_2202598Calligrapher h3, .stacks_in_2202598Calligrapher h4, .stacks_in_2202598Calligrapher h5, .stacks_in_2202598Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202598targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202598Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202598Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202598Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202598Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202604Calligrapher{			font-size: 100% !important;			color: #8C7C56 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.9em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202604Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202604Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202604Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202604Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202604Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202604Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202604Calligrapher h6, .stacks_in_2202604Calligrapher h5, .stacks_in_2202604Calligrapher h4, .stacks_in_2202604Calligrapher h3, .stacks_in_2202604Calligrapher h2, .stacks_in_2202604Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202604Calligrapher, .stacks_in_2202604Calligrapher h1, .stacks_in_2202604Calligrapher h2, .stacks_in_2202604Calligrapher h3, .stacks_in_2202604Calligrapher h4, .stacks_in_2202604Calligrapher h5, .stacks_in_2202604Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202604targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202604Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202604Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202604Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202604Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202610Calligrapher{			font-size: 100% !important;			color: #8C7C56 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.9em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202610Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202610Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202610Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202610Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202610Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202610Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202610Calligrapher h6, .stacks_in_2202610Calligrapher h5, .stacks_in_2202610Calligrapher h4, .stacks_in_2202610Calligrapher h3, .stacks_in_2202610Calligrapher h2, .stacks_in_2202610Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202610Calligrapher, .stacks_in_2202610Calligrapher h1, .stacks_in_2202610Calligrapher h2, .stacks_in_2202610Calligrapher h3, .stacks_in_2202610Calligrapher h4, .stacks_in_2202610Calligrapher h5, .stacks_in_2202610Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202610targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202610Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202610Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202610Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202610Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooMax stack CSS code */#stacks_in_2201647, .stacks_in_2201647MaxWidthContainer{	-webkit-box-sizing: border-box;	-moz-box-sizing: border-box;	box-sizing: border-box;}     .stacks_in_2201647MaxWidthContainer{	    max-width: 960px;	}    .stacks_in_2201647MaxWidthContainer{		margin: 0 auto 0 auto;	}@media only screen and (max-width: 1024px) {	 	    .stacks_in_2201647MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2201647MaxWidthContainer{			margin: 0 auto 0 auto;		}		}@media only screen and (max-width: 480px) {	 	    .stacks_in_2201647MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2201647MaxWidthContainer{			margin: 0 auto 0 auto;		}		}/* End dooMax stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_222232Calligrapher{			font-size: 100% !important;			color: #666666 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_222232Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222232Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222232Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222232Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222232Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222232Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222232Calligrapher h6, .stacks_in_222232Calligrapher h5, .stacks_in_222232Calligrapher h4, .stacks_in_222232Calligrapher h3, .stacks_in_222232Calligrapher h2, .stacks_in_222232Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_222232Calligrapher, .stacks_in_222232Calligrapher h1, .stacks_in_222232Calligrapher h2, .stacks_in_222232Calligrapher h3, .stacks_in_222232Calligrapher h4, .stacks_in_222232Calligrapher h5, .stacks_in_222232Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_222232targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_222232Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_222232Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_222232Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_222232Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_222234 {
	padding: 30px 0px 20px 0px;
}
#usefulStackWrapperstacks_in_2203335 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 200px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203335 {
	padding-bottom: 15%;
	padding-top: 15%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203335 {
		display: none;
	}
}













#stacks_in_2203335 {
	background-color: rgba(255, 255, 255, 1.00);
}
/* Backdrop Figure Which Contains The Filter */
.stacks_in_2203337_warehouse_backdrop { 
    height: auto;
        
}

.stacks_in_2203337_warehouse_image {    
    width: 100% !important;
    height: auto;
    
        display: block;     
        margin-left: auto;
        margin-right: auto;
    
    
    
    
    
}

.stacks_in_2203337_cleanborder {
    padding: 5px;
    /*border: solid 1px #bfbfbf; */
    border: solid 1px #000000;
}

/* fixed filters live here */  
.nashville {
  position: relative;
  -webkit-filter: sepia(0.2) contrast(1.2) brightness(1.05) saturate(1.2);
  filter: sepia(0.2) contrast(1.2) brightness(1.05) saturate(1.2); 
}  
.nashville img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}  
.nashville:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2; 
}  
.nashville:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3; 
}  
.nashville::after {
    background: rgba(0, 70, 150, 0.4);
    mix-blend-mode: lighten;
    display: block;
    width: 100% !important;
    height: auto;
}  
.nashville::before {
    background: rgba(247, 176, 153, 0.56);
    mix-blend-mode: darken;
    display: block;
    width: 100% !important;
    height: auto;
}

.gingham {
    position: relative;
    -webkit-filter: brightness(1.05) hue-rotate(-10deg);
    filter: brightness(1.05) hue-rotate(-10deg); 
}  
.gingham img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}  
.gingham:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}  
.gingham:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}  
.gingham::after {
    background: lavender;
    mix-blend-mode: soft-light;
    width: 100% !important;
    height: auto;
}

.walden {
    position: relative;
    -webkit-filter: brightness(1.1) hue-rotate(-10deg) sepia(0.3) saturate(1.6);
    filter: brightness(1.1) hue-rotate(-10deg) sepia(0.3) saturate(1.6); 
}
  
.walden img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.walden:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.walden:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}
  
.walden::after {
    background: #0044cc;
    mix-blend-mode: screen;
    opacity: .3;
    width: 100% !important;
    height: auto;
}

.xpro2 {
  position: relative;
  -webkit-filter: sepia(0.3);
          filter: sepia(0.3); 
}
  
.xpro2 img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.xpro2:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.xpro2:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.xpro2::after {
    background: -webkit-radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, 0.6) 110%);
    background: radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, 0.6) 110%);
    mix-blend-mode: color-burn;
    width: 100% !important;
    height: auto;
}

.valencia {
    position: relative;
    -webkit-filter: contrast(1.08) brightness(1.08) sepia(0.08);
    filter: contrast(1.08) brightness(1.08) sepia(0.08); }
  
.valencia img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.valencia:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2;
}
  
.valencia:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.valencia::after {
    background: #3a0339;
    mix-blend-mode: exclusion;
    opacity: .5;
    width: 100% !important;
    height: auto;
}

.toaster {
    position: relative;
    -webkit-filter: contrast(1.5) brightness(0.9);
    filter: contrast(1.5) brightness(0.9); }
  
.toaster img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.toaster:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.toaster:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}
  
.toaster::after {
    width: 100% !important;
    height: auto;
    background: -webkit-radial-gradient(circle, #804e0f, #3b003b);
    background: radial-gradient(circle, #804e0f, #3b003b);
    mix-blend-mode: screen; 
}

.slumber {
    position: relative;
    -webkit-filter: saturate(0.66) brightness(1.05);
    filter: saturate(0.66) brightness(1.05); 
}
 .slumber img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
.slumber:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
.slumber:after {
    content: '';
    display: block;
    width: 100% !important;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.slumber::after {
    width: 100% !important;
    height: auto;
    background: rgba(125, 105, 24, 0.5);
    mix-blend-mode: soft-light; 
}
  
  .slumber::before {
    width: 100% !important;
    height: auto;
    background: rgba(69, 41, 12, 0.4);
    mix-blend-mode: lighten; 
}

.rise {
  position: relative;
  -webkit-filter: brightness(1.05) sepia(0.2) contrast(0.9) saturate(0.9);
          filter: brightness(1.05) sepia(0.2) contrast(0.9) saturate(0.9); 
}
  
.rise img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.rise:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.rise:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.rise::after {
    background: -webkit-radial-gradient(circle, rgba(232, 197, 152, 0.8), transparent 90%);
    background: radial-gradient(circle, rgba(232, 197, 152, 0.8), transparent 90%);
    mix-blend-mode: overlay;
    opacity: .6; 
    width: 100% !important;
    height: auto;
}
  
.rise::before {
    background: -webkit-radial-gradient(circle, rgba(236, 205, 169, 0.15) 55%, rgba(50, 30, 7, 0.4));
    background: radial-gradient(circle, rgba(236, 205, 169, 0.15) 55%, rgba(50, 30, 7, 0.4));
    mix-blend-mode: multiply; 
    width: 100% !important;
    height: auto;
}

.reyes {
  position: relative;
  -webkit-filter: sepia(0.22) brightness(1.1) contrast(0.85) saturate(0.75);
          filter: sepia(0.22) brightness(1.1) contrast(0.85) saturate(0.75); }
  
.reyes img {
     width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.reyes:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.reyes:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.reyes::after {
    background: #efcdad;
    mix-blend-mode: soft-light;
    opacity: .5; 
    width: 100% !important;
    height: auto;
}

.perpetua {
  position: relative; 
}
  
.perpetua img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.perpetua:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.perpetua:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.perpetua::after {
    background: -webkit-linear-gradient(top, #005b9a, #e6c13d);
    background: linear-gradient(to bottom, #005b9a, #e6c13d);
    mix-blend-mode: soft-light;
    opacity: .5;
    width: 100% !important;
    height: auto;
}

.moon {
  position: relative;
  -webkit-filter: grayscale(1) contrast(1.1) brightness(1.1);
          filter: grayscale(1) contrast(1.1) brightness(1.1); 
}
  
.moon img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.moon:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.moon:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.moon::before {
    background: #a0a0a0;
    mix-blend-mode: soft-light; 
    width: 100% !important;
    height: auto;
}
  
.moon::after {
    background: #383838;
    mix-blend-mode: lighten;
    width: 100% !important;
    height: auto;
}

.mayfair {
  position: relative;
  -webkit-filter: contrast(1.1) saturate(1.1);
          filter: contrast(1.1) saturate(1.1); 
}
  
.mayfair img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.mayfair:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.mayfair:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.mayfair::after {
    background: -webkit-radial-gradient(40% 40%, circle, rgba(255, 255, 255, 0.8), rgba(255, 200, 200, 0.6), #111111 60%);
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.8), rgba(255, 200, 200, 0.6), #111111 60%);
    mix-blend-mode: overlay;
    opacity: .4;
    width: 100% !important;
    height: auto;
}

.maven {
  position: relative;
  -webkit-filter: sepia(0.25) brightness(0.95) contrast(0.95) saturate(1.5);
          filter: sepia(0.25) brightness(0.95) contrast(0.95) saturate(1.5); 
}
.maven img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.maven:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.maven:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.maven:after {
    background: rgba(3, 230, 26, 0.2);
    mix-blend-mode: hue;
    width: 100% !important;
    height: auto;
}

.lofi {
  position: relative;
  -webkit-filter: saturate(1.1) contrast(1.5);
          filter: saturate(1.1) contrast(1.5); 
}
  
.lofi img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.lofi:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.lofi:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.lofi::after {
    background: -webkit-radial-gradient(circle, transparent 70%, #222222 150%);
    background: radial-gradient(circle, transparent 70%, #222222 150%);
    mix-blend-mode: multiply;
    width: 100% !important;
    height: auto;
}

.lark {
  position: relative;
  -webkit-filter: contrast(0.9);
          filter: contrast(0.9); 
}
  
.lark img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.lark:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.lark:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.lark::after {
    background: rgba(242, 242, 242, 0.8);
    mix-blend-mode: darken;
    width: 100% !important;
    height: auto;
}
  
.lark::before {
    background: #22253f;
    mix-blend-mode: color-dodge;
    width: 100% !important;
    height: auto; 
}

.kelvin {
  position: relative; 
}
  
.kelvin img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.kelvin:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.kelvin:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.kelvin::after {
    background: #b77d21;
    mix-blend-mode: overlay;
    width: 100% !important;
    height: auto;
}
  
.kelvin::before {
    background: #382c34;
    mix-blend-mode: color-dodge;
    width: 100% !important;
    height: auto;
}

.inkwell {
  position: relative;
  -webkit-filter: sepia(0.3) contrast(1.1) brightness(1.1) grayscale(1);
          filter: sepia(0.3) contrast(1.1) brightness(1.1) grayscale(1); 
}
  
.inkwell img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.inkwell:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.inkwell:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}

.hudson {
  position: relative;
  -webkit-filter: brightness(1.2) contrast(0.9) saturate(1.1);
          filter: brightness(1.2) contrast(0.9) saturate(1.1); 
}
  
.hudson img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.hudson:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.hudson:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.hudson::after {
    background: -webkit-radial-gradient(circle, #a6b1ff 50%, #342134);
    background: radial-gradient(circle, #a6b1ff 50%, #342134);
    mix-blend-mode: multiply;
    opacity: .5;
    width: 100% !important;
    height: auto;
}


/* @group Edit Mode Styling */

/*  */

/* @end */#usefulStackWrapperstacks_in_2203302 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 960px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203302 {
	padding-bottom: 13%;
	padding-top: 13%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203302 {
		display: none;
	}
}












#usefulStackWrapperstacks_in_2202300 {
	margin: 0 0 0 auto;
	min-width: 0px;
	max-width: 600px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202300 {
	padding-bottom: 10%;
	padding-top: 10%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2202300 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_221731Calligrapher{			font-size: 180% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.3em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_221731Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221731Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221731Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221731Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221731Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221731Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221731Calligrapher h6, .stacks_in_221731Calligrapher h5, .stacks_in_221731Calligrapher h4, .stacks_in_221731Calligrapher h3, .stacks_in_221731Calligrapher h2, .stacks_in_221731Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_221731Calligrapher, .stacks_in_221731Calligrapher h1, .stacks_in_221731Calligrapher h2, .stacks_in_221731Calligrapher h3, .stacks_in_221731Calligrapher h4, .stacks_in_221731Calligrapher h5, .stacks_in_221731Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_221731targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_221731Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_221731Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_221731Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_221731Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_221733 {
	padding: 50px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_221735Calligrapher{			font-size: 120% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_221735Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221735Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221735Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221735Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221735Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221735Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221735Calligrapher h6, .stacks_in_221735Calligrapher h5, .stacks_in_221735Calligrapher h4, .stacks_in_221735Calligrapher h3, .stacks_in_221735Calligrapher h2, .stacks_in_221735Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_221735Calligrapher, .stacks_in_221735Calligrapher h1, .stacks_in_221735Calligrapher h2, .stacks_in_221735Calligrapher h3, .stacks_in_221735Calligrapher h4, .stacks_in_221735Calligrapher h5, .stacks_in_221735Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_221735targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_221735Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_221735Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_221735Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_221735Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_221737 {
	padding: 10px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_221739Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_221739Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221739Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221739Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221739Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221739Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221739Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_221739Calligrapher h6, .stacks_in_221739Calligrapher h5, .stacks_in_221739Calligrapher h4, .stacks_in_221739Calligrapher h3, .stacks_in_221739Calligrapher h2, .stacks_in_221739Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_221739Calligrapher, .stacks_in_221739Calligrapher h1, .stacks_in_221739Calligrapher h2, .stacks_in_221739Calligrapher h3, .stacks_in_221739Calligrapher h4, .stacks_in_221739Calligrapher h5, .stacks_in_221739Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_221739targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_221739Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_221739Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_221739Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_221739Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_221741 {
	padding: 20px 0px 20px 0px;
}
/* @group Basic Settings */

#listerWrapperstacks_in_2202416 {
	visibility: visible;
}

#listerWrapperstacks_in_2202416 ul {
	padding: 0;
	margin: 0;
	list-style: none;
	padding-left: 20px;
	width: 100%;
}

#listerWrapperstacks_in_2202416 li {
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 0px;
	padding-right: 0;
	margin: 0;
	position: relative;
	text-align: left;
}

#listerWrapperstacks_in_2202416 li ul {
	padding-top: 2px;
}

/* @end */

/* @group Style Overrides */

/*  */

#listerWrapperstacks_in_2202416 li {
	font-size: 12px;
	line-height: 1.50em;
	color: rgba(121, 105, 68, 1.00);
	font-style: normal;
}

#listerWrapperstacks_in_2202416 li h1,
#listerWrapperstacks_in_2202416 li h2,
#listerWrapperstacks_in_2202416 li h3,
#listerWrapperstacks_in_2202416 li h4,
#listerWrapperstacks_in_2202416 li h5,
#listerWrapperstacks_in_2202416 li h6 {
	color: rgba(51, 51, 51, 1.00);
}

#listerWrapperstacks_in_2202416 li a,
#listerWrapperstacks_in_2202416 li a:visited {
	color: rgba(0, 128, 255, 1.00);
}

#listerWrapperstacks_in_2202416 li a:hover,
#listerWrapperstacks_in_2202416 li a:active {
	color: rgba(0, 64, 128, 1.00);
}

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */
#listerWrapperstacks_in_2202416 ul {
	list-style: decimal !important;
}
/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* @group Print styles */
@media print {
	#listerWrapperstacks_in_2202416 ul {
		list-style: disc;
	}
	
	#listerWrapperstacks_in_2202416 .list-item-content {
		display: block;
	}
	
	#listerWrapperstacks_in_2202416 .bullet-point {
		display: none;
	}
}

/* @end */

/*  *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202372Calligrapher{			font-size: 70% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.7em !important;			font-variant: normal !important;			letter-spacing: 1px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202372Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202372Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202372Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202372Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202372Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202372Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202372Calligrapher h6, .stacks_in_2202372Calligrapher h5, .stacks_in_2202372Calligrapher h4, .stacks_in_2202372Calligrapher h3, .stacks_in_2202372Calligrapher h2, .stacks_in_2202372Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2202372Calligrapher, .stacks_in_2202372Calligrapher h1, .stacks_in_2202372Calligrapher h2, .stacks_in_2202372Calligrapher h3, .stacks_in_2202372Calligrapher h4, .stacks_in_2202372Calligrapher h5, .stacks_in_2202372Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202372targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202372Calligrapher a:link{			color: #8C7C56 !important;			text-decoration: none !important;		}				.stacks_in_2202372Calligrapher a:visited{			color: #8C7C56 !important;		}				.stacks_in_2202372Calligrapher a:active{			color: #8C7C56 !important;		}				.stacks_in_2202372Calligrapher a:hover{			color: #4C4C4C !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202373 {
	padding: 5px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_2202441 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202441 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 4%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2202441 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202368Calligrapher{			font-size: 90% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202368Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202368Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202368Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202368Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202368Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202368Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202368Calligrapher h6, .stacks_in_2202368Calligrapher h5, .stacks_in_2202368Calligrapher h4, .stacks_in_2202368Calligrapher h3, .stacks_in_2202368Calligrapher h2, .stacks_in_2202368Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202368Calligrapher, .stacks_in_2202368Calligrapher h1, .stacks_in_2202368Calligrapher h2, .stacks_in_2202368Calligrapher h3, .stacks_in_2202368Calligrapher h4, .stacks_in_2202368Calligrapher h5, .stacks_in_2202368Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202368targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202368Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202368Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202368Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202368Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202369 {
	padding: 5px 0px 20px 0px;
}
/* @group Basic Settings */

#listerWrapperstacks_in_2202423 {
	visibility: visible;
}

#listerWrapperstacks_in_2202423 ul {
	padding: 0;
	margin: 0;
	list-style: none;
	padding-left: 20px;
	width: 100%;
}

#listerWrapperstacks_in_2202423 li {
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 0px;
	padding-right: 0;
	margin: 0;
	position: relative;
	text-align: left;
}

#listerWrapperstacks_in_2202423 li ul {
	padding-top: 2px;
}

/* @end */

/* @group Style Overrides */

/*  */

#listerWrapperstacks_in_2202423 li {
	font-size: 12px;
	line-height: 1.50em;
	color: rgba(121, 105, 68, 1.00);
	font-style: normal;
}

#listerWrapperstacks_in_2202423 li h1,
#listerWrapperstacks_in_2202423 li h2,
#listerWrapperstacks_in_2202423 li h3,
#listerWrapperstacks_in_2202423 li h4,
#listerWrapperstacks_in_2202423 li h5,
#listerWrapperstacks_in_2202423 li h6 {
	color: rgba(51, 51, 51, 1.00);
}

#listerWrapperstacks_in_2202423 li a,
#listerWrapperstacks_in_2202423 li a:visited {
	color: rgba(0, 128, 255, 1.00);
}

#listerWrapperstacks_in_2202423 li a:hover,
#listerWrapperstacks_in_2202423 li a:active {
	color: rgba(0, 64, 128, 1.00);
}

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */
#listerWrapperstacks_in_2202423 ul {
	list-style: decimal !important;
}
/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* @group Print styles */
@media print {
	#listerWrapperstacks_in_2202423 ul {
		list-style: disc;
	}
	
	#listerWrapperstacks_in_2202423 .list-item-content {
		display: block;
	}
	
	#listerWrapperstacks_in_2202423 .bullet-point {
		display: none;
	}
}

/* @end */

/*  *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202376Calligrapher{			font-size: 70% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.7em !important;			font-variant: normal !important;			letter-spacing: 1px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202376Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202376Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202376Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202376Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202376Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202376Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202376Calligrapher h6, .stacks_in_2202376Calligrapher h5, .stacks_in_2202376Calligrapher h4, .stacks_in_2202376Calligrapher h3, .stacks_in_2202376Calligrapher h2, .stacks_in_2202376Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2202376Calligrapher, .stacks_in_2202376Calligrapher h1, .stacks_in_2202376Calligrapher h2, .stacks_in_2202376Calligrapher h3, .stacks_in_2202376Calligrapher h4, .stacks_in_2202376Calligrapher h5, .stacks_in_2202376Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202376targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202376Calligrapher a:link{			color: #8C7C56 !important;			text-decoration: none !important;		}				.stacks_in_2202376Calligrapher a:visited{			color: #8C7C56 !important;		}				.stacks_in_2202376Calligrapher a:active{			color: #8C7C56 !important;		}				.stacks_in_2202376Calligrapher a:hover{			color: #4C4C4C !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202377 {
	padding: 5px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_2202443 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202443 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 3%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2202443 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202380Calligrapher{			font-size: 90% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202380Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202380Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202380Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202380Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202380Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202380Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202380Calligrapher h6, .stacks_in_2202380Calligrapher h5, .stacks_in_2202380Calligrapher h4, .stacks_in_2202380Calligrapher h3, .stacks_in_2202380Calligrapher h2, .stacks_in_2202380Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202380Calligrapher, .stacks_in_2202380Calligrapher h1, .stacks_in_2202380Calligrapher h2, .stacks_in_2202380Calligrapher h3, .stacks_in_2202380Calligrapher h4, .stacks_in_2202380Calligrapher h5, .stacks_in_2202380Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202380targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202380Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202380Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202380Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202380Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202381 {
	padding: 5px 0px 20px 0px;
}
/* @group Basic Settings */

#listerWrapperstacks_in_2202436 {
	visibility: visible;
}

#listerWrapperstacks_in_2202436 ul {
	padding: 0;
	margin: 0;
	list-style: none;
	padding-left: 20px;
	width: 100%;
}

#listerWrapperstacks_in_2202436 li {
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 0px;
	padding-right: 0;
	margin: 0;
	position: relative;
	text-align: left;
}

#listerWrapperstacks_in_2202436 li ul {
	padding-top: 2px;
}

/* @end */

/* @group Style Overrides */

/*  */

#listerWrapperstacks_in_2202436 li {
	font-size: 12px;
	line-height: 1.50em;
	color: rgba(121, 105, 68, 1.00);
	font-style: normal;
}

#listerWrapperstacks_in_2202436 li h1,
#listerWrapperstacks_in_2202436 li h2,
#listerWrapperstacks_in_2202436 li h3,
#listerWrapperstacks_in_2202436 li h4,
#listerWrapperstacks_in_2202436 li h5,
#listerWrapperstacks_in_2202436 li h6 {
	color: rgba(51, 51, 51, 1.00);
}

#listerWrapperstacks_in_2202436 li a,
#listerWrapperstacks_in_2202436 li a:visited {
	color: rgba(0, 128, 255, 1.00);
}

#listerWrapperstacks_in_2202436 li a:hover,
#listerWrapperstacks_in_2202436 li a:active {
	color: rgba(0, 64, 128, 1.00);
}

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */
#listerWrapperstacks_in_2202436 ul {
	list-style: decimal !important;
}
/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* @group Print styles */
@media print {
	#listerWrapperstacks_in_2202436 ul {
		list-style: disc;
	}
	
	#listerWrapperstacks_in_2202436 .list-item-content {
		display: block;
	}
	
	#listerWrapperstacks_in_2202436 .bullet-point {
		display: none;
	}
}

/* @end */

/*  *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202384Calligrapher{			font-size: 70% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.7em !important;			font-variant: normal !important;			letter-spacing: 1px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202384Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202384Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202384Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202384Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202384Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202384Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202384Calligrapher h6, .stacks_in_2202384Calligrapher h5, .stacks_in_2202384Calligrapher h4, .stacks_in_2202384Calligrapher h3, .stacks_in_2202384Calligrapher h2, .stacks_in_2202384Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2202384Calligrapher, .stacks_in_2202384Calligrapher h1, .stacks_in_2202384Calligrapher h2, .stacks_in_2202384Calligrapher h3, .stacks_in_2202384Calligrapher h4, .stacks_in_2202384Calligrapher h5, .stacks_in_2202384Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202384targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202384Calligrapher a:link{			color: #8C7C56 !important;			text-decoration: none !important;		}				.stacks_in_2202384Calligrapher a:visited{			color: #8C7C56 !important;		}				.stacks_in_2202384Calligrapher a:active{			color: #8C7C56 !important;		}				.stacks_in_2202384Calligrapher a:hover{			color: #4C4C4C !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202385 {
	padding: 5px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_2202445 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202445 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 3%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2202445 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202446Calligrapher{			font-size: 90% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202446Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202446Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202446Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202446Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202446Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202446Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202446Calligrapher h6, .stacks_in_2202446Calligrapher h5, .stacks_in_2202446Calligrapher h4, .stacks_in_2202446Calligrapher h3, .stacks_in_2202446Calligrapher h2, .stacks_in_2202446Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202446Calligrapher, .stacks_in_2202446Calligrapher h1, .stacks_in_2202446Calligrapher h2, .stacks_in_2202446Calligrapher h3, .stacks_in_2202446Calligrapher h4, .stacks_in_2202446Calligrapher h5, .stacks_in_2202446Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202446targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202446Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202446Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202446Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202446Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202447 {
	padding: 5px 0px 20px 0px;
}
/* @group Basic Settings */

#listerWrapperstacks_in_2202438 {
	visibility: visible;
}

#listerWrapperstacks_in_2202438 ul {
	padding: 0;
	margin: 0;
	list-style: none;
	padding-left: 20px;
	width: 100%;
}

#listerWrapperstacks_in_2202438 li {
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 0px;
	padding-right: 0;
	margin: 0;
	position: relative;
	text-align: left;
}

#listerWrapperstacks_in_2202438 li ul {
	padding-top: 2px;
}

/* @end */

/* @group Style Overrides */

/*  */

#listerWrapperstacks_in_2202438 li {
	font-size: 12px;
	line-height: 1.50em;
	color: rgba(121, 105, 68, 1.00);
	font-style: normal;
}

#listerWrapperstacks_in_2202438 li h1,
#listerWrapperstacks_in_2202438 li h2,
#listerWrapperstacks_in_2202438 li h3,
#listerWrapperstacks_in_2202438 li h4,
#listerWrapperstacks_in_2202438 li h5,
#listerWrapperstacks_in_2202438 li h6 {
	color: rgba(51, 51, 51, 1.00);
}

#listerWrapperstacks_in_2202438 li a,
#listerWrapperstacks_in_2202438 li a:visited {
	color: rgba(0, 128, 255, 1.00);
}

#listerWrapperstacks_in_2202438 li a:hover,
#listerWrapperstacks_in_2202438 li a:active {
	color: rgba(0, 64, 128, 1.00);
}

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */
#listerWrapperstacks_in_2202438 ul {
	list-style: decimal !important;
}
/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* @group Print styles */
@media print {
	#listerWrapperstacks_in_2202438 ul {
		list-style: disc;
	}
	
	#listerWrapperstacks_in_2202438 .list-item-content {
		display: block;
	}
	
	#listerWrapperstacks_in_2202438 .bullet-point {
		display: none;
	}
}

/* @end */

/*  *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202392Calligrapher{			font-size: 70% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.7em !important;			font-variant: normal !important;			letter-spacing: 1px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202392Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202392Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202392Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202392Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202392Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202392Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202392Calligrapher h6, .stacks_in_2202392Calligrapher h5, .stacks_in_2202392Calligrapher h4, .stacks_in_2202392Calligrapher h3, .stacks_in_2202392Calligrapher h2, .stacks_in_2202392Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2202392Calligrapher, .stacks_in_2202392Calligrapher h1, .stacks_in_2202392Calligrapher h2, .stacks_in_2202392Calligrapher h3, .stacks_in_2202392Calligrapher h4, .stacks_in_2202392Calligrapher h5, .stacks_in_2202392Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202392targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202392Calligrapher a:link{			color: #8C7C56 !important;			text-decoration: none !important;		}				.stacks_in_2202392Calligrapher a:visited{			color: #8C7C56 !important;		}				.stacks_in_2202392Calligrapher a:active{			color: #8C7C56 !important;		}				.stacks_in_2202392Calligrapher a:hover{			color: #4C4C4C !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202393 {
	padding: 5px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_2202451 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202451 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 3%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2202451 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202452Calligrapher{			font-size: 90% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202452Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202452Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202452Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202452Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202452Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202452Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202452Calligrapher h6, .stacks_in_2202452Calligrapher h5, .stacks_in_2202452Calligrapher h4, .stacks_in_2202452Calligrapher h3, .stacks_in_2202452Calligrapher h2, .stacks_in_2202452Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202452Calligrapher, .stacks_in_2202452Calligrapher h1, .stacks_in_2202452Calligrapher h2, .stacks_in_2202452Calligrapher h3, .stacks_in_2202452Calligrapher h4, .stacks_in_2202452Calligrapher h5, .stacks_in_2202452Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202452targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202452Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202452Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202452Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202452Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202453 {
	padding: 5px 0px 20px 0px;
}
/* @group Basic Settings */

#listerWrapperstacks_in_2202434 {
	visibility: visible;
}

#listerWrapperstacks_in_2202434 ul {
	padding: 0;
	margin: 0;
	list-style: none;
	padding-left: 20px;
	width: 100%;
}

#listerWrapperstacks_in_2202434 li {
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 0px;
	padding-right: 0;
	margin: 0;
	position: relative;
	text-align: left;
}

#listerWrapperstacks_in_2202434 li ul {
	padding-top: 2px;
}

/* @end */

/* @group Style Overrides */

/*  */

#listerWrapperstacks_in_2202434 li {
	font-size: 12px;
	line-height: 1.50em;
	color: rgba(121, 105, 68, 1.00);
	font-style: normal;
}

#listerWrapperstacks_in_2202434 li h1,
#listerWrapperstacks_in_2202434 li h2,
#listerWrapperstacks_in_2202434 li h3,
#listerWrapperstacks_in_2202434 li h4,
#listerWrapperstacks_in_2202434 li h5,
#listerWrapperstacks_in_2202434 li h6 {
	color: rgba(51, 51, 51, 1.00);
}

#listerWrapperstacks_in_2202434 li a,
#listerWrapperstacks_in_2202434 li a:visited {
	color: rgba(0, 128, 255, 1.00);
}

#listerWrapperstacks_in_2202434 li a:hover,
#listerWrapperstacks_in_2202434 li a:active {
	color: rgba(0, 64, 128, 1.00);
}

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */
#listerWrapperstacks_in_2202434 ul {
	list-style: decimal !important;
}
/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* @group Print styles */
@media print {
	#listerWrapperstacks_in_2202434 ul {
		list-style: disc;
	}
	
	#listerWrapperstacks_in_2202434 .list-item-content {
		display: block;
	}
	
	#listerWrapperstacks_in_2202434 .bullet-point {
		display: none;
	}
}

/* @end */

/*  *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202400Calligrapher{			font-size: 70% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.7em !important;			font-variant: normal !important;			letter-spacing: 1px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202400Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202400Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202400Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202400Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202400Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202400Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202400Calligrapher h6, .stacks_in_2202400Calligrapher h5, .stacks_in_2202400Calligrapher h4, .stacks_in_2202400Calligrapher h3, .stacks_in_2202400Calligrapher h2, .stacks_in_2202400Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2202400Calligrapher, .stacks_in_2202400Calligrapher h1, .stacks_in_2202400Calligrapher h2, .stacks_in_2202400Calligrapher h3, .stacks_in_2202400Calligrapher h4, .stacks_in_2202400Calligrapher h5, .stacks_in_2202400Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202400targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202400Calligrapher a:link{			color: #8C7C56 !important;			text-decoration: none !important;		}				.stacks_in_2202400Calligrapher a:visited{			color: #8C7C56 !important;		}				.stacks_in_2202400Calligrapher a:active{			color: #8C7C56 !important;		}				.stacks_in_2202400Calligrapher a:hover{			color: #4C4C4C !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202401 {
	padding: 5px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_2202457 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202457 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 3%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2202457 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202458Calligrapher{			font-size: 90% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202458Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202458Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202458Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202458Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202458Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202458Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202458Calligrapher h6, .stacks_in_2202458Calligrapher h5, .stacks_in_2202458Calligrapher h4, .stacks_in_2202458Calligrapher h3, .stacks_in_2202458Calligrapher h2, .stacks_in_2202458Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202458Calligrapher, .stacks_in_2202458Calligrapher h1, .stacks_in_2202458Calligrapher h2, .stacks_in_2202458Calligrapher h3, .stacks_in_2202458Calligrapher h4, .stacks_in_2202458Calligrapher h5, .stacks_in_2202458Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202458targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202458Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202458Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202458Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202458Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202459 {
	padding: 5px 0px 20px 0px;
}
/* @group Basic Settings */

#listerWrapperstacks_in_2202432 {
	visibility: visible;
}

#listerWrapperstacks_in_2202432 ul {
	padding: 0;
	margin: 0;
	list-style: none;
	padding-left: 20px;
	width: 100%;
}

#listerWrapperstacks_in_2202432 li {
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 0px;
	padding-right: 0;
	margin: 0;
	position: relative;
	text-align: left;
}

#listerWrapperstacks_in_2202432 li ul {
	padding-top: 2px;
}

/* @end */

/* @group Style Overrides */

/*  */

#listerWrapperstacks_in_2202432 li {
	font-size: 12px;
	line-height: 1.50em;
	color: rgba(121, 105, 68, 1.00);
	font-style: normal;
}

#listerWrapperstacks_in_2202432 li h1,
#listerWrapperstacks_in_2202432 li h2,
#listerWrapperstacks_in_2202432 li h3,
#listerWrapperstacks_in_2202432 li h4,
#listerWrapperstacks_in_2202432 li h5,
#listerWrapperstacks_in_2202432 li h6 {
	color: rgba(51, 51, 51, 1.00);
}

#listerWrapperstacks_in_2202432 li a,
#listerWrapperstacks_in_2202432 li a:visited {
	color: rgba(0, 128, 255, 1.00);
}

#listerWrapperstacks_in_2202432 li a:hover,
#listerWrapperstacks_in_2202432 li a:active {
	color: rgba(0, 64, 128, 1.00);
}

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */
#listerWrapperstacks_in_2202432 ul {
	list-style: decimal !important;
}
/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* @group Print styles */
@media print {
	#listerWrapperstacks_in_2202432 ul {
		list-style: disc;
	}
	
	#listerWrapperstacks_in_2202432 .list-item-content {
		display: block;
	}
	
	#listerWrapperstacks_in_2202432 .bullet-point {
		display: none;
	}
}

/* @end */

/*  *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202408Calligrapher{			font-size: 80% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.7em !important;			font-variant: normal !important;			letter-spacing: 1px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202408Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202408Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202408Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202408Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202408Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202408Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202408Calligrapher h6, .stacks_in_2202408Calligrapher h5, .stacks_in_2202408Calligrapher h4, .stacks_in_2202408Calligrapher h3, .stacks_in_2202408Calligrapher h2, .stacks_in_2202408Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2202408Calligrapher, .stacks_in_2202408Calligrapher h1, .stacks_in_2202408Calligrapher h2, .stacks_in_2202408Calligrapher h3, .stacks_in_2202408Calligrapher h4, .stacks_in_2202408Calligrapher h5, .stacks_in_2202408Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202408targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202408Calligrapher a:link{			color: #8C7C56 !important;			text-decoration: none !important;		}				.stacks_in_2202408Calligrapher a:visited{			color: #8C7C56 !important;		}				.stacks_in_2202408Calligrapher a:active{			color: #8C7C56 !important;		}				.stacks_in_2202408Calligrapher a:hover{			color: #4C4C4C !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202409 {
	padding: 5px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_2202463 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202463 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 3%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2202463 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202464Calligrapher{			font-size: 90% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202464Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202464Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202464Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202464Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202464Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202464Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202464Calligrapher h6, .stacks_in_2202464Calligrapher h5, .stacks_in_2202464Calligrapher h4, .stacks_in_2202464Calligrapher h3, .stacks_in_2202464Calligrapher h2, .stacks_in_2202464Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202464Calligrapher, .stacks_in_2202464Calligrapher h1, .stacks_in_2202464Calligrapher h2, .stacks_in_2202464Calligrapher h3, .stacks_in_2202464Calligrapher h4, .stacks_in_2202464Calligrapher h5, .stacks_in_2202464Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202464targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202464Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202464Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202464Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202464Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202465 {
	padding: 5px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_226271Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_226271Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_226271Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_226271Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_226271Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_226271Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_226271Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_226271Calligrapher h6, .stacks_in_226271Calligrapher h5, .stacks_in_226271Calligrapher h4, .stacks_in_226271Calligrapher h3, .stacks_in_226271Calligrapher h2, .stacks_in_226271Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_226271Calligrapher, .stacks_in_226271Calligrapher h1, .stacks_in_226271Calligrapher h2, .stacks_in_226271Calligrapher h3, .stacks_in_226271Calligrapher h4, .stacks_in_226271Calligrapher h5, .stacks_in_226271Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_226271targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_226271Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_226271Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_226271Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_226271Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202346 {
	padding: 20px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202352Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202352Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202352Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202352Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202352Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202352Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202352Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202352Calligrapher h6, .stacks_in_2202352Calligrapher h5, .stacks_in_2202352Calligrapher h4, .stacks_in_2202352Calligrapher h3, .stacks_in_2202352Calligrapher h2, .stacks_in_2202352Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202352Calligrapher, .stacks_in_2202352Calligrapher h1, .stacks_in_2202352Calligrapher h2, .stacks_in_2202352Calligrapher h3, .stacks_in_2202352Calligrapher h4, .stacks_in_2202352Calligrapher h5, .stacks_in_2202352Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202352targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202352Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202352Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202352Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202352Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202353 {
	padding: 30px 0px 60px 0px;
}
/* Start Agent-X stack CSS code */.stacks_in_2202616label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_2202616iPhoneContent, .stacks_in_2202616iPadContent, .stacks_in_2202616AndroidContent, .stacks_in_2202616BlackberryContent, .stacks_in_2202616DesktopContent {	display: none;}.stacks_in_2202616label{	display: none;}/* End Agent-X stack CSS code */#usefulStackWrapperstacks_in_2203139 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 600px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203139 {
	padding-bottom: 0%;
	padding-top: 10%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203139 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203141Calligrapher{			font-size: 180% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.3em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203141Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203141Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203141Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203141Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203141Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203141Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203141Calligrapher h6, .stacks_in_2203141Calligrapher h5, .stacks_in_2203141Calligrapher h4, .stacks_in_2203141Calligrapher h3, .stacks_in_2203141Calligrapher h2, .stacks_in_2203141Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203141Calligrapher, .stacks_in_2203141Calligrapher h1, .stacks_in_2203141Calligrapher h2, .stacks_in_2203141Calligrapher h3, .stacks_in_2203141Calligrapher h4, .stacks_in_2203141Calligrapher h5, .stacks_in_2203141Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203141targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203141Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203141Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203141Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203141Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203143 {
	padding: 40px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203145Calligrapher{			font-size: 120% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203145Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203145Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203145Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203145Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203145Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203145Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203145Calligrapher h6, .stacks_in_2203145Calligrapher h5, .stacks_in_2203145Calligrapher h4, .stacks_in_2203145Calligrapher h3, .stacks_in_2203145Calligrapher h2, .stacks_in_2203145Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203145Calligrapher, .stacks_in_2203145Calligrapher h1, .stacks_in_2203145Calligrapher h2, .stacks_in_2203145Calligrapher h3, .stacks_in_2203145Calligrapher h4, .stacks_in_2203145Calligrapher h5, .stacks_in_2203145Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203145targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203145Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203145Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203145Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203145Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203147 {
	padding: 10px 0px 20px 0px;
}
#usefulStackWrapperstacks_in_2203149 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203149 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203149 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203151Calligrapher{			font-size: 90% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203151Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203151Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203151Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203151Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203151Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203151Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203151Calligrapher h6, .stacks_in_2203151Calligrapher h5, .stacks_in_2203151Calligrapher h4, .stacks_in_2203151Calligrapher h3, .stacks_in_2203151Calligrapher h2, .stacks_in_2203151Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203151Calligrapher, .stacks_in_2203151Calligrapher h1, .stacks_in_2203151Calligrapher h2, .stacks_in_2203151Calligrapher h3, .stacks_in_2203151Calligrapher h4, .stacks_in_2203151Calligrapher h5, .stacks_in_2203151Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203151targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203151Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203151Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203151Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203151Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203153 {
	padding: 5px 0px 40px 0px;
}
#usefulStackWrapperstacks_in_2203155 {
	margin: 0 auto 0 0;
	min-width: 0px;
	max-width: 400px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203155 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203155 {
		display: none;
	}
}












/* Start roundedbox css */

/* general styles edit and preview mode */
#stacks_in_2203157 .stacks_in_2203157bgimagestack
{
	position:relative;
	min-height:10px;
	padding:0px;
	border: 1px solid #FFFFFF;
	-webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    
	-webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}





#stacks_in_2203157 .stacks_in_2203157bgimage
{
	display:none;
}




/* end roundedbox css */
#stacks_in_2203157 {
	background-color: rgba(204, 204, 204, 1.00);
}
/* Backdrop Figure Which Contains The Filter */
.stacks_in_2203160_warehouse_backdrop { 
    height: auto;
        
}

.stacks_in_2203160_warehouse_image {    
    width: 100% !important;
    height: auto;
    
        display: block;     
        margin-left: auto;
        margin-right: auto;
    
    
    
    
    
}

.stacks_in_2203160_cleanborder {
    padding: 5px;
    /*border: solid 1px #bfbfbf; */
    border: solid 1px #000000;
}

/* fixed filters live here */  
.nashville {
  position: relative;
  -webkit-filter: sepia(0.2) contrast(1.2) brightness(1.05) saturate(1.2);
  filter: sepia(0.2) contrast(1.2) brightness(1.05) saturate(1.2); 
}  
.nashville img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}  
.nashville:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2; 
}  
.nashville:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3; 
}  
.nashville::after {
    background: rgba(0, 70, 150, 0.4);
    mix-blend-mode: lighten;
    display: block;
    width: 100% !important;
    height: auto;
}  
.nashville::before {
    background: rgba(247, 176, 153, 0.56);
    mix-blend-mode: darken;
    display: block;
    width: 100% !important;
    height: auto;
}

.gingham {
    position: relative;
    -webkit-filter: brightness(1.05) hue-rotate(-10deg);
    filter: brightness(1.05) hue-rotate(-10deg); 
}  
.gingham img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}  
.gingham:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}  
.gingham:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}  
.gingham::after {
    background: lavender;
    mix-blend-mode: soft-light;
    width: 100% !important;
    height: auto;
}

.walden {
    position: relative;
    -webkit-filter: brightness(1.1) hue-rotate(-10deg) sepia(0.3) saturate(1.6);
    filter: brightness(1.1) hue-rotate(-10deg) sepia(0.3) saturate(1.6); 
}
  
.walden img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.walden:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.walden:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}
  
.walden::after {
    background: #0044cc;
    mix-blend-mode: screen;
    opacity: .3;
    width: 100% !important;
    height: auto;
}

.xpro2 {
  position: relative;
  -webkit-filter: sepia(0.3);
          filter: sepia(0.3); 
}
  
.xpro2 img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.xpro2:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.xpro2:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.xpro2::after {
    background: -webkit-radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, 0.6) 110%);
    background: radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, 0.6) 110%);
    mix-blend-mode: color-burn;
    width: 100% !important;
    height: auto;
}

.valencia {
    position: relative;
    -webkit-filter: contrast(1.08) brightness(1.08) sepia(0.08);
    filter: contrast(1.08) brightness(1.08) sepia(0.08); }
  
.valencia img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.valencia:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2;
}
  
.valencia:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.valencia::after {
    background: #3a0339;
    mix-blend-mode: exclusion;
    opacity: .5;
    width: 100% !important;
    height: auto;
}

.toaster {
    position: relative;
    -webkit-filter: contrast(1.5) brightness(0.9);
    filter: contrast(1.5) brightness(0.9); }
  
.toaster img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.toaster:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.toaster:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}
  
.toaster::after {
    width: 100% !important;
    height: auto;
    background: -webkit-radial-gradient(circle, #804e0f, #3b003b);
    background: radial-gradient(circle, #804e0f, #3b003b);
    mix-blend-mode: screen; 
}

.slumber {
    position: relative;
    -webkit-filter: saturate(0.66) brightness(1.05);
    filter: saturate(0.66) brightness(1.05); 
}
 .slumber img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
.slumber:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
.slumber:after {
    content: '';
    display: block;
    width: 100% !important;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.slumber::after {
    width: 100% !important;
    height: auto;
    background: rgba(125, 105, 24, 0.5);
    mix-blend-mode: soft-light; 
}
  
  .slumber::before {
    width: 100% !important;
    height: auto;
    background: rgba(69, 41, 12, 0.4);
    mix-blend-mode: lighten; 
}

.rise {
  position: relative;
  -webkit-filter: brightness(1.05) sepia(0.2) contrast(0.9) saturate(0.9);
          filter: brightness(1.05) sepia(0.2) contrast(0.9) saturate(0.9); 
}
  
.rise img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.rise:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.rise:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.rise::after {
    background: -webkit-radial-gradient(circle, rgba(232, 197, 152, 0.8), transparent 90%);
    background: radial-gradient(circle, rgba(232, 197, 152, 0.8), transparent 90%);
    mix-blend-mode: overlay;
    opacity: .6; 
    width: 100% !important;
    height: auto;
}
  
.rise::before {
    background: -webkit-radial-gradient(circle, rgba(236, 205, 169, 0.15) 55%, rgba(50, 30, 7, 0.4));
    background: radial-gradient(circle, rgba(236, 205, 169, 0.15) 55%, rgba(50, 30, 7, 0.4));
    mix-blend-mode: multiply; 
    width: 100% !important;
    height: auto;
}

.reyes {
  position: relative;
  -webkit-filter: sepia(0.22) brightness(1.1) contrast(0.85) saturate(0.75);
          filter: sepia(0.22) brightness(1.1) contrast(0.85) saturate(0.75); }
  
.reyes img {
     width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.reyes:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.reyes:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.reyes::after {
    background: #efcdad;
    mix-blend-mode: soft-light;
    opacity: .5; 
    width: 100% !important;
    height: auto;
}

.perpetua {
  position: relative; 
}
  
.perpetua img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.perpetua:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.perpetua:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.perpetua::after {
    background: -webkit-linear-gradient(top, #005b9a, #e6c13d);
    background: linear-gradient(to bottom, #005b9a, #e6c13d);
    mix-blend-mode: soft-light;
    opacity: .5;
    width: 100% !important;
    height: auto;
}

.moon {
  position: relative;
  -webkit-filter: grayscale(1) contrast(1.1) brightness(1.1);
          filter: grayscale(1) contrast(1.1) brightness(1.1); 
}
  
.moon img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.moon:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.moon:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.moon::before {
    background: #a0a0a0;
    mix-blend-mode: soft-light; 
    width: 100% !important;
    height: auto;
}
  
.moon::after {
    background: #383838;
    mix-blend-mode: lighten;
    width: 100% !important;
    height: auto;
}

.mayfair {
  position: relative;
  -webkit-filter: contrast(1.1) saturate(1.1);
          filter: contrast(1.1) saturate(1.1); 
}
  
.mayfair img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.mayfair:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.mayfair:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.mayfair::after {
    background: -webkit-radial-gradient(40% 40%, circle, rgba(255, 255, 255, 0.8), rgba(255, 200, 200, 0.6), #111111 60%);
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.8), rgba(255, 200, 200, 0.6), #111111 60%);
    mix-blend-mode: overlay;
    opacity: .4;
    width: 100% !important;
    height: auto;
}

.maven {
  position: relative;
  -webkit-filter: sepia(0.25) brightness(0.95) contrast(0.95) saturate(1.5);
          filter: sepia(0.25) brightness(0.95) contrast(0.95) saturate(1.5); 
}
.maven img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.maven:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.maven:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.maven:after {
    background: rgba(3, 230, 26, 0.2);
    mix-blend-mode: hue;
    width: 100% !important;
    height: auto;
}

.lofi {
  position: relative;
  -webkit-filter: saturate(1.1) contrast(1.5);
          filter: saturate(1.1) contrast(1.5); 
}
  
.lofi img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.lofi:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.lofi:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.lofi::after {
    background: -webkit-radial-gradient(circle, transparent 70%, #222222 150%);
    background: radial-gradient(circle, transparent 70%, #222222 150%);
    mix-blend-mode: multiply;
    width: 100% !important;
    height: auto;
}

.lark {
  position: relative;
  -webkit-filter: contrast(0.9);
          filter: contrast(0.9); 
}
  
.lark img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.lark:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.lark:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.lark::after {
    background: rgba(242, 242, 242, 0.8);
    mix-blend-mode: darken;
    width: 100% !important;
    height: auto;
}
  
.lark::before {
    background: #22253f;
    mix-blend-mode: color-dodge;
    width: 100% !important;
    height: auto; 
}

.kelvin {
  position: relative; 
}
  
.kelvin img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.kelvin:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.kelvin:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.kelvin::after {
    background: #b77d21;
    mix-blend-mode: overlay;
    width: 100% !important;
    height: auto;
}
  
.kelvin::before {
    background: #382c34;
    mix-blend-mode: color-dodge;
    width: 100% !important;
    height: auto;
}

.inkwell {
  position: relative;
  -webkit-filter: sepia(0.3) contrast(1.1) brightness(1.1) grayscale(1);
          filter: sepia(0.3) contrast(1.1) brightness(1.1) grayscale(1); 
}
  
.inkwell img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.inkwell:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.inkwell:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}

.hudson {
  position: relative;
  -webkit-filter: brightness(1.2) contrast(0.9) saturate(1.1);
          filter: brightness(1.2) contrast(0.9) saturate(1.1); 
}
  
.hudson img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.hudson:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.hudson:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.hudson::after {
    background: -webkit-radial-gradient(circle, #a6b1ff 50%, #342134);
    background: radial-gradient(circle, #a6b1ff 50%, #342134);
    mix-blend-mode: multiply;
    opacity: .5;
    width: 100% !important;
    height: auto;
}


#usefulStackWrapperstacks_in_2203161 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203161 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 7%;
	padding-right: 7%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203161 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203165Calligrapher{			font-size: 83% !important;			color: #666666 !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203165Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203165Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203165Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203165Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203165Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203165Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203165Calligrapher h6, .stacks_in_2203165Calligrapher h5, .stacks_in_2203165Calligrapher h4, .stacks_in_2203165Calligrapher h3, .stacks_in_2203165Calligrapher h2, .stacks_in_2203165Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203165Calligrapher, .stacks_in_2203165Calligrapher h1, .stacks_in_2203165Calligrapher h2, .stacks_in_2203165Calligrapher h3, .stacks_in_2203165Calligrapher h4, .stacks_in_2203165Calligrapher h5, .stacks_in_2203165Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203165targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203165Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203165Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203165Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203165Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203167 {
	padding: 20px 0px 0px 0px;
}

#stacks_in_2203168 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203169Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.5em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203169Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203169Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203169Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203169Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203169Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203169Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203169Calligrapher h6, .stacks_in_2203169Calligrapher h5, .stacks_in_2203169Calligrapher h4, .stacks_in_2203169Calligrapher h3, .stacks_in_2203169Calligrapher h2, .stacks_in_2203169Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203169Calligrapher, .stacks_in_2203169Calligrapher h1, .stacks_in_2203169Calligrapher h2, .stacks_in_2203169Calligrapher h3, .stacks_in_2203169Calligrapher h4, .stacks_in_2203169Calligrapher h5, .stacks_in_2203169Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203169targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203169Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203169Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203169Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203169Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203171 {
	padding: 10px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203173Calligrapher{			font-size: 80% !important;			color: #7F7F7F !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.5em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203173Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203173Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203173Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203173Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203173Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203173Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203173Calligrapher h6, .stacks_in_2203173Calligrapher h5, .stacks_in_2203173Calligrapher h4, .stacks_in_2203173Calligrapher h3, .stacks_in_2203173Calligrapher h2, .stacks_in_2203173Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203173Calligrapher, .stacks_in_2203173Calligrapher h1, .stacks_in_2203173Calligrapher h2, .stacks_in_2203173Calligrapher h3, .stacks_in_2203173Calligrapher h4, .stacks_in_2203173Calligrapher h5, .stacks_in_2203173Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203173targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203173Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203173Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203173Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203173Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203175 {
	padding: 20px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203177Calligrapher{			font-size: 70% !important;			color: #4C4C4C !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203177Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203177Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203177Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203177Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203177Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203177Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203177Calligrapher h6, .stacks_in_2203177Calligrapher h5, .stacks_in_2203177Calligrapher h4, .stacks_in_2203177Calligrapher h3, .stacks_in_2203177Calligrapher h2, .stacks_in_2203177Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203177Calligrapher, .stacks_in_2203177Calligrapher h1, .stacks_in_2203177Calligrapher h2, .stacks_in_2203177Calligrapher h3, .stacks_in_2203177Calligrapher h4, .stacks_in_2203177Calligrapher h5, .stacks_in_2203177Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203177targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203177Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203177Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203177Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203177Calligrapher a:hover{			color: #E6E6E6 !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203179 {
	padding: 15px 0px 30px 0px;
}
#usefulStackWrapperstacks_in_2203181 {
	margin: 0 auto 0 0;
	min-width: 0px;
	max-width: 400px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203181 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203181 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203183Calligrapher{			font-size: 80% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203183Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203183Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203183Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203183Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203183Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203183Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203183Calligrapher h6, .stacks_in_2203183Calligrapher h5, .stacks_in_2203183Calligrapher h4, .stacks_in_2203183Calligrapher h3, .stacks_in_2203183Calligrapher h2, .stacks_in_2203183Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203183Calligrapher, .stacks_in_2203183Calligrapher h1, .stacks_in_2203183Calligrapher h2, .stacks_in_2203183Calligrapher h3, .stacks_in_2203183Calligrapher h4, .stacks_in_2203183Calligrapher h5, .stacks_in_2203183Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203183targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203183Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203183Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203183Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203183Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203185 {
	padding: 20px 0px 80px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202620Calligrapher{			font-size: 180% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202620Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202620Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202620Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202620Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202620Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202620Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202620Calligrapher h6, .stacks_in_2202620Calligrapher h5, .stacks_in_2202620Calligrapher h4, .stacks_in_2202620Calligrapher h3, .stacks_in_2202620Calligrapher h2, .stacks_in_2202620Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202620Calligrapher, .stacks_in_2202620Calligrapher h1, .stacks_in_2202620Calligrapher h2, .stacks_in_2202620Calligrapher h3, .stacks_in_2202620Calligrapher h4, .stacks_in_2202620Calligrapher h5, .stacks_in_2202620Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202620Calligrapher, .stacks_in_2202620Calligrapher h1, .stacks_in_2202620Calligrapher h2, .stacks_in_2202620Calligrapher h3, .stacks_in_2202620Calligrapher h4, .stacks_in_2202620Calligrapher h5, .stacks_in_2202620Calligrapher h6{	text-shadow: 1px 1px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202620targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202620Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202620Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202620Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202620Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202622 {
	padding: 30px 0px 0px 0px;
}
/*
 * cleanResponse
 * Version: 2.0.4
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns
 */

/***************************************  NO GUTTER **********************************/

.stacks_in_2202624.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202624.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

/****************  3 Non ******************/

.stacks_in_2202624.CR3_L.CR3_Goff {
	width: 33%;
}
.stacks_in_2202624.CR3_R.CR3_Goff {
	width: 33%;
}
.stacks_in_2202624.CR3_RS.CR3_Goff {
	width: 33.2%;
	float: right;
}
.stacks_in_2202624.CR3_M.CR3_Goff {
	margin: 0 0% 10px 0%;
	width: 34%;
}

/****************  4 Non ******************/

.stacks_in_2202624.CR4.CR4_Goff {
	width: 25%;
}
.stacks_in_2202624.CR4_S.CR4_Goff {
	width: 25%;
}
.stacks_in_2202624.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
	width: 25.1%;
	float: left;
}
.stacks_in_2202624.CR4_LF.CR4_Goff, .stacks_in_2202624.CR4_LL.CR4_Goff, .stacks_in_2202624.CR4_LF2.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202624.CR4_LF.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202624.CR4_LL2.CR4_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
	.stacks_in_2202624.CR4_R.CR4_LL2.CR4_S.CR4_Goff{
		float: left;
		width: 25%;
	}
}

/****************  5 Non ******************/

.stacks_in_2202624.CR5.CR5_Goff {
	width: 20%;
}
.stacks_in_2202624.CR5_S.CR5_Goff {
	width: 20%;
}
.stacks_in_2202624.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
	width: 20.3%;
}
.stacks_in_2202624.CR5_M.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202624.CR5_LF.CR5_Goff, .stacks_in_2202624.CR5_LL.CR5_Goff, .stacks_in_2202624.CR5_RF.CR5_Goff, .stacks_in_2202624.CR5_RL.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202624.cleanRespone5_First.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202624.cleanRespone5_Last.CR5_Goff {
	margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_2202624.CR6.CR6_Goff {
	width: 16.66%;
}
.stacks_in_2202624.CR6_S.CR6_Goff {
	width: 16.69%;
}
.stacks_in_2202624.CR6_R1.CR6_LL.CR6_S.CR6_Goff, stacks_in_2202624.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
	width: 17%;
}
.stacks_in_2202624.CR6_M.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202624.CR6_LF.CR6_Goff,
.stacks_in_2202624.CR6_LL.CR6_Goff,
.stacks_in_2202624.CR6_RF.CR6_Goff,
.stacks_in_2202624.CR6_RL.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202624.CR6_L1.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202624.CR6_R1.CR6_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
		.stacks_in_2202624.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
		.stacks_in_2202624.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
			width: 16.6%;
	}
}

/***************************************  1 COLUMN **********************************/

.stacks_in_2202624.cleanResponse1_L {
	width: 100%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202624.cleanResponse1_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2202624.cleanResponse2_L {
	float: left;
	width: 48%;
	margin: 0 0 10px 0;
}
.stacks_in_2202624.cleanResponse2_R {
	float: right;
	width: 48%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202624.cleanResponse2_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.cleanResponse2_R {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.cleanResponse2_L.CR2_Goff {
		width: 100%;
		margin:0 0 10px 0;
	}
	.stacks_in_2202624.cleanResponse2_R.CR2_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2202624.CR3_L {
	float: left;
	width: 31%;
	margin: 0 0 10px 0;

}
.stacks_in_2202624.CR3_R {
	float: right;
	width: 31%;
	margin: 0 0 10px 0;
}
.stacks_in_2202624.CR3_M {
	float: left;
	margin: 0 4% 10px 4%;
	width: 30%;
}
@media (max-width: 800px) {
	
	/*  ============ LARGE BOTTOM ================== */
	
	.stacks_in_2202624.CR3_L.cleanResp1 {
		float: left;
		width: 48%;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202624.CR3_M.cleanResp1 {
		float: left;
		width: 48%;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202624.CR3_R.cleanResp1,
	.stacks_in_2202624.CR3_RS.cleanResp1 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR3_L.cleanResp1.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR3_M.cleanResp1.CR3_Goff  {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR3_R.cleanResp1.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR3_RS.cleanResp1.CR3_Goff  {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	
	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202624.CR3_L.cleanResp2 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR3_M.cleanResp2 {
		float: left;
		width: 48%;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202624.CR3_R.cleanResp2 {
		float: left;
		width: 48%;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202624.CR3_RS.cleanResp2 {
		float: left;
		width: 48%;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202624.CR3_L.cleanResp2.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR3_M.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR3_R.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR3_RS.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	
}
@media (max-width: 600px){
	.stacks_in_2202624.CR3_L,
	.stacks_in_2202624.CR3_R.cleanResp2,
	.stacks_in_2202624.CR3_R,
	.stacks_in_2202624.CR3_R.cleanResp1,
	.stacks_in_2202624.CR3_RS.cleanResp2,
	.stacks_in_2202624.CR3_RS.cleanResp3 {
		float: left !important;
		width: 100% !important;
		margin: 0 0 10px 0!important;
	}
	.stacks_in_2202624.CR3_RS.CR3_Goff {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
	.stacks_in_2202624.CR3_M {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2202624.CR4_L {
	float: left;
}
.stacks_in_2202624.CR4_R {
	float: left;
}
.stacks_in_2202624.CR4 {
	width: 21.5%;
}
.stacks_in_2202624.CR4_S {
	width: 21.6%;
}
.stacks_in_2202624.CR4_LF,
.stacks_in_2202624.CR4_LL,
.stacks_in_2202624.CR4_LF2 {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202624.CR4_LF {
	margin: 0 2% 10px 0;
}
.stacks_in_2202624.CR4_LL2 {
	margin: 0 0 10px 2%;
	float: right;
}
@media (max-width: 1074px) {
	.stacks_in_2202624.CR4_S{
		width: 21.5%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202624.CR4 {
		width: 47%;
	}
	.stacks_in_2202624.CR4_S {
		width: 47%;
	}
	.stacks_in_2202624.CR4_LF {
		float: left;
		margin: 0 2% 10px 0 ;
	}
	.stacks_in_2202624.CR4_LL {
		float: left;
		margin: 0 0 10px 2% ;
	}
	.stacks_in_2202624.CR4_LF2 {
		float: left;
		margin: 0 2% 10px 0 ;
	}
	.stacks_in_2202624.CR4_LL2 {
		float: left;
		margin: 0 0 10px 2% ;
	}
	.stacks_in_2202624.CR4_R {
		float:left;
	}
	.stacks_in_2202624.CR4.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202624.CR4_S.CR4_Goff,
	.stacks_in_2202624.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202624.CR4_LF.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202624.CR4_LL.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202624.CR4_LF2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202624.CR4_LL2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
}

@media (max-width: 600px){
	.stacks_in_2202624.CR4 {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR4_S {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR4.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR4_S.CR4_Goff,
	.stacks_in_2202624.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2202624 .CR5_L {
	float: left;
}
.stacks_in_2202624 .CR5_R {
	float: left;
}
.stacks_in_2202624 .CR5 {
	width: 16.4%;
}
.stacks_in_2202624.CR5_S {
	width: 16.4%;
}
.stacks_in_2202624.CR5_M {
	float: left;
	margin: 0 2% 10px 2%;
}
.stacks_in_2202624.CR5_LF,
.stacks_in_2202624.CR5_LL,
.stacks_in_2202624.CR5_RF,
.stacks_in_2202624.CR5_RL {
	float: left;
	margin: 0 2% 10px 2%;
}
.stacks_in_2202624.cleanRespone5_First {
	margin: 0 2% 10px 0;
}
.stacks_in_2202624.cleanRespone5_Last {
	float:right;
	margin: 0 0 10px 2%;
}
@media (max-width: 800px) {
	.stacks_in_2202624.CR5, .stacks_in_2202624.CR5_S {
		width: 47%;
	}
	.stacks_in_2202624.CR5_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202624.CR5_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202624.CR5.cleanRespone5_Last,
	.stacks_in_2202624.CR5_S.cleanRespone5_Last {
		float: left;
		width: 99.8% ;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202624.CR5.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202624.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202624.CR5_LF.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR5_LL.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.cleanRespone5_Last.CR5_Goff,
	.stacks_in_2202624.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
		float: left;
		width: 100% ;
		margin: 0 auto 10px auto;
	}

	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202624.CR5.cleanResp2,
	.stacks_in_2202624.CR5_S.cleanResp2 {
		width: 47%;
	}
	.stacks_in_2202624.CR5_LF.cleanResp2,
	.stacks_in_2202624.cleanRespone5_Last.cleanResp2 {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202624.CR5_LL.cleanResp2 {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202624.CR5.cleanRespone5_First.cleanResp2,
	.stacks_in_2202624.CR5_S.cleanRespone5_First.cleanResp2 {
		float: left;
		width: 99.8%;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202624.CR5.cleanResp2.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202624.CR5_S.cleanResp2.CR5_Goff,
	.stacks_in_2202624.CR5_R1.CR5_LF.cleanRespone5_Last.cleanResp2.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202624.CR5_LF.cleanResp2.CR5_Goff,
	.stacks_in_2202624.cleanRespone5_Last.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
		
	}
	.stacks_in_2202624.CR5_LL.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.cleanRespone5_First.cleanResp2.CR5_Goff,
	.stacks_in_2202624.cleanRespone5_First.cleanResp2.CR5_S.CR5_Goff {
		float: left;
		width: 100%;
		margin: 0 auto 10px auto;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202624.CR5.CR5_LL.cleanResp2,
	.stacks_in_2202624.CR5.CR5_LF.cleanResp2,
	.stacks_in_2202624.CR5.CR5_LL.cleanResp1,
	.stacks_in_2202624.CR5.CR5_LF.cleanResp1,
	.stacks_in_2202624.CR5_S.CR5_LL.cleanResp2,
	.stacks_in_2202624.CR5_S.CR5_LF.cleanResp2,
	.stacks_in_2202624.CR5_S.CR5_LL.cleanResp1,
	.stacks_in_2202624.CR5_S.CR5_LF.cleanResp1 {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR5.CR5_Goff,
	.stacks_in_2202624.CR5_S.CR5_Goff,
	.stacks_in_2202624.CR5_LL.cleanResp2.CR5_Goff {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2202624.CR6_L,
.stacks_in_2202624.CR6_L1 {
	float: left;
}
.stacks_in_2202624.CR6_R,
.stacks_in_2202624.CR6_R1 {
	float: left;
}
.stacks_in_2202624.CR6 {
	width: 13%;
}
.stacks_in_2202624.CR6_S {
	width: 13.2%;
}
.stacks_in_2202624.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202624.CR6_LF,
.stacks_in_2202624.CR6_LL,
.stacks_in_2202624.CR6_RF,
.stacks_in_2202624.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202624.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202624.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202624.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202624.CR6,
	.stacks_in_2202624.CR6_S {
		width: 47%;
	}
	.stacks_in_2202624.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202624.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202624.CR6.CR6_Goff,
	.stacks_in_2202624.CR6_S.CR6_Goff,
	.stacks_in_2202624.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202624.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202624.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202624.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202624.CR6,
	.stacks_in_2202624.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202624 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202626Calligrapher{			font-size: 130% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202626Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202626Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202626Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202626Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202626Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202626Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202626Calligrapher h6, .stacks_in_2202626Calligrapher h5, .stacks_in_2202626Calligrapher h4, .stacks_in_2202626Calligrapher h3, .stacks_in_2202626Calligrapher h2, .stacks_in_2202626Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202626Calligrapher, .stacks_in_2202626Calligrapher h1, .stacks_in_2202626Calligrapher h2, .stacks_in_2202626Calligrapher h3, .stacks_in_2202626Calligrapher h4, .stacks_in_2202626Calligrapher h5, .stacks_in_2202626Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202626Calligrapher, .stacks_in_2202626Calligrapher h1, .stacks_in_2202626Calligrapher h2, .stacks_in_2202626Calligrapher h3, .stacks_in_2202626Calligrapher h4, .stacks_in_2202626Calligrapher h5, .stacks_in_2202626Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202626targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202626Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202626Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202626Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202626Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202630Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202630Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202630Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202630Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202630Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202630Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202630Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202630Calligrapher h6, .stacks_in_2202630Calligrapher h5, .stacks_in_2202630Calligrapher h4, .stacks_in_2202630Calligrapher h3, .stacks_in_2202630Calligrapher h2, .stacks_in_2202630Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202630Calligrapher, .stacks_in_2202630Calligrapher h1, .stacks_in_2202630Calligrapher h2, .stacks_in_2202630Calligrapher h3, .stacks_in_2202630Calligrapher h4, .stacks_in_2202630Calligrapher h5, .stacks_in_2202630Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202630Calligrapher, .stacks_in_2202630Calligrapher h1, .stacks_in_2202630Calligrapher h2, .stacks_in_2202630Calligrapher h3, .stacks_in_2202630Calligrapher h4, .stacks_in_2202630Calligrapher h5, .stacks_in_2202630Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202630targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202630Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202630Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202630Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202630Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202635Calligrapher{			font-size: 130% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202635Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202635Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202635Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202635Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202635Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202635Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202635Calligrapher h6, .stacks_in_2202635Calligrapher h5, .stacks_in_2202635Calligrapher h4, .stacks_in_2202635Calligrapher h3, .stacks_in_2202635Calligrapher h2, .stacks_in_2202635Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202635Calligrapher, .stacks_in_2202635Calligrapher h1, .stacks_in_2202635Calligrapher h2, .stacks_in_2202635Calligrapher h3, .stacks_in_2202635Calligrapher h4, .stacks_in_2202635Calligrapher h5, .stacks_in_2202635Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202635Calligrapher, .stacks_in_2202635Calligrapher h1, .stacks_in_2202635Calligrapher h2, .stacks_in_2202635Calligrapher h3, .stacks_in_2202635Calligrapher h4, .stacks_in_2202635Calligrapher h5, .stacks_in_2202635Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202635targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202635Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202635Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202635Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202635Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202639Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202639Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202639Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202639Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202639Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202639Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202639Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202639Calligrapher h6, .stacks_in_2202639Calligrapher h5, .stacks_in_2202639Calligrapher h4, .stacks_in_2202639Calligrapher h3, .stacks_in_2202639Calligrapher h2, .stacks_in_2202639Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202639Calligrapher, .stacks_in_2202639Calligrapher h1, .stacks_in_2202639Calligrapher h2, .stacks_in_2202639Calligrapher h3, .stacks_in_2202639Calligrapher h4, .stacks_in_2202639Calligrapher h5, .stacks_in_2202639Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202639Calligrapher, .stacks_in_2202639Calligrapher h1, .stacks_in_2202639Calligrapher h2, .stacks_in_2202639Calligrapher h3, .stacks_in_2202639Calligrapher h4, .stacks_in_2202639Calligrapher h5, .stacks_in_2202639Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202639targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202639Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202639Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202639Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202639Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202643Calligrapher{			font-size: 130% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202643Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202643Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202643Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202643Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202643Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202643Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202643Calligrapher h6, .stacks_in_2202643Calligrapher h5, .stacks_in_2202643Calligrapher h4, .stacks_in_2202643Calligrapher h3, .stacks_in_2202643Calligrapher h2, .stacks_in_2202643Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202643Calligrapher, .stacks_in_2202643Calligrapher h1, .stacks_in_2202643Calligrapher h2, .stacks_in_2202643Calligrapher h3, .stacks_in_2202643Calligrapher h4, .stacks_in_2202643Calligrapher h5, .stacks_in_2202643Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202643Calligrapher, .stacks_in_2202643Calligrapher h1, .stacks_in_2202643Calligrapher h2, .stacks_in_2202643Calligrapher h3, .stacks_in_2202643Calligrapher h4, .stacks_in_2202643Calligrapher h5, .stacks_in_2202643Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202643targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202643Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202643Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202643Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202643Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202643 {
	padding: 20px 0px 0px 0px;
}
/*
 * cleanResponse
 * Version: 2.0.4
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns
 */

/***************************************  NO GUTTER **********************************/

.stacks_in_2202647.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202647.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

/****************  3 Non ******************/

.stacks_in_2202647.CR3_L.CR3_Goff {
	width: 33%;
}
.stacks_in_2202647.CR3_R.CR3_Goff {
	width: 33%;
}
.stacks_in_2202647.CR3_RS.CR3_Goff {
	width: 33.2%;
	float: right;
}
.stacks_in_2202647.CR3_M.CR3_Goff {
	margin: 0 0% 10px 0%;
	width: 34%;
}

/****************  4 Non ******************/

.stacks_in_2202647.CR4.CR4_Goff {
	width: 25%;
}
.stacks_in_2202647.CR4_S.CR4_Goff {
	width: 25%;
}
.stacks_in_2202647.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
	width: 25.1%;
	float: left;
}
.stacks_in_2202647.CR4_LF.CR4_Goff, .stacks_in_2202647.CR4_LL.CR4_Goff, .stacks_in_2202647.CR4_LF2.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202647.CR4_LF.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202647.CR4_LL2.CR4_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
	.stacks_in_2202647.CR4_R.CR4_LL2.CR4_S.CR4_Goff{
		float: left;
		width: 25%;
	}
}

/****************  5 Non ******************/

.stacks_in_2202647.CR5.CR5_Goff {
	width: 20%;
}
.stacks_in_2202647.CR5_S.CR5_Goff {
	width: 20%;
}
.stacks_in_2202647.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
	width: 20.3%;
}
.stacks_in_2202647.CR5_M.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202647.CR5_LF.CR5_Goff, .stacks_in_2202647.CR5_LL.CR5_Goff, .stacks_in_2202647.CR5_RF.CR5_Goff, .stacks_in_2202647.CR5_RL.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202647.cleanRespone5_First.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202647.cleanRespone5_Last.CR5_Goff {
	margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_2202647.CR6.CR6_Goff {
	width: 16.66%;
}
.stacks_in_2202647.CR6_S.CR6_Goff {
	width: 16.69%;
}
.stacks_in_2202647.CR6_R1.CR6_LL.CR6_S.CR6_Goff, stacks_in_2202647.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
	width: 17%;
}
.stacks_in_2202647.CR6_M.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202647.CR6_LF.CR6_Goff,
.stacks_in_2202647.CR6_LL.CR6_Goff,
.stacks_in_2202647.CR6_RF.CR6_Goff,
.stacks_in_2202647.CR6_RL.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202647.CR6_L1.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202647.CR6_R1.CR6_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
		.stacks_in_2202647.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
		.stacks_in_2202647.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
			width: 16.6%;
	}
}

/***************************************  1 COLUMN **********************************/

.stacks_in_2202647.cleanResponse1_L {
	width: 100%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202647.cleanResponse1_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2202647.cleanResponse2_L {
	float: left;
	width: 49%;
	margin: 0 0 10px 0;
}
.stacks_in_2202647.cleanResponse2_R {
	float: right;
	width: 49%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202647.cleanResponse2_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.cleanResponse2_R {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.cleanResponse2_L.CR2_Goff {
		width: 100%;
		margin:0 0 10px 0;
	}
	.stacks_in_2202647.cleanResponse2_R.CR2_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2202647.CR3_L {
	float: left;
	width: 32%;
	margin: 0 0 10px 0;

}
.stacks_in_2202647.CR3_R {
	float: right;
	width: 32%;
	margin: 0 0 10px 0;
}
.stacks_in_2202647.CR3_M {
	float: left;
	margin: 0 2% 10px 2%;
	width: 32%;
}
@media (max-width: 800px) {
	
	/*  ============ LARGE BOTTOM ================== */
	
	.stacks_in_2202647.CR3_L.cleanResp1 {
		float: left;
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202647.CR3_M.cleanResp1 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202647.CR3_R.cleanResp1,
	.stacks_in_2202647.CR3_RS.cleanResp1 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR3_L.cleanResp1.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR3_M.cleanResp1.CR3_Goff  {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR3_R.cleanResp1.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR3_RS.cleanResp1.CR3_Goff  {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	
	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202647.CR3_L.cleanResp2 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR3_M.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202647.CR3_R.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202647.CR3_RS.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202647.CR3_L.cleanResp2.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR3_M.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR3_R.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR3_RS.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	
}
@media (max-width: 600px){
	.stacks_in_2202647.CR3_L,
	.stacks_in_2202647.CR3_R.cleanResp2,
	.stacks_in_2202647.CR3_R,
	.stacks_in_2202647.CR3_R.cleanResp1,
	.stacks_in_2202647.CR3_RS.cleanResp2,
	.stacks_in_2202647.CR3_RS.cleanResp3 {
		float: left !important;
		width: 100% !important;
		margin: 0 0 10px 0!important;
	}
	.stacks_in_2202647.CR3_RS.CR3_Goff {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
	.stacks_in_2202647.CR3_M {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2202647.CR4_L {
	float: left;
}
.stacks_in_2202647.CR4_R {
	float: left;
}
.stacks_in_2202647.CR4 {
	width: 23.5%;
}
.stacks_in_2202647.CR4_S {
	width: 23.6%;
}
.stacks_in_2202647.CR4_LF,
.stacks_in_2202647.CR4_LL,
.stacks_in_2202647.CR4_LF2 {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202647.CR4_LF {
	margin: 0 1% 10px 0;
}
.stacks_in_2202647.CR4_LL2 {
	margin: 0 0 10px 1%;
	float: right;
}
@media (max-width: 1074px) {
	.stacks_in_2202647.CR4_S{
		width: 23.5%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202647.CR4 {
		width: 49%;
	}
	.stacks_in_2202647.CR4_S {
		width: 49%;
	}
	.stacks_in_2202647.CR4_LF {
		float: left;
		margin: 0 1% 10px 0 ;
	}
	.stacks_in_2202647.CR4_LL {
		float: left;
		margin: 0 0 10px 1% ;
	}
	.stacks_in_2202647.CR4_LF2 {
		float: left;
		margin: 0 1% 10px 0 ;
	}
	.stacks_in_2202647.CR4_LL2 {
		float: left;
		margin: 0 0 10px 1% ;
	}
	.stacks_in_2202647.CR4_R {
		float:left;
	}
	.stacks_in_2202647.CR4.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202647.CR4_S.CR4_Goff,
	.stacks_in_2202647.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202647.CR4_LF.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202647.CR4_LL.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202647.CR4_LF2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202647.CR4_LL2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
}

@media (max-width: 600px){
	.stacks_in_2202647.CR4 {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR4_S {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR4.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR4_S.CR4_Goff,
	.stacks_in_2202647.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2202647 .CR5_L {
	float: left;
}
.stacks_in_2202647 .CR5_R {
	float: left;
}
.stacks_in_2202647 .CR5 {
	width: 18.4%;
}
.stacks_in_2202647.CR5_S {
	width: 18.4%;
}
.stacks_in_2202647.CR5_M {
	float: left;
	margin: 0 1% 10px 1%;
}
.stacks_in_2202647.CR5_LF,
.stacks_in_2202647.CR5_LL,
.stacks_in_2202647.CR5_RF,
.stacks_in_2202647.CR5_RL {
	float: left;
	margin: 0 1% 10px 1%;
}
.stacks_in_2202647.cleanRespone5_First {
	margin: 0 1% 10px 0;
}
.stacks_in_2202647.cleanRespone5_Last {
	float:right;
	margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
	.stacks_in_2202647.CR5, .stacks_in_2202647.CR5_S {
		width: 49%;
	}
	.stacks_in_2202647.CR5_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202647.CR5_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202647.CR5.cleanRespone5_Last,
	.stacks_in_2202647.CR5_S.cleanRespone5_Last {
		float: left;
		width: 99.8% ;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202647.CR5.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202647.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202647.CR5_LF.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR5_LL.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.cleanRespone5_Last.CR5_Goff,
	.stacks_in_2202647.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
		float: left;
		width: 100% ;
		margin: 0 auto 10px auto;
	}

	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202647.CR5.cleanResp2,
	.stacks_in_2202647.CR5_S.cleanResp2 {
		width: 49%;
	}
	.stacks_in_2202647.CR5_LF.cleanResp2,
	.stacks_in_2202647.cleanRespone5_Last.cleanResp2 {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202647.CR5_LL.cleanResp2 {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202647.CR5.cleanRespone5_First.cleanResp2,
	.stacks_in_2202647.CR5_S.cleanRespone5_First.cleanResp2 {
		float: left;
		width: 99.8%;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202647.CR5.cleanResp2.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202647.CR5_S.cleanResp2.CR5_Goff,
	.stacks_in_2202647.CR5_R1.CR5_LF.cleanRespone5_Last.cleanResp2.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202647.CR5_LF.cleanResp2.CR5_Goff,
	.stacks_in_2202647.cleanRespone5_Last.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
		
	}
	.stacks_in_2202647.CR5_LL.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.cleanRespone5_First.cleanResp2.CR5_Goff,
	.stacks_in_2202647.cleanRespone5_First.cleanResp2.CR5_S.CR5_Goff {
		float: left;
		width: 100%;
		margin: 0 auto 10px auto;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202647.CR5.CR5_LL.cleanResp2,
	.stacks_in_2202647.CR5.CR5_LF.cleanResp2,
	.stacks_in_2202647.CR5.CR5_LL.cleanResp1,
	.stacks_in_2202647.CR5.CR5_LF.cleanResp1,
	.stacks_in_2202647.CR5_S.CR5_LL.cleanResp2,
	.stacks_in_2202647.CR5_S.CR5_LF.cleanResp2,
	.stacks_in_2202647.CR5_S.CR5_LL.cleanResp1,
	.stacks_in_2202647.CR5_S.CR5_LF.cleanResp1 {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR5.CR5_Goff,
	.stacks_in_2202647.CR5_S.CR5_Goff,
	.stacks_in_2202647.CR5_LL.cleanResp2.CR5_Goff {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2202647.CR6_L,
.stacks_in_2202647.CR6_L1 {
	float: left;
}
.stacks_in_2202647.CR6_R,
.stacks_in_2202647.CR6_R1 {
	float: left;
}
.stacks_in_2202647.CR6 {
	width: 15%;
}
.stacks_in_2202647.CR6_S {
	width: 15.2%;
}
.stacks_in_2202647.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_2202647.CR6_LF,
.stacks_in_2202647.CR6_LL,
.stacks_in_2202647.CR6_RF,
.stacks_in_2202647.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202647.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_2202647.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_2202647.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202647.CR6,
	.stacks_in_2202647.CR6_S {
		width: 49%;
	}
	.stacks_in_2202647.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202647.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202647.CR6.CR6_Goff,
	.stacks_in_2202647.CR6_S.CR6_Goff,
	.stacks_in_2202647.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202647.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202647.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202647.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202647.CR6,
	.stacks_in_2202647.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202649Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202649Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202649Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202649Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202649Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202649Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202649Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202649Calligrapher h6, .stacks_in_2202649Calligrapher h5, .stacks_in_2202649Calligrapher h4, .stacks_in_2202649Calligrapher h3, .stacks_in_2202649Calligrapher h2, .stacks_in_2202649Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202649Calligrapher, .stacks_in_2202649Calligrapher h1, .stacks_in_2202649Calligrapher h2, .stacks_in_2202649Calligrapher h3, .stacks_in_2202649Calligrapher h4, .stacks_in_2202649Calligrapher h5, .stacks_in_2202649Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202649Calligrapher, .stacks_in_2202649Calligrapher h1, .stacks_in_2202649Calligrapher h2, .stacks_in_2202649Calligrapher h3, .stacks_in_2202649Calligrapher h4, .stacks_in_2202649Calligrapher h5, .stacks_in_2202649Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202649targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202649Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202649Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202649Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202649Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202654Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202654Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202654Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202654Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202654Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202654Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202654Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202654Calligrapher h6, .stacks_in_2202654Calligrapher h5, .stacks_in_2202654Calligrapher h4, .stacks_in_2202654Calligrapher h3, .stacks_in_2202654Calligrapher h2, .stacks_in_2202654Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202654Calligrapher, .stacks_in_2202654Calligrapher h1, .stacks_in_2202654Calligrapher h2, .stacks_in_2202654Calligrapher h3, .stacks_in_2202654Calligrapher h4, .stacks_in_2202654Calligrapher h5, .stacks_in_2202654Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202654Calligrapher, .stacks_in_2202654Calligrapher h1, .stacks_in_2202654Calligrapher h2, .stacks_in_2202654Calligrapher h3, .stacks_in_2202654Calligrapher h4, .stacks_in_2202654Calligrapher h5, .stacks_in_2202654Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202654targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202654Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202654Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202654Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202654Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203291Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203291Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203291Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203291Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203291Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203291Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203291Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203291Calligrapher h6, .stacks_in_2203291Calligrapher h5, .stacks_in_2203291Calligrapher h4, .stacks_in_2203291Calligrapher h3, .stacks_in_2203291Calligrapher h2, .stacks_in_2203291Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203291Calligrapher, .stacks_in_2203291Calligrapher h1, .stacks_in_2203291Calligrapher h2, .stacks_in_2203291Calligrapher h3, .stacks_in_2203291Calligrapher h4, .stacks_in_2203291Calligrapher h5, .stacks_in_2203291Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2203291Calligrapher, .stacks_in_2203291Calligrapher h1, .stacks_in_2203291Calligrapher h2, .stacks_in_2203291Calligrapher h3, .stacks_in_2203291Calligrapher h4, .stacks_in_2203291Calligrapher h5, .stacks_in_2203291Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203291targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203291Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2203291Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2203291Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2203291Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203293 {
	padding: 0px 0px 20px 0px;
}
#usefulStackWrapperstacks_in_2203187 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 600px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203187 {
	padding-bottom: 0%;
	padding-top: 10%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203187 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203189Calligrapher{			font-size: 180% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.3em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203189Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203189Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203189Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203189Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203189Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203189Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203189Calligrapher h6, .stacks_in_2203189Calligrapher h5, .stacks_in_2203189Calligrapher h4, .stacks_in_2203189Calligrapher h3, .stacks_in_2203189Calligrapher h2, .stacks_in_2203189Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203189Calligrapher, .stacks_in_2203189Calligrapher h1, .stacks_in_2203189Calligrapher h2, .stacks_in_2203189Calligrapher h3, .stacks_in_2203189Calligrapher h4, .stacks_in_2203189Calligrapher h5, .stacks_in_2203189Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203189targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203189Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203189Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203189Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203189Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203191 {
	padding: 40px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203193Calligrapher{			font-size: 120% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203193Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203193Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203193Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203193Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203193Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203193Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203193Calligrapher h6, .stacks_in_2203193Calligrapher h5, .stacks_in_2203193Calligrapher h4, .stacks_in_2203193Calligrapher h3, .stacks_in_2203193Calligrapher h2, .stacks_in_2203193Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203193Calligrapher, .stacks_in_2203193Calligrapher h1, .stacks_in_2203193Calligrapher h2, .stacks_in_2203193Calligrapher h3, .stacks_in_2203193Calligrapher h4, .stacks_in_2203193Calligrapher h5, .stacks_in_2203193Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203193targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203193Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203193Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203193Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203193Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203195 {
	padding: 10px 0px 20px 0px;
}
#usefulStackWrapperstacks_in_2203197 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203197 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203197 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203199Calligrapher{			font-size: 90% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203199Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203199Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203199Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203199Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203199Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203199Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203199Calligrapher h6, .stacks_in_2203199Calligrapher h5, .stacks_in_2203199Calligrapher h4, .stacks_in_2203199Calligrapher h3, .stacks_in_2203199Calligrapher h2, .stacks_in_2203199Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203199Calligrapher, .stacks_in_2203199Calligrapher h1, .stacks_in_2203199Calligrapher h2, .stacks_in_2203199Calligrapher h3, .stacks_in_2203199Calligrapher h4, .stacks_in_2203199Calligrapher h5, .stacks_in_2203199Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203199targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203199Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203199Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203199Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203199Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203201 {
	padding: 5px 0px 40px 0px;
}
#usefulStackWrapperstacks_in_2203203 {
	margin: 0 auto 0 0;
	min-width: 0px;
	max-width: 400px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203203 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203203 {
		display: none;
	}
}












/* Start roundedbox css */

/* general styles edit and preview mode */
#stacks_in_2203205 .stacks_in_2203205bgimagestack
{
	position:relative;
	min-height:10px;
	padding:0px;
	border: 1px solid #FFFFFF;
	-webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    
	-webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}





#stacks_in_2203205 .stacks_in_2203205bgimage
{
	display:none;
}




/* end roundedbox css */
#stacks_in_2203205 {
	background-color: rgba(204, 204, 204, 1.00);
}
/* Backdrop Figure Which Contains The Filter */
.stacks_in_2203208_warehouse_backdrop { 
    height: auto;
        
}

.stacks_in_2203208_warehouse_image {    
    width: 100% !important;
    height: auto;
    
        display: block;     
        margin-left: auto;
        margin-right: auto;
    
    
    
    
    
}

.stacks_in_2203208_cleanborder {
    padding: 5px;
    /*border: solid 1px #bfbfbf; */
    border: solid 1px #000000;
}

/* fixed filters live here */  
.nashville {
  position: relative;
  -webkit-filter: sepia(0.2) contrast(1.2) brightness(1.05) saturate(1.2);
  filter: sepia(0.2) contrast(1.2) brightness(1.05) saturate(1.2); 
}  
.nashville img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}  
.nashville:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2; 
}  
.nashville:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3; 
}  
.nashville::after {
    background: rgba(0, 70, 150, 0.4);
    mix-blend-mode: lighten;
    display: block;
    width: 100% !important;
    height: auto;
}  
.nashville::before {
    background: rgba(247, 176, 153, 0.56);
    mix-blend-mode: darken;
    display: block;
    width: 100% !important;
    height: auto;
}

.gingham {
    position: relative;
    -webkit-filter: brightness(1.05) hue-rotate(-10deg);
    filter: brightness(1.05) hue-rotate(-10deg); 
}  
.gingham img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}  
.gingham:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}  
.gingham:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}  
.gingham::after {
    background: lavender;
    mix-blend-mode: soft-light;
    width: 100% !important;
    height: auto;
}

.walden {
    position: relative;
    -webkit-filter: brightness(1.1) hue-rotate(-10deg) sepia(0.3) saturate(1.6);
    filter: brightness(1.1) hue-rotate(-10deg) sepia(0.3) saturate(1.6); 
}
  
.walden img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.walden:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.walden:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}
  
.walden::after {
    background: #0044cc;
    mix-blend-mode: screen;
    opacity: .3;
    width: 100% !important;
    height: auto;
}

.xpro2 {
  position: relative;
  -webkit-filter: sepia(0.3);
          filter: sepia(0.3); 
}
  
.xpro2 img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.xpro2:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.xpro2:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.xpro2::after {
    background: -webkit-radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, 0.6) 110%);
    background: radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, 0.6) 110%);
    mix-blend-mode: color-burn;
    width: 100% !important;
    height: auto;
}

.valencia {
    position: relative;
    -webkit-filter: contrast(1.08) brightness(1.08) sepia(0.08);
    filter: contrast(1.08) brightness(1.08) sepia(0.08); }
  
.valencia img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.valencia:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2;
}
  
.valencia:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.valencia::after {
    background: #3a0339;
    mix-blend-mode: exclusion;
    opacity: .5;
    width: 100% !important;
    height: auto;
}

.toaster {
    position: relative;
    -webkit-filter: contrast(1.5) brightness(0.9);
    filter: contrast(1.5) brightness(0.9); }
  
.toaster img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.toaster:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.toaster:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}
  
.toaster::after {
    width: 100% !important;
    height: auto;
    background: -webkit-radial-gradient(circle, #804e0f, #3b003b);
    background: radial-gradient(circle, #804e0f, #3b003b);
    mix-blend-mode: screen; 
}

.slumber {
    position: relative;
    -webkit-filter: saturate(0.66) brightness(1.05);
    filter: saturate(0.66) brightness(1.05); 
}
 .slumber img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
.slumber:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
.slumber:after {
    content: '';
    display: block;
    width: 100% !important;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.slumber::after {
    width: 100% !important;
    height: auto;
    background: rgba(125, 105, 24, 0.5);
    mix-blend-mode: soft-light; 
}
  
  .slumber::before {
    width: 100% !important;
    height: auto;
    background: rgba(69, 41, 12, 0.4);
    mix-blend-mode: lighten; 
}

.rise {
  position: relative;
  -webkit-filter: brightness(1.05) sepia(0.2) contrast(0.9) saturate(0.9);
          filter: brightness(1.05) sepia(0.2) contrast(0.9) saturate(0.9); 
}
  
.rise img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.rise:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.rise:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.rise::after {
    background: -webkit-radial-gradient(circle, rgba(232, 197, 152, 0.8), transparent 90%);
    background: radial-gradient(circle, rgba(232, 197, 152, 0.8), transparent 90%);
    mix-blend-mode: overlay;
    opacity: .6; 
    width: 100% !important;
    height: auto;
}
  
.rise::before {
    background: -webkit-radial-gradient(circle, rgba(236, 205, 169, 0.15) 55%, rgba(50, 30, 7, 0.4));
    background: radial-gradient(circle, rgba(236, 205, 169, 0.15) 55%, rgba(50, 30, 7, 0.4));
    mix-blend-mode: multiply; 
    width: 100% !important;
    height: auto;
}

.reyes {
  position: relative;
  -webkit-filter: sepia(0.22) brightness(1.1) contrast(0.85) saturate(0.75);
          filter: sepia(0.22) brightness(1.1) contrast(0.85) saturate(0.75); }
  
.reyes img {
     width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.reyes:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.reyes:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.reyes::after {
    background: #efcdad;
    mix-blend-mode: soft-light;
    opacity: .5; 
    width: 100% !important;
    height: auto;
}

.perpetua {
  position: relative; 
}
  
.perpetua img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.perpetua:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.perpetua:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.perpetua::after {
    background: -webkit-linear-gradient(top, #005b9a, #e6c13d);
    background: linear-gradient(to bottom, #005b9a, #e6c13d);
    mix-blend-mode: soft-light;
    opacity: .5;
    width: 100% !important;
    height: auto;
}

.moon {
  position: relative;
  -webkit-filter: grayscale(1) contrast(1.1) brightness(1.1);
          filter: grayscale(1) contrast(1.1) brightness(1.1); 
}
  
.moon img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.moon:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.moon:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.moon::before {
    background: #a0a0a0;
    mix-blend-mode: soft-light; 
    width: 100% !important;
    height: auto;
}
  
.moon::after {
    background: #383838;
    mix-blend-mode: lighten;
    width: 100% !important;
    height: auto;
}

.mayfair {
  position: relative;
  -webkit-filter: contrast(1.1) saturate(1.1);
          filter: contrast(1.1) saturate(1.1); 
}
  
.mayfair img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.mayfair:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.mayfair:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.mayfair::after {
    background: -webkit-radial-gradient(40% 40%, circle, rgba(255, 255, 255, 0.8), rgba(255, 200, 200, 0.6), #111111 60%);
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.8), rgba(255, 200, 200, 0.6), #111111 60%);
    mix-blend-mode: overlay;
    opacity: .4;
    width: 100% !important;
    height: auto;
}

.maven {
  position: relative;
  -webkit-filter: sepia(0.25) brightness(0.95) contrast(0.95) saturate(1.5);
          filter: sepia(0.25) brightness(0.95) contrast(0.95) saturate(1.5); 
}
.maven img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.maven:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.maven:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.maven:after {
    background: rgba(3, 230, 26, 0.2);
    mix-blend-mode: hue;
    width: 100% !important;
    height: auto;
}

.lofi {
  position: relative;
  -webkit-filter: saturate(1.1) contrast(1.5);
          filter: saturate(1.1) contrast(1.5); 
}
  
.lofi img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.lofi:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.lofi:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.lofi::after {
    background: -webkit-radial-gradient(circle, transparent 70%, #222222 150%);
    background: radial-gradient(circle, transparent 70%, #222222 150%);
    mix-blend-mode: multiply;
    width: 100% !important;
    height: auto;
}

.lark {
  position: relative;
  -webkit-filter: contrast(0.9);
          filter: contrast(0.9); 
}
  
.lark img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.lark:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.lark:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.lark::after {
    background: rgba(242, 242, 242, 0.8);
    mix-blend-mode: darken;
    width: 100% !important;
    height: auto;
}
  
.lark::before {
    background: #22253f;
    mix-blend-mode: color-dodge;
    width: 100% !important;
    height: auto; 
}

.kelvin {
  position: relative; 
}
  
.kelvin img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.kelvin:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.kelvin:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.kelvin::after {
    background: #b77d21;
    mix-blend-mode: overlay;
    width: 100% !important;
    height: auto;
}
  
.kelvin::before {
    background: #382c34;
    mix-blend-mode: color-dodge;
    width: 100% !important;
    height: auto;
}

.inkwell {
  position: relative;
  -webkit-filter: sepia(0.3) contrast(1.1) brightness(1.1) grayscale(1);
          filter: sepia(0.3) contrast(1.1) brightness(1.1) grayscale(1); 
}
  
.inkwell img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.inkwell:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.inkwell:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}

.hudson {
  position: relative;
  -webkit-filter: brightness(1.2) contrast(0.9) saturate(1.1);
          filter: brightness(1.2) contrast(0.9) saturate(1.1); 
}
  
.hudson img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.hudson:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.hudson:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.hudson::after {
    background: -webkit-radial-gradient(circle, #a6b1ff 50%, #342134);
    background: radial-gradient(circle, #a6b1ff 50%, #342134);
    mix-blend-mode: multiply;
    opacity: .5;
    width: 100% !important;
    height: auto;
}


#usefulStackWrapperstacks_in_2203209 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203209 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 7%;
	padding-right: 7%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203209 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203213Calligrapher{			font-size: 83% !important;			color: #666666 !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203213Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203213Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203213Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203213Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203213Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203213Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203213Calligrapher h6, .stacks_in_2203213Calligrapher h5, .stacks_in_2203213Calligrapher h4, .stacks_in_2203213Calligrapher h3, .stacks_in_2203213Calligrapher h2, .stacks_in_2203213Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203213Calligrapher, .stacks_in_2203213Calligrapher h1, .stacks_in_2203213Calligrapher h2, .stacks_in_2203213Calligrapher h3, .stacks_in_2203213Calligrapher h4, .stacks_in_2203213Calligrapher h5, .stacks_in_2203213Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203213targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203213Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203213Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203213Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203213Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203215 {
	padding: 20px 0px 0px 0px;
}

#stacks_in_2203216 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203217Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.5em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203217Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203217Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203217Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203217Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203217Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203217Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203217Calligrapher h6, .stacks_in_2203217Calligrapher h5, .stacks_in_2203217Calligrapher h4, .stacks_in_2203217Calligrapher h3, .stacks_in_2203217Calligrapher h2, .stacks_in_2203217Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203217Calligrapher, .stacks_in_2203217Calligrapher h1, .stacks_in_2203217Calligrapher h2, .stacks_in_2203217Calligrapher h3, .stacks_in_2203217Calligrapher h4, .stacks_in_2203217Calligrapher h5, .stacks_in_2203217Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203217targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203217Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203217Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203217Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203217Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203219 {
	padding: 10px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203221Calligrapher{			font-size: 80% !important;			color: #7F7F7F !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.5em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203221Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203221Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203221Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203221Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203221Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203221Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203221Calligrapher h6, .stacks_in_2203221Calligrapher h5, .stacks_in_2203221Calligrapher h4, .stacks_in_2203221Calligrapher h3, .stacks_in_2203221Calligrapher h2, .stacks_in_2203221Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203221Calligrapher, .stacks_in_2203221Calligrapher h1, .stacks_in_2203221Calligrapher h2, .stacks_in_2203221Calligrapher h3, .stacks_in_2203221Calligrapher h4, .stacks_in_2203221Calligrapher h5, .stacks_in_2203221Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203221targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203221Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203221Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203221Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203221Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203223 {
	padding: 20px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203225Calligrapher{			font-size: 70% !important;			color: #4C4C4C !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203225Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203225Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203225Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203225Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203225Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203225Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203225Calligrapher h6, .stacks_in_2203225Calligrapher h5, .stacks_in_2203225Calligrapher h4, .stacks_in_2203225Calligrapher h3, .stacks_in_2203225Calligrapher h2, .stacks_in_2203225Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203225Calligrapher, .stacks_in_2203225Calligrapher h1, .stacks_in_2203225Calligrapher h2, .stacks_in_2203225Calligrapher h3, .stacks_in_2203225Calligrapher h4, .stacks_in_2203225Calligrapher h5, .stacks_in_2203225Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203225targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203225Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203225Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203225Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203225Calligrapher a:hover{			color: #E6E6E6 !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203227 {
	padding: 15px 0px 30px 0px;
}
#usefulStackWrapperstacks_in_2203229 {
	margin: 0 auto 0 0;
	min-width: 0px;
	max-width: 400px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203229 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203229 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203231Calligrapher{			font-size: 80% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203231Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203231Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203231Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203231Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203231Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203231Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203231Calligrapher h6, .stacks_in_2203231Calligrapher h5, .stacks_in_2203231Calligrapher h4, .stacks_in_2203231Calligrapher h3, .stacks_in_2203231Calligrapher h2, .stacks_in_2203231Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203231Calligrapher, .stacks_in_2203231Calligrapher h1, .stacks_in_2203231Calligrapher h2, .stacks_in_2203231Calligrapher h3, .stacks_in_2203231Calligrapher h4, .stacks_in_2203231Calligrapher h5, .stacks_in_2203231Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203231targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203231Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203231Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203231Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203231Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203233 {
	padding: 20px 0px 80px 0px;
}
/*
 * cleanResponse
 * Version: 2.0.4
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns
 */

/***************************************  NO GUTTER **********************************/

.stacks_in_2202663.cleanResponse2_L.CR2_Goff {
	width: 75%;
}
.stacks_in_2202663.cleanResponse2_R.CR2_Goff {
	width: 25%;
}

/****************  3 Non ******************/

.stacks_in_2202663.CR3_L.CR3_Goff {
	width: 33%;
}
.stacks_in_2202663.CR3_R.CR3_Goff {
	width: 33%;
}
.stacks_in_2202663.CR3_RS.CR3_Goff {
	width: 33.2%;
	float: right;
}
.stacks_in_2202663.CR3_M.CR3_Goff {
	margin: 0 0% 10px 0%;
	width: 34%;
}

/****************  4 Non ******************/

.stacks_in_2202663.CR4.CR4_Goff {
	width: 25%;
}
.stacks_in_2202663.CR4_S.CR4_Goff {
	width: 25%;
}
.stacks_in_2202663.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
	width: 25.1%;
	float: left;
}
.stacks_in_2202663.CR4_LF.CR4_Goff, .stacks_in_2202663.CR4_LL.CR4_Goff, .stacks_in_2202663.CR4_LF2.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202663.CR4_LF.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202663.CR4_LL2.CR4_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
	.stacks_in_2202663.CR4_R.CR4_LL2.CR4_S.CR4_Goff{
		float: left;
		width: 25%;
	}
}

/****************  5 Non ******************/

.stacks_in_2202663.CR5.CR5_Goff {
	width: 20%;
}
.stacks_in_2202663.CR5_S.CR5_Goff {
	width: 20%;
}
.stacks_in_2202663.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
	width: 20.3%;
}
.stacks_in_2202663.CR5_M.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202663.CR5_LF.CR5_Goff, .stacks_in_2202663.CR5_LL.CR5_Goff, .stacks_in_2202663.CR5_RF.CR5_Goff, .stacks_in_2202663.CR5_RL.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202663.cleanRespone5_First.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202663.cleanRespone5_Last.CR5_Goff {
	margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_2202663.CR6.CR6_Goff {
	width: 16.66%;
}
.stacks_in_2202663.CR6_S.CR6_Goff {
	width: 16.69%;
}
.stacks_in_2202663.CR6_R1.CR6_LL.CR6_S.CR6_Goff, stacks_in_2202663.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
	width: 17%;
}
.stacks_in_2202663.CR6_M.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202663.CR6_LF.CR6_Goff,
.stacks_in_2202663.CR6_LL.CR6_Goff,
.stacks_in_2202663.CR6_RF.CR6_Goff,
.stacks_in_2202663.CR6_RL.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202663.CR6_L1.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202663.CR6_R1.CR6_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
		.stacks_in_2202663.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
		.stacks_in_2202663.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
			width: 16.6%;
	}
}

/***************************************  1 COLUMN **********************************/

.stacks_in_2202663.cleanResponse1_L {
	width: 100%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202663.cleanResponse1_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2202663.cleanResponse2_L {
	float: left;
	width: 74%;
	margin: 0 0 10px 0;
}
.stacks_in_2202663.cleanResponse2_R {
	float: right;
	width: 24%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202663.cleanResponse2_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.cleanResponse2_R {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.cleanResponse2_L.CR2_Goff {
		width: 100%;
		margin:0 0 10px 0;
	}
	.stacks_in_2202663.cleanResponse2_R.CR2_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2202663.CR3_L {
	float: left;
	width: 32%;
	margin: 0 0 10px 0;

}
.stacks_in_2202663.CR3_R {
	float: right;
	width: 32%;
	margin: 0 0 10px 0;
}
.stacks_in_2202663.CR3_M {
	float: left;
	margin: 0 2% 10px 2%;
	width: 32%;
}
@media (max-width: 800px) {
	
	/*  ============ LARGE BOTTOM ================== */
	
	.stacks_in_2202663.CR3_L.cleanResp1 {
		float: left;
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202663.CR3_M.cleanResp1 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202663.CR3_R.cleanResp1,
	.stacks_in_2202663.CR3_RS.cleanResp1 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR3_L.cleanResp1.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR3_M.cleanResp1.CR3_Goff  {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR3_R.cleanResp1.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR3_RS.cleanResp1.CR3_Goff  {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	
	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202663.CR3_L.cleanResp2 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR3_M.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202663.CR3_R.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202663.CR3_RS.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202663.CR3_L.cleanResp2.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR3_M.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR3_R.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR3_RS.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	
}
@media (max-width: 600px){
	.stacks_in_2202663.CR3_L,
	.stacks_in_2202663.CR3_R.cleanResp2,
	.stacks_in_2202663.CR3_R,
	.stacks_in_2202663.CR3_R.cleanResp1,
	.stacks_in_2202663.CR3_RS.cleanResp2,
	.stacks_in_2202663.CR3_RS.cleanResp3 {
		float: left !important;
		width: 100% !important;
		margin: 0 0 10px 0!important;
	}
	.stacks_in_2202663.CR3_RS.CR3_Goff {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
	.stacks_in_2202663.CR3_M {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2202663.CR4_L {
	float: left;
}
.stacks_in_2202663.CR4_R {
	float: left;
}
.stacks_in_2202663.CR4 {
	width: 23.5%;
}
.stacks_in_2202663.CR4_S {
	width: 23.6%;
}
.stacks_in_2202663.CR4_LF,
.stacks_in_2202663.CR4_LL,
.stacks_in_2202663.CR4_LF2 {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202663.CR4_LF {
	margin: 0 1% 10px 0;
}
.stacks_in_2202663.CR4_LL2 {
	margin: 0 0 10px 1%;
	float: right;
}
@media (max-width: 1074px) {
	.stacks_in_2202663.CR4_S{
		width: 23.5%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202663.CR4 {
		width: 49%;
	}
	.stacks_in_2202663.CR4_S {
		width: 49%;
	}
	.stacks_in_2202663.CR4_LF {
		float: left;
		margin: 0 1% 10px 0 ;
	}
	.stacks_in_2202663.CR4_LL {
		float: left;
		margin: 0 0 10px 1% ;
	}
	.stacks_in_2202663.CR4_LF2 {
		float: left;
		margin: 0 1% 10px 0 ;
	}
	.stacks_in_2202663.CR4_LL2 {
		float: left;
		margin: 0 0 10px 1% ;
	}
	.stacks_in_2202663.CR4_R {
		float:left;
	}
	.stacks_in_2202663.CR4.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202663.CR4_S.CR4_Goff,
	.stacks_in_2202663.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202663.CR4_LF.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202663.CR4_LL.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202663.CR4_LF2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202663.CR4_LL2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
}

@media (max-width: 600px){
	.stacks_in_2202663.CR4 {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR4_S {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR4.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR4_S.CR4_Goff,
	.stacks_in_2202663.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2202663 .CR5_L {
	float: left;
}
.stacks_in_2202663 .CR5_R {
	float: left;
}
.stacks_in_2202663 .CR5 {
	width: 18.4%;
}
.stacks_in_2202663.CR5_S {
	width: 18.4%;
}
.stacks_in_2202663.CR5_M {
	float: left;
	margin: 0 1% 10px 1%;
}
.stacks_in_2202663.CR5_LF,
.stacks_in_2202663.CR5_LL,
.stacks_in_2202663.CR5_RF,
.stacks_in_2202663.CR5_RL {
	float: left;
	margin: 0 1% 10px 1%;
}
.stacks_in_2202663.cleanRespone5_First {
	margin: 0 1% 10px 0;
}
.stacks_in_2202663.cleanRespone5_Last {
	float:right;
	margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
	.stacks_in_2202663.CR5, .stacks_in_2202663.CR5_S {
		width: 49%;
	}
	.stacks_in_2202663.CR5_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202663.CR5_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202663.CR5.cleanRespone5_Last,
	.stacks_in_2202663.CR5_S.cleanRespone5_Last {
		float: left;
		width: 99.8% ;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202663.CR5.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202663.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202663.CR5_LF.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR5_LL.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.cleanRespone5_Last.CR5_Goff,
	.stacks_in_2202663.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
		float: left;
		width: 100% ;
		margin: 0 auto 10px auto;
	}

	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202663.CR5.cleanResp2,
	.stacks_in_2202663.CR5_S.cleanResp2 {
		width: 49%;
	}
	.stacks_in_2202663.CR5_LF.cleanResp2,
	.stacks_in_2202663.cleanRespone5_Last.cleanResp2 {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202663.CR5_LL.cleanResp2 {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202663.CR5.cleanRespone5_First.cleanResp2,
	.stacks_in_2202663.CR5_S.cleanRespone5_First.cleanResp2 {
		float: left;
		width: 99.8%;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202663.CR5.cleanResp2.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202663.CR5_S.cleanResp2.CR5_Goff,
	.stacks_in_2202663.CR5_R1.CR5_LF.cleanRespone5_Last.cleanResp2.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202663.CR5_LF.cleanResp2.CR5_Goff,
	.stacks_in_2202663.cleanRespone5_Last.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
		
	}
	.stacks_in_2202663.CR5_LL.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.cleanRespone5_First.cleanResp2.CR5_Goff,
	.stacks_in_2202663.cleanRespone5_First.cleanResp2.CR5_S.CR5_Goff {
		float: left;
		width: 100%;
		margin: 0 auto 10px auto;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202663.CR5.CR5_LL.cleanResp2,
	.stacks_in_2202663.CR5.CR5_LF.cleanResp2,
	.stacks_in_2202663.CR5.CR5_LL.cleanResp1,
	.stacks_in_2202663.CR5.CR5_LF.cleanResp1,
	.stacks_in_2202663.CR5_S.CR5_LL.cleanResp2,
	.stacks_in_2202663.CR5_S.CR5_LF.cleanResp2,
	.stacks_in_2202663.CR5_S.CR5_LL.cleanResp1,
	.stacks_in_2202663.CR5_S.CR5_LF.cleanResp1 {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR5.CR5_Goff,
	.stacks_in_2202663.CR5_S.CR5_Goff,
	.stacks_in_2202663.CR5_LL.cleanResp2.CR5_Goff {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2202663.CR6_L,
.stacks_in_2202663.CR6_L1 {
	float: left;
}
.stacks_in_2202663.CR6_R,
.stacks_in_2202663.CR6_R1 {
	float: left;
}
.stacks_in_2202663.CR6 {
	width: 15%;
}
.stacks_in_2202663.CR6_S {
	width: 15.2%;
}
.stacks_in_2202663.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_2202663.CR6_LF,
.stacks_in_2202663.CR6_LL,
.stacks_in_2202663.CR6_RF,
.stacks_in_2202663.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202663.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_2202663.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_2202663.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202663.CR6,
	.stacks_in_2202663.CR6_S {
		width: 49%;
	}
	.stacks_in_2202663.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202663.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202663.CR6.CR6_Goff,
	.stacks_in_2202663.CR6_S.CR6_Goff,
	.stacks_in_2202663.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202663.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202663.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202663.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202663.CR6,
	.stacks_in_2202663.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202663 {
	padding: 100px 0px 10px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202667Calligrapher{			font-size: 180% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202667Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202667Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202667Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202667Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202667Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202667Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202667Calligrapher h6, .stacks_in_2202667Calligrapher h5, .stacks_in_2202667Calligrapher h4, .stacks_in_2202667Calligrapher h3, .stacks_in_2202667Calligrapher h2, .stacks_in_2202667Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202667Calligrapher, .stacks_in_2202667Calligrapher h1, .stacks_in_2202667Calligrapher h2, .stacks_in_2202667Calligrapher h3, .stacks_in_2202667Calligrapher h4, .stacks_in_2202667Calligrapher h5, .stacks_in_2202667Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202667Calligrapher, .stacks_in_2202667Calligrapher h1, .stacks_in_2202667Calligrapher h2, .stacks_in_2202667Calligrapher h3, .stacks_in_2202667Calligrapher h4, .stacks_in_2202667Calligrapher h5, .stacks_in_2202667Calligrapher h6{	text-shadow: 1px 1px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202667targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202667Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202667Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202667Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202667Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202669 {
	padding: 20px 0px 0px 0px;
}
/*
 * cleanResponse
 * Version: 2.0.4
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns
 */

/***************************************  NO GUTTER **********************************/

.stacks_in_2202671.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202671.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

/****************  3 Non ******************/

.stacks_in_2202671.CR3_L.CR3_Goff {
	width: 33%;
}
.stacks_in_2202671.CR3_R.CR3_Goff {
	width: 33%;
}
.stacks_in_2202671.CR3_RS.CR3_Goff {
	width: 33.2%;
	float: right;
}
.stacks_in_2202671.CR3_M.CR3_Goff {
	margin: 0 0% 10px 0%;
	width: 34%;
}

/****************  4 Non ******************/

.stacks_in_2202671.CR4.CR4_Goff {
	width: 25%;
}
.stacks_in_2202671.CR4_S.CR4_Goff {
	width: 25%;
}
.stacks_in_2202671.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
	width: 25.1%;
	float: left;
}
.stacks_in_2202671.CR4_LF.CR4_Goff, .stacks_in_2202671.CR4_LL.CR4_Goff, .stacks_in_2202671.CR4_LF2.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202671.CR4_LF.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202671.CR4_LL2.CR4_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
	.stacks_in_2202671.CR4_R.CR4_LL2.CR4_S.CR4_Goff{
		float: left;
		width: 25%;
	}
}

/****************  5 Non ******************/

.stacks_in_2202671.CR5.CR5_Goff {
	width: 20%;
}
.stacks_in_2202671.CR5_S.CR5_Goff {
	width: 20%;
}
.stacks_in_2202671.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
	width: 20.3%;
}
.stacks_in_2202671.CR5_M.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202671.CR5_LF.CR5_Goff, .stacks_in_2202671.CR5_LL.CR5_Goff, .stacks_in_2202671.CR5_RF.CR5_Goff, .stacks_in_2202671.CR5_RL.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202671.cleanRespone5_First.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202671.cleanRespone5_Last.CR5_Goff {
	margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_2202671.CR6.CR6_Goff {
	width: 16.66%;
}
.stacks_in_2202671.CR6_S.CR6_Goff {
	width: 16.69%;
}
.stacks_in_2202671.CR6_R1.CR6_LL.CR6_S.CR6_Goff, stacks_in_2202671.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
	width: 17%;
}
.stacks_in_2202671.CR6_M.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202671.CR6_LF.CR6_Goff,
.stacks_in_2202671.CR6_LL.CR6_Goff,
.stacks_in_2202671.CR6_RF.CR6_Goff,
.stacks_in_2202671.CR6_RL.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202671.CR6_L1.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202671.CR6_R1.CR6_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
		.stacks_in_2202671.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
		.stacks_in_2202671.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
			width: 16.6%;
	}
}

/***************************************  1 COLUMN **********************************/

.stacks_in_2202671.cleanResponse1_L {
	width: 100%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202671.cleanResponse1_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2202671.cleanResponse2_L {
	float: left;
	width: 48%;
	margin: 0 0 10px 0;
}
.stacks_in_2202671.cleanResponse2_R {
	float: right;
	width: 48%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202671.cleanResponse2_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.cleanResponse2_R {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.cleanResponse2_L.CR2_Goff {
		width: 100%;
		margin:0 0 10px 0;
	}
	.stacks_in_2202671.cleanResponse2_R.CR2_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2202671.CR3_L {
	float: left;
	width: 31%;
	margin: 0 0 10px 0;

}
.stacks_in_2202671.CR3_R {
	float: right;
	width: 31%;
	margin: 0 0 10px 0;
}
.stacks_in_2202671.CR3_M {
	float: left;
	margin: 0 4% 10px 4%;
	width: 30%;
}
@media (max-width: 800px) {
	
	/*  ============ LARGE BOTTOM ================== */
	
	.stacks_in_2202671.CR3_L.cleanResp1 {
		float: left;
		width: 48%;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202671.CR3_M.cleanResp1 {
		float: left;
		width: 48%;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202671.CR3_R.cleanResp1,
	.stacks_in_2202671.CR3_RS.cleanResp1 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR3_L.cleanResp1.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR3_M.cleanResp1.CR3_Goff  {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR3_R.cleanResp1.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR3_RS.cleanResp1.CR3_Goff  {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	
	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202671.CR3_L.cleanResp2 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR3_M.cleanResp2 {
		float: left;
		width: 48%;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202671.CR3_R.cleanResp2 {
		float: left;
		width: 48%;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202671.CR3_RS.cleanResp2 {
		float: left;
		width: 48%;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202671.CR3_L.cleanResp2.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR3_M.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR3_R.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR3_RS.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	
}
@media (max-width: 600px){
	.stacks_in_2202671.CR3_L,
	.stacks_in_2202671.CR3_R.cleanResp2,
	.stacks_in_2202671.CR3_R,
	.stacks_in_2202671.CR3_R.cleanResp1,
	.stacks_in_2202671.CR3_RS.cleanResp2,
	.stacks_in_2202671.CR3_RS.cleanResp3 {
		float: left !important;
		width: 100% !important;
		margin: 0 0 10px 0!important;
	}
	.stacks_in_2202671.CR3_RS.CR3_Goff {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
	.stacks_in_2202671.CR3_M {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2202671.CR4_L {
	float: left;
}
.stacks_in_2202671.CR4_R {
	float: left;
}
.stacks_in_2202671.CR4 {
	width: 21.5%;
}
.stacks_in_2202671.CR4_S {
	width: 21.6%;
}
.stacks_in_2202671.CR4_LF,
.stacks_in_2202671.CR4_LL,
.stacks_in_2202671.CR4_LF2 {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202671.CR4_LF {
	margin: 0 2% 10px 0;
}
.stacks_in_2202671.CR4_LL2 {
	margin: 0 0 10px 2%;
	float: right;
}
@media (max-width: 1074px) {
	.stacks_in_2202671.CR4_S{
		width: 21.5%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202671.CR4 {
		width: 47%;
	}
	.stacks_in_2202671.CR4_S {
		width: 47%;
	}
	.stacks_in_2202671.CR4_LF {
		float: left;
		margin: 0 2% 10px 0 ;
	}
	.stacks_in_2202671.CR4_LL {
		float: left;
		margin: 0 0 10px 2% ;
	}
	.stacks_in_2202671.CR4_LF2 {
		float: left;
		margin: 0 2% 10px 0 ;
	}
	.stacks_in_2202671.CR4_LL2 {
		float: left;
		margin: 0 0 10px 2% ;
	}
	.stacks_in_2202671.CR4_R {
		float:left;
	}
	.stacks_in_2202671.CR4.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202671.CR4_S.CR4_Goff,
	.stacks_in_2202671.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202671.CR4_LF.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202671.CR4_LL.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202671.CR4_LF2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202671.CR4_LL2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
}

@media (max-width: 600px){
	.stacks_in_2202671.CR4 {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR4_S {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR4.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR4_S.CR4_Goff,
	.stacks_in_2202671.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2202671 .CR5_L {
	float: left;
}
.stacks_in_2202671 .CR5_R {
	float: left;
}
.stacks_in_2202671 .CR5 {
	width: 16.4%;
}
.stacks_in_2202671.CR5_S {
	width: 16.4%;
}
.stacks_in_2202671.CR5_M {
	float: left;
	margin: 0 2% 10px 2%;
}
.stacks_in_2202671.CR5_LF,
.stacks_in_2202671.CR5_LL,
.stacks_in_2202671.CR5_RF,
.stacks_in_2202671.CR5_RL {
	float: left;
	margin: 0 2% 10px 2%;
}
.stacks_in_2202671.cleanRespone5_First {
	margin: 0 2% 10px 0;
}
.stacks_in_2202671.cleanRespone5_Last {
	float:right;
	margin: 0 0 10px 2%;
}
@media (max-width: 800px) {
	.stacks_in_2202671.CR5, .stacks_in_2202671.CR5_S {
		width: 47%;
	}
	.stacks_in_2202671.CR5_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202671.CR5_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202671.CR5.cleanRespone5_Last,
	.stacks_in_2202671.CR5_S.cleanRespone5_Last {
		float: left;
		width: 99.8% ;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202671.CR5.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202671.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202671.CR5_LF.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR5_LL.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.cleanRespone5_Last.CR5_Goff,
	.stacks_in_2202671.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
		float: left;
		width: 100% ;
		margin: 0 auto 10px auto;
	}

	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202671.CR5.cleanResp2,
	.stacks_in_2202671.CR5_S.cleanResp2 {
		width: 47%;
	}
	.stacks_in_2202671.CR5_LF.cleanResp2,
	.stacks_in_2202671.cleanRespone5_Last.cleanResp2 {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202671.CR5_LL.cleanResp2 {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202671.CR5.cleanRespone5_First.cleanResp2,
	.stacks_in_2202671.CR5_S.cleanRespone5_First.cleanResp2 {
		float: left;
		width: 99.8%;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202671.CR5.cleanResp2.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202671.CR5_S.cleanResp2.CR5_Goff,
	.stacks_in_2202671.CR5_R1.CR5_LF.cleanRespone5_Last.cleanResp2.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202671.CR5_LF.cleanResp2.CR5_Goff,
	.stacks_in_2202671.cleanRespone5_Last.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
		
	}
	.stacks_in_2202671.CR5_LL.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.cleanRespone5_First.cleanResp2.CR5_Goff,
	.stacks_in_2202671.cleanRespone5_First.cleanResp2.CR5_S.CR5_Goff {
		float: left;
		width: 100%;
		margin: 0 auto 10px auto;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202671.CR5.CR5_LL.cleanResp2,
	.stacks_in_2202671.CR5.CR5_LF.cleanResp2,
	.stacks_in_2202671.CR5.CR5_LL.cleanResp1,
	.stacks_in_2202671.CR5.CR5_LF.cleanResp1,
	.stacks_in_2202671.CR5_S.CR5_LL.cleanResp2,
	.stacks_in_2202671.CR5_S.CR5_LF.cleanResp2,
	.stacks_in_2202671.CR5_S.CR5_LL.cleanResp1,
	.stacks_in_2202671.CR5_S.CR5_LF.cleanResp1 {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR5.CR5_Goff,
	.stacks_in_2202671.CR5_S.CR5_Goff,
	.stacks_in_2202671.CR5_LL.cleanResp2.CR5_Goff {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2202671.CR6_L,
.stacks_in_2202671.CR6_L1 {
	float: left;
}
.stacks_in_2202671.CR6_R,
.stacks_in_2202671.CR6_R1 {
	float: left;
}
.stacks_in_2202671.CR6 {
	width: 13%;
}
.stacks_in_2202671.CR6_S {
	width: 13.2%;
}
.stacks_in_2202671.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202671.CR6_LF,
.stacks_in_2202671.CR6_LL,
.stacks_in_2202671.CR6_RF,
.stacks_in_2202671.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202671.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202671.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202671.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202671.CR6,
	.stacks_in_2202671.CR6_S {
		width: 47%;
	}
	.stacks_in_2202671.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202671.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202671.CR6.CR6_Goff,
	.stacks_in_2202671.CR6_S.CR6_Goff,
	.stacks_in_2202671.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202671.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202671.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202671.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202671.CR6,
	.stacks_in_2202671.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202671 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202673Calligrapher{			font-size: 130% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202673Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202673Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202673Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202673Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202673Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202673Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202673Calligrapher h6, .stacks_in_2202673Calligrapher h5, .stacks_in_2202673Calligrapher h4, .stacks_in_2202673Calligrapher h3, .stacks_in_2202673Calligrapher h2, .stacks_in_2202673Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202673Calligrapher, .stacks_in_2202673Calligrapher h1, .stacks_in_2202673Calligrapher h2, .stacks_in_2202673Calligrapher h3, .stacks_in_2202673Calligrapher h4, .stacks_in_2202673Calligrapher h5, .stacks_in_2202673Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202673Calligrapher, .stacks_in_2202673Calligrapher h1, .stacks_in_2202673Calligrapher h2, .stacks_in_2202673Calligrapher h3, .stacks_in_2202673Calligrapher h4, .stacks_in_2202673Calligrapher h5, .stacks_in_2202673Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202673targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202673Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202673Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202673Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202673Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202677Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202677Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202677Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202677Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202677Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202677Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202677Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202677Calligrapher h6, .stacks_in_2202677Calligrapher h5, .stacks_in_2202677Calligrapher h4, .stacks_in_2202677Calligrapher h3, .stacks_in_2202677Calligrapher h2, .stacks_in_2202677Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202677Calligrapher, .stacks_in_2202677Calligrapher h1, .stacks_in_2202677Calligrapher h2, .stacks_in_2202677Calligrapher h3, .stacks_in_2202677Calligrapher h4, .stacks_in_2202677Calligrapher h5, .stacks_in_2202677Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202677Calligrapher, .stacks_in_2202677Calligrapher h1, .stacks_in_2202677Calligrapher h2, .stacks_in_2202677Calligrapher h3, .stacks_in_2202677Calligrapher h4, .stacks_in_2202677Calligrapher h5, .stacks_in_2202677Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202677targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202677Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202677Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202677Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202677Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202682Calligrapher{			font-size: 130% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202682Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202682Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202682Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202682Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202682Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202682Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202682Calligrapher h6, .stacks_in_2202682Calligrapher h5, .stacks_in_2202682Calligrapher h4, .stacks_in_2202682Calligrapher h3, .stacks_in_2202682Calligrapher h2, .stacks_in_2202682Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202682Calligrapher, .stacks_in_2202682Calligrapher h1, .stacks_in_2202682Calligrapher h2, .stacks_in_2202682Calligrapher h3, .stacks_in_2202682Calligrapher h4, .stacks_in_2202682Calligrapher h5, .stacks_in_2202682Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202682Calligrapher, .stacks_in_2202682Calligrapher h1, .stacks_in_2202682Calligrapher h2, .stacks_in_2202682Calligrapher h3, .stacks_in_2202682Calligrapher h4, .stacks_in_2202682Calligrapher h5, .stacks_in_2202682Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202682targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202682Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202682Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202682Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202682Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202686Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202686Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202686Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202686Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202686Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202686Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202686Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202686Calligrapher h6, .stacks_in_2202686Calligrapher h5, .stacks_in_2202686Calligrapher h4, .stacks_in_2202686Calligrapher h3, .stacks_in_2202686Calligrapher h2, .stacks_in_2202686Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202686Calligrapher, .stacks_in_2202686Calligrapher h1, .stacks_in_2202686Calligrapher h2, .stacks_in_2202686Calligrapher h3, .stacks_in_2202686Calligrapher h4, .stacks_in_2202686Calligrapher h5, .stacks_in_2202686Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202686Calligrapher, .stacks_in_2202686Calligrapher h1, .stacks_in_2202686Calligrapher h2, .stacks_in_2202686Calligrapher h3, .stacks_in_2202686Calligrapher h4, .stacks_in_2202686Calligrapher h5, .stacks_in_2202686Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202686targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202686Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202686Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202686Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202686Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202690Calligrapher{			font-size: 130% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202690Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202690Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202690Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202690Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202690Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202690Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202690Calligrapher h6, .stacks_in_2202690Calligrapher h5, .stacks_in_2202690Calligrapher h4, .stacks_in_2202690Calligrapher h3, .stacks_in_2202690Calligrapher h2, .stacks_in_2202690Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202690Calligrapher, .stacks_in_2202690Calligrapher h1, .stacks_in_2202690Calligrapher h2, .stacks_in_2202690Calligrapher h3, .stacks_in_2202690Calligrapher h4, .stacks_in_2202690Calligrapher h5, .stacks_in_2202690Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202690Calligrapher, .stacks_in_2202690Calligrapher h1, .stacks_in_2202690Calligrapher h2, .stacks_in_2202690Calligrapher h3, .stacks_in_2202690Calligrapher h4, .stacks_in_2202690Calligrapher h5, .stacks_in_2202690Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202690targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202690Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202690Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202690Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202690Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202690 {
	padding: 20px 0px 0px 0px;
}
/*
 * cleanResponse
 * Version: 2.0.4
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns
 */

/***************************************  NO GUTTER **********************************/

.stacks_in_2202694.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202694.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

/****************  3 Non ******************/

.stacks_in_2202694.CR3_L.CR3_Goff {
	width: 33%;
}
.stacks_in_2202694.CR3_R.CR3_Goff {
	width: 33%;
}
.stacks_in_2202694.CR3_RS.CR3_Goff {
	width: 33.2%;
	float: right;
}
.stacks_in_2202694.CR3_M.CR3_Goff {
	margin: 0 0% 10px 0%;
	width: 34%;
}

/****************  4 Non ******************/

.stacks_in_2202694.CR4.CR4_Goff {
	width: 25%;
}
.stacks_in_2202694.CR4_S.CR4_Goff {
	width: 25%;
}
.stacks_in_2202694.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
	width: 25.1%;
	float: left;
}
.stacks_in_2202694.CR4_LF.CR4_Goff, .stacks_in_2202694.CR4_LL.CR4_Goff, .stacks_in_2202694.CR4_LF2.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202694.CR4_LF.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202694.CR4_LL2.CR4_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
	.stacks_in_2202694.CR4_R.CR4_LL2.CR4_S.CR4_Goff{
		float: left;
		width: 25%;
	}
}

/****************  5 Non ******************/

.stacks_in_2202694.CR5.CR5_Goff {
	width: 20%;
}
.stacks_in_2202694.CR5_S.CR5_Goff {
	width: 20%;
}
.stacks_in_2202694.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
	width: 20.3%;
}
.stacks_in_2202694.CR5_M.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202694.CR5_LF.CR5_Goff, .stacks_in_2202694.CR5_LL.CR5_Goff, .stacks_in_2202694.CR5_RF.CR5_Goff, .stacks_in_2202694.CR5_RL.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202694.cleanRespone5_First.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202694.cleanRespone5_Last.CR5_Goff {
	margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_2202694.CR6.CR6_Goff {
	width: 16.66%;
}
.stacks_in_2202694.CR6_S.CR6_Goff {
	width: 16.69%;
}
.stacks_in_2202694.CR6_R1.CR6_LL.CR6_S.CR6_Goff, stacks_in_2202694.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
	width: 17%;
}
.stacks_in_2202694.CR6_M.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202694.CR6_LF.CR6_Goff,
.stacks_in_2202694.CR6_LL.CR6_Goff,
.stacks_in_2202694.CR6_RF.CR6_Goff,
.stacks_in_2202694.CR6_RL.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202694.CR6_L1.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202694.CR6_R1.CR6_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
		.stacks_in_2202694.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
		.stacks_in_2202694.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
			width: 16.6%;
	}
}

/***************************************  1 COLUMN **********************************/

.stacks_in_2202694.cleanResponse1_L {
	width: 100%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202694.cleanResponse1_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2202694.cleanResponse2_L {
	float: left;
	width: 49%;
	margin: 0 0 10px 0;
}
.stacks_in_2202694.cleanResponse2_R {
	float: right;
	width: 49%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202694.cleanResponse2_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.cleanResponse2_R {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.cleanResponse2_L.CR2_Goff {
		width: 100%;
		margin:0 0 10px 0;
	}
	.stacks_in_2202694.cleanResponse2_R.CR2_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2202694.CR3_L {
	float: left;
	width: 32%;
	margin: 0 0 10px 0;

}
.stacks_in_2202694.CR3_R {
	float: right;
	width: 32%;
	margin: 0 0 10px 0;
}
.stacks_in_2202694.CR3_M {
	float: left;
	margin: 0 2% 10px 2%;
	width: 32%;
}
@media (max-width: 800px) {
	
	/*  ============ LARGE BOTTOM ================== */
	
	.stacks_in_2202694.CR3_L.cleanResp1 {
		float: left;
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202694.CR3_M.cleanResp1 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202694.CR3_R.cleanResp1,
	.stacks_in_2202694.CR3_RS.cleanResp1 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR3_L.cleanResp1.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR3_M.cleanResp1.CR3_Goff  {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR3_R.cleanResp1.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR3_RS.cleanResp1.CR3_Goff  {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	
	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202694.CR3_L.cleanResp2 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR3_M.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202694.CR3_R.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202694.CR3_RS.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202694.CR3_L.cleanResp2.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR3_M.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR3_R.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR3_RS.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	
}
@media (max-width: 600px){
	.stacks_in_2202694.CR3_L,
	.stacks_in_2202694.CR3_R.cleanResp2,
	.stacks_in_2202694.CR3_R,
	.stacks_in_2202694.CR3_R.cleanResp1,
	.stacks_in_2202694.CR3_RS.cleanResp2,
	.stacks_in_2202694.CR3_RS.cleanResp3 {
		float: left !important;
		width: 100% !important;
		margin: 0 0 10px 0!important;
	}
	.stacks_in_2202694.CR3_RS.CR3_Goff {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
	.stacks_in_2202694.CR3_M {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2202694.CR4_L {
	float: left;
}
.stacks_in_2202694.CR4_R {
	float: left;
}
.stacks_in_2202694.CR4 {
	width: 23.5%;
}
.stacks_in_2202694.CR4_S {
	width: 23.6%;
}
.stacks_in_2202694.CR4_LF,
.stacks_in_2202694.CR4_LL,
.stacks_in_2202694.CR4_LF2 {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202694.CR4_LF {
	margin: 0 1% 10px 0;
}
.stacks_in_2202694.CR4_LL2 {
	margin: 0 0 10px 1%;
	float: right;
}
@media (max-width: 1074px) {
	.stacks_in_2202694.CR4_S{
		width: 23.5%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202694.CR4 {
		width: 49%;
	}
	.stacks_in_2202694.CR4_S {
		width: 49%;
	}
	.stacks_in_2202694.CR4_LF {
		float: left;
		margin: 0 1% 10px 0 ;
	}
	.stacks_in_2202694.CR4_LL {
		float: left;
		margin: 0 0 10px 1% ;
	}
	.stacks_in_2202694.CR4_LF2 {
		float: left;
		margin: 0 1% 10px 0 ;
	}
	.stacks_in_2202694.CR4_LL2 {
		float: left;
		margin: 0 0 10px 1% ;
	}
	.stacks_in_2202694.CR4_R {
		float:left;
	}
	.stacks_in_2202694.CR4.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202694.CR4_S.CR4_Goff,
	.stacks_in_2202694.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202694.CR4_LF.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202694.CR4_LL.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202694.CR4_LF2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202694.CR4_LL2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
}

@media (max-width: 600px){
	.stacks_in_2202694.CR4 {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR4_S {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR4.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR4_S.CR4_Goff,
	.stacks_in_2202694.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2202694 .CR5_L {
	float: left;
}
.stacks_in_2202694 .CR5_R {
	float: left;
}
.stacks_in_2202694 .CR5 {
	width: 18.4%;
}
.stacks_in_2202694.CR5_S {
	width: 18.4%;
}
.stacks_in_2202694.CR5_M {
	float: left;
	margin: 0 1% 10px 1%;
}
.stacks_in_2202694.CR5_LF,
.stacks_in_2202694.CR5_LL,
.stacks_in_2202694.CR5_RF,
.stacks_in_2202694.CR5_RL {
	float: left;
	margin: 0 1% 10px 1%;
}
.stacks_in_2202694.cleanRespone5_First {
	margin: 0 1% 10px 0;
}
.stacks_in_2202694.cleanRespone5_Last {
	float:right;
	margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
	.stacks_in_2202694.CR5, .stacks_in_2202694.CR5_S {
		width: 49%;
	}
	.stacks_in_2202694.CR5_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202694.CR5_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202694.CR5.cleanRespone5_Last,
	.stacks_in_2202694.CR5_S.cleanRespone5_Last {
		float: left;
		width: 99.8% ;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202694.CR5.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202694.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202694.CR5_LF.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR5_LL.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.cleanRespone5_Last.CR5_Goff,
	.stacks_in_2202694.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
		float: left;
		width: 100% ;
		margin: 0 auto 10px auto;
	}

	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202694.CR5.cleanResp2,
	.stacks_in_2202694.CR5_S.cleanResp2 {
		width: 49%;
	}
	.stacks_in_2202694.CR5_LF.cleanResp2,
	.stacks_in_2202694.cleanRespone5_Last.cleanResp2 {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202694.CR5_LL.cleanResp2 {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202694.CR5.cleanRespone5_First.cleanResp2,
	.stacks_in_2202694.CR5_S.cleanRespone5_First.cleanResp2 {
		float: left;
		width: 99.8%;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202694.CR5.cleanResp2.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202694.CR5_S.cleanResp2.CR5_Goff,
	.stacks_in_2202694.CR5_R1.CR5_LF.cleanRespone5_Last.cleanResp2.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202694.CR5_LF.cleanResp2.CR5_Goff,
	.stacks_in_2202694.cleanRespone5_Last.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
		
	}
	.stacks_in_2202694.CR5_LL.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.cleanRespone5_First.cleanResp2.CR5_Goff,
	.stacks_in_2202694.cleanRespone5_First.cleanResp2.CR5_S.CR5_Goff {
		float: left;
		width: 100%;
		margin: 0 auto 10px auto;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202694.CR5.CR5_LL.cleanResp2,
	.stacks_in_2202694.CR5.CR5_LF.cleanResp2,
	.stacks_in_2202694.CR5.CR5_LL.cleanResp1,
	.stacks_in_2202694.CR5.CR5_LF.cleanResp1,
	.stacks_in_2202694.CR5_S.CR5_LL.cleanResp2,
	.stacks_in_2202694.CR5_S.CR5_LF.cleanResp2,
	.stacks_in_2202694.CR5_S.CR5_LL.cleanResp1,
	.stacks_in_2202694.CR5_S.CR5_LF.cleanResp1 {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR5.CR5_Goff,
	.stacks_in_2202694.CR5_S.CR5_Goff,
	.stacks_in_2202694.CR5_LL.cleanResp2.CR5_Goff {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2202694.CR6_L,
.stacks_in_2202694.CR6_L1 {
	float: left;
}
.stacks_in_2202694.CR6_R,
.stacks_in_2202694.CR6_R1 {
	float: left;
}
.stacks_in_2202694.CR6 {
	width: 15%;
}
.stacks_in_2202694.CR6_S {
	width: 15.2%;
}
.stacks_in_2202694.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_2202694.CR6_LF,
.stacks_in_2202694.CR6_LL,
.stacks_in_2202694.CR6_RF,
.stacks_in_2202694.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202694.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_2202694.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_2202694.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202694.CR6,
	.stacks_in_2202694.CR6_S {
		width: 49%;
	}
	.stacks_in_2202694.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202694.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202694.CR6.CR6_Goff,
	.stacks_in_2202694.CR6_S.CR6_Goff,
	.stacks_in_2202694.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202694.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202694.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202694.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202694.CR6,
	.stacks_in_2202694.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202696Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202696Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202696Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202696Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202696Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202696Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202696Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202696Calligrapher h6, .stacks_in_2202696Calligrapher h5, .stacks_in_2202696Calligrapher h4, .stacks_in_2202696Calligrapher h3, .stacks_in_2202696Calligrapher h2, .stacks_in_2202696Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202696Calligrapher, .stacks_in_2202696Calligrapher h1, .stacks_in_2202696Calligrapher h2, .stacks_in_2202696Calligrapher h3, .stacks_in_2202696Calligrapher h4, .stacks_in_2202696Calligrapher h5, .stacks_in_2202696Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202696Calligrapher, .stacks_in_2202696Calligrapher h1, .stacks_in_2202696Calligrapher h2, .stacks_in_2202696Calligrapher h3, .stacks_in_2202696Calligrapher h4, .stacks_in_2202696Calligrapher h5, .stacks_in_2202696Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202696targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202696Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202696Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202696Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202696Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202701Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202701Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202701Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202701Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202701Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202701Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202701Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202701Calligrapher h6, .stacks_in_2202701Calligrapher h5, .stacks_in_2202701Calligrapher h4, .stacks_in_2202701Calligrapher h3, .stacks_in_2202701Calligrapher h2, .stacks_in_2202701Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202701Calligrapher, .stacks_in_2202701Calligrapher h1, .stacks_in_2202701Calligrapher h2, .stacks_in_2202701Calligrapher h3, .stacks_in_2202701Calligrapher h4, .stacks_in_2202701Calligrapher h5, .stacks_in_2202701Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202701Calligrapher, .stacks_in_2202701Calligrapher h1, .stacks_in_2202701Calligrapher h2, .stacks_in_2202701Calligrapher h3, .stacks_in_2202701Calligrapher h4, .stacks_in_2202701Calligrapher h5, .stacks_in_2202701Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202701targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202701Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202701Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202701Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202701Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203283Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203283Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203283Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203283Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203283Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203283Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203283Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203283Calligrapher h6, .stacks_in_2203283Calligrapher h5, .stacks_in_2203283Calligrapher h4, .stacks_in_2203283Calligrapher h3, .stacks_in_2203283Calligrapher h2, .stacks_in_2203283Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203283Calligrapher, .stacks_in_2203283Calligrapher h1, .stacks_in_2203283Calligrapher h2, .stacks_in_2203283Calligrapher h3, .stacks_in_2203283Calligrapher h4, .stacks_in_2203283Calligrapher h5, .stacks_in_2203283Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2203283Calligrapher, .stacks_in_2203283Calligrapher h1, .stacks_in_2203283Calligrapher h2, .stacks_in_2203283Calligrapher h3, .stacks_in_2203283Calligrapher h4, .stacks_in_2203283Calligrapher h5, .stacks_in_2203283Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203283targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203283Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2203283Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2203283Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2203283Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203285 {
	padding: 0px 0px 20px 0px;
}
#ncp-stacks_in_2202706 img{max-width:100%;height:auto; width:auto;}#ncp-stacks_in_2202706.s2 .c.s1_2 .c-pad,#ncp-stacks_in_2202706.s3 .c.s1_3 .c-pad,#ncp-stacks_in_2202706.s4 .c.s1_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_2202706.s3 .c.s2_3 .c-pad,#ncp-stacks_in_2202706.s4 .c.s2_4 .c-pad,#ncp-stacks_in_2202706.s4 .c.s3_4 .c-pad{padding:0 2px}#ncp-stacks_in_2202706.s2 .c.s2_2 .c-pad,#ncp-stacks_in_2202706.s3 .c.s3_3 .c-pad,#ncp-stacks_in_2202706.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}@media only screen and (max-width:600px){#ncp-stacks_in_2202706 .c{margin:1% 0;padding:4px 0;width:100%}#ncp-stacks_in_2202706 .c:first-child,#ncp-stacks_in_2202706.s4 .c.s1_4,#ncp-stacks_in_2202706.s4 .c.s2_4{padding:0 0 4px}#ncp-stacks_in_2202706 .c:last-child,#ncp-stacks_in_2202706.s4 .c.s3_4,#ncp-stacks_in_2202706.s4 .c.s4_4{padding:4px 0 0}#ncp-stacks_in_2202706.s2 .c-pad,#ncp-stacks_in_2202706.s3 .c-pad{padding:0 !important}#ncp-stacks_in_2202706.s4 .c{width:49.2%}#ncp-stacks_in_2202706.s4 .c.s1_4 .c-pad,#ncp-stacks_in_2202706.s4 .c.s3_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_2202706.s4 .c.s2_4 .c-pad,#ncp-stacks_in_2202706.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}}@media only screen and (max-width:300px){#ncp-stacks_in_2202706 .c .c-pad{padding:0 !important}#ncp-stacks_in_2202706.s4 .c{width:100%}}
#usefulStackWrapperstacks_in_2203235 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 600px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203235 {
	padding-bottom: 0%;
	padding-top: 10%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203235 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203237Calligrapher{			font-size: 180% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.3em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203237Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203237Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203237Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203237Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203237Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203237Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203237Calligrapher h6, .stacks_in_2203237Calligrapher h5, .stacks_in_2203237Calligrapher h4, .stacks_in_2203237Calligrapher h3, .stacks_in_2203237Calligrapher h2, .stacks_in_2203237Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203237Calligrapher, .stacks_in_2203237Calligrapher h1, .stacks_in_2203237Calligrapher h2, .stacks_in_2203237Calligrapher h3, .stacks_in_2203237Calligrapher h4, .stacks_in_2203237Calligrapher h5, .stacks_in_2203237Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203237targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203237Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203237Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203237Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203237Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203239 {
	padding: 40px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203241Calligrapher{			font-size: 120% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203241Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203241Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203241Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203241Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203241Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203241Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203241Calligrapher h6, .stacks_in_2203241Calligrapher h5, .stacks_in_2203241Calligrapher h4, .stacks_in_2203241Calligrapher h3, .stacks_in_2203241Calligrapher h2, .stacks_in_2203241Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203241Calligrapher, .stacks_in_2203241Calligrapher h1, .stacks_in_2203241Calligrapher h2, .stacks_in_2203241Calligrapher h3, .stacks_in_2203241Calligrapher h4, .stacks_in_2203241Calligrapher h5, .stacks_in_2203241Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203241targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203241Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203241Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203241Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203241Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203243 {
	padding: 10px 0px 20px 0px;
}
#usefulStackWrapperstacks_in_2203245 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203245 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203245 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203247Calligrapher{			font-size: 90% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203247Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203247Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203247Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203247Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203247Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203247Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203247Calligrapher h6, .stacks_in_2203247Calligrapher h5, .stacks_in_2203247Calligrapher h4, .stacks_in_2203247Calligrapher h3, .stacks_in_2203247Calligrapher h2, .stacks_in_2203247Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203247Calligrapher, .stacks_in_2203247Calligrapher h1, .stacks_in_2203247Calligrapher h2, .stacks_in_2203247Calligrapher h3, .stacks_in_2203247Calligrapher h4, .stacks_in_2203247Calligrapher h5, .stacks_in_2203247Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203247targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203247Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203247Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203247Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203247Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203249 {
	padding: 5px 0px 40px 0px;
}
#usefulStackWrapperstacks_in_2203251 {
	margin: 0 auto 0 0;
	min-width: 0px;
	max-width: 400px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203251 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203251 {
		display: none;
	}
}












/* Start roundedbox css */

/* general styles edit and preview mode */
#stacks_in_2203253 .stacks_in_2203253bgimagestack
{
	position:relative;
	min-height:10px;
	padding:0px;
	border: 1px solid #FFFFFF;
	-webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    
	-webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}





#stacks_in_2203253 .stacks_in_2203253bgimage
{
	display:none;
}




/* end roundedbox css */
#stacks_in_2203253 {
	background-color: rgba(204, 204, 204, 1.00);
}
/* Backdrop Figure Which Contains The Filter */
.stacks_in_2203256_warehouse_backdrop { 
    height: auto;
        
}

.stacks_in_2203256_warehouse_image {    
    width: 100% !important;
    height: auto;
    
        display: block;     
        margin-left: auto;
        margin-right: auto;
    
    
    
    
    
}

.stacks_in_2203256_cleanborder {
    padding: 5px;
    /*border: solid 1px #bfbfbf; */
    border: solid 1px #000000;
}

/* fixed filters live here */  
.nashville {
  position: relative;
  -webkit-filter: sepia(0.2) contrast(1.2) brightness(1.05) saturate(1.2);
  filter: sepia(0.2) contrast(1.2) brightness(1.05) saturate(1.2); 
}  
.nashville img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}  
.nashville:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2; 
}  
.nashville:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3; 
}  
.nashville::after {
    background: rgba(0, 70, 150, 0.4);
    mix-blend-mode: lighten;
    display: block;
    width: 100% !important;
    height: auto;
}  
.nashville::before {
    background: rgba(247, 176, 153, 0.56);
    mix-blend-mode: darken;
    display: block;
    width: 100% !important;
    height: auto;
}

.gingham {
    position: relative;
    -webkit-filter: brightness(1.05) hue-rotate(-10deg);
    filter: brightness(1.05) hue-rotate(-10deg); 
}  
.gingham img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}  
.gingham:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}  
.gingham:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}  
.gingham::after {
    background: lavender;
    mix-blend-mode: soft-light;
    width: 100% !important;
    height: auto;
}

.walden {
    position: relative;
    -webkit-filter: brightness(1.1) hue-rotate(-10deg) sepia(0.3) saturate(1.6);
    filter: brightness(1.1) hue-rotate(-10deg) sepia(0.3) saturate(1.6); 
}
  
.walden img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.walden:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.walden:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}
  
.walden::after {
    background: #0044cc;
    mix-blend-mode: screen;
    opacity: .3;
    width: 100% !important;
    height: auto;
}

.xpro2 {
  position: relative;
  -webkit-filter: sepia(0.3);
          filter: sepia(0.3); 
}
  
.xpro2 img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.xpro2:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.xpro2:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.xpro2::after {
    background: -webkit-radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, 0.6) 110%);
    background: radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, 0.6) 110%);
    mix-blend-mode: color-burn;
    width: 100% !important;
    height: auto;
}

.valencia {
    position: relative;
    -webkit-filter: contrast(1.08) brightness(1.08) sepia(0.08);
    filter: contrast(1.08) brightness(1.08) sepia(0.08); }
  
.valencia img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.valencia:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2;
}
  
.valencia:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.valencia::after {
    background: #3a0339;
    mix-blend-mode: exclusion;
    opacity: .5;
    width: 100% !important;
    height: auto;
}

.toaster {
    position: relative;
    -webkit-filter: contrast(1.5) brightness(0.9);
    filter: contrast(1.5) brightness(0.9); }
  
.toaster img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.toaster:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.toaster:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}
  
.toaster::after {
    width: 100% !important;
    height: auto;
    background: -webkit-radial-gradient(circle, #804e0f, #3b003b);
    background: radial-gradient(circle, #804e0f, #3b003b);
    mix-blend-mode: screen; 
}

.slumber {
    position: relative;
    -webkit-filter: saturate(0.66) brightness(1.05);
    filter: saturate(0.66) brightness(1.05); 
}
 .slumber img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
.slumber:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
.slumber:after {
    content: '';
    display: block;
    width: 100% !important;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.slumber::after {
    width: 100% !important;
    height: auto;
    background: rgba(125, 105, 24, 0.5);
    mix-blend-mode: soft-light; 
}
  
  .slumber::before {
    width: 100% !important;
    height: auto;
    background: rgba(69, 41, 12, 0.4);
    mix-blend-mode: lighten; 
}

.rise {
  position: relative;
  -webkit-filter: brightness(1.05) sepia(0.2) contrast(0.9) saturate(0.9);
          filter: brightness(1.05) sepia(0.2) contrast(0.9) saturate(0.9); 
}
  
.rise img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.rise:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.rise:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.rise::after {
    background: -webkit-radial-gradient(circle, rgba(232, 197, 152, 0.8), transparent 90%);
    background: radial-gradient(circle, rgba(232, 197, 152, 0.8), transparent 90%);
    mix-blend-mode: overlay;
    opacity: .6; 
    width: 100% !important;
    height: auto;
}
  
.rise::before {
    background: -webkit-radial-gradient(circle, rgba(236, 205, 169, 0.15) 55%, rgba(50, 30, 7, 0.4));
    background: radial-gradient(circle, rgba(236, 205, 169, 0.15) 55%, rgba(50, 30, 7, 0.4));
    mix-blend-mode: multiply; 
    width: 100% !important;
    height: auto;
}

.reyes {
  position: relative;
  -webkit-filter: sepia(0.22) brightness(1.1) contrast(0.85) saturate(0.75);
          filter: sepia(0.22) brightness(1.1) contrast(0.85) saturate(0.75); }
  
.reyes img {
     width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.reyes:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.reyes:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.reyes::after {
    background: #efcdad;
    mix-blend-mode: soft-light;
    opacity: .5; 
    width: 100% !important;
    height: auto;
}

.perpetua {
  position: relative; 
}
  
.perpetua img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.perpetua:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.perpetua:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.perpetua::after {
    background: -webkit-linear-gradient(top, #005b9a, #e6c13d);
    background: linear-gradient(to bottom, #005b9a, #e6c13d);
    mix-blend-mode: soft-light;
    opacity: .5;
    width: 100% !important;
    height: auto;
}

.moon {
  position: relative;
  -webkit-filter: grayscale(1) contrast(1.1) brightness(1.1);
          filter: grayscale(1) contrast(1.1) brightness(1.1); 
}
  
.moon img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.moon:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.moon:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.moon::before {
    background: #a0a0a0;
    mix-blend-mode: soft-light; 
    width: 100% !important;
    height: auto;
}
  
.moon::after {
    background: #383838;
    mix-blend-mode: lighten;
    width: 100% !important;
    height: auto;
}

.mayfair {
  position: relative;
  -webkit-filter: contrast(1.1) saturate(1.1);
          filter: contrast(1.1) saturate(1.1); 
}
  
.mayfair img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.mayfair:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.mayfair:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.mayfair::after {
    background: -webkit-radial-gradient(40% 40%, circle, rgba(255, 255, 255, 0.8), rgba(255, 200, 200, 0.6), #111111 60%);
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.8), rgba(255, 200, 200, 0.6), #111111 60%);
    mix-blend-mode: overlay;
    opacity: .4;
    width: 100% !important;
    height: auto;
}

.maven {
  position: relative;
  -webkit-filter: sepia(0.25) brightness(0.95) contrast(0.95) saturate(1.5);
          filter: sepia(0.25) brightness(0.95) contrast(0.95) saturate(1.5); 
}
.maven img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.maven:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.maven:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.maven:after {
    background: rgba(3, 230, 26, 0.2);
    mix-blend-mode: hue;
    width: 100% !important;
    height: auto;
}

.lofi {
  position: relative;
  -webkit-filter: saturate(1.1) contrast(1.5);
          filter: saturate(1.1) contrast(1.5); 
}
  
.lofi img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.lofi:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.lofi:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.lofi::after {
    background: -webkit-radial-gradient(circle, transparent 70%, #222222 150%);
    background: radial-gradient(circle, transparent 70%, #222222 150%);
    mix-blend-mode: multiply;
    width: 100% !important;
    height: auto;
}

.lark {
  position: relative;
  -webkit-filter: contrast(0.9);
          filter: contrast(0.9); 
}
  
.lark img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.lark:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.lark:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.lark::after {
    background: rgba(242, 242, 242, 0.8);
    mix-blend-mode: darken;
    width: 100% !important;
    height: auto;
}
  
.lark::before {
    background: #22253f;
    mix-blend-mode: color-dodge;
    width: 100% !important;
    height: auto; 
}

.kelvin {
  position: relative; 
}
  
.kelvin img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.kelvin:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.kelvin:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.kelvin::after {
    background: #b77d21;
    mix-blend-mode: overlay;
    width: 100% !important;
    height: auto;
}
  
.kelvin::before {
    background: #382c34;
    mix-blend-mode: color-dodge;
    width: 100% !important;
    height: auto;
}

.inkwell {
  position: relative;
  -webkit-filter: sepia(0.3) contrast(1.1) brightness(1.1) grayscale(1);
          filter: sepia(0.3) contrast(1.1) brightness(1.1) grayscale(1); 
}
  
.inkwell img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.inkwell:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.inkwell:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}

.hudson {
  position: relative;
  -webkit-filter: brightness(1.2) contrast(0.9) saturate(1.1);
          filter: brightness(1.2) contrast(0.9) saturate(1.1); 
}
  
.hudson img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.hudson:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.hudson:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.hudson::after {
    background: -webkit-radial-gradient(circle, #a6b1ff 50%, #342134);
    background: radial-gradient(circle, #a6b1ff 50%, #342134);
    mix-blend-mode: multiply;
    opacity: .5;
    width: 100% !important;
    height: auto;
}


#usefulStackWrapperstacks_in_2203257 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203257 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 7%;
	padding-right: 7%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203257 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203261Calligrapher{			font-size: 83% !important;			color: #666666 !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203261Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203261Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203261Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203261Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203261Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203261Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203261Calligrapher h6, .stacks_in_2203261Calligrapher h5, .stacks_in_2203261Calligrapher h4, .stacks_in_2203261Calligrapher h3, .stacks_in_2203261Calligrapher h2, .stacks_in_2203261Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203261Calligrapher, .stacks_in_2203261Calligrapher h1, .stacks_in_2203261Calligrapher h2, .stacks_in_2203261Calligrapher h3, .stacks_in_2203261Calligrapher h4, .stacks_in_2203261Calligrapher h5, .stacks_in_2203261Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203261targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203261Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203261Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203261Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203261Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203263 {
	padding: 20px 0px 0px 0px;
}

#stacks_in_2203264 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203265Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.5em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203265Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203265Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203265Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203265Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203265Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203265Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203265Calligrapher h6, .stacks_in_2203265Calligrapher h5, .stacks_in_2203265Calligrapher h4, .stacks_in_2203265Calligrapher h3, .stacks_in_2203265Calligrapher h2, .stacks_in_2203265Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203265Calligrapher, .stacks_in_2203265Calligrapher h1, .stacks_in_2203265Calligrapher h2, .stacks_in_2203265Calligrapher h3, .stacks_in_2203265Calligrapher h4, .stacks_in_2203265Calligrapher h5, .stacks_in_2203265Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203265targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203265Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203265Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203265Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203265Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203267 {
	padding: 10px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203269Calligrapher{			font-size: 80% !important;			color: #7F7F7F !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.5em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203269Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203269Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203269Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203269Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203269Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203269Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203269Calligrapher h6, .stacks_in_2203269Calligrapher h5, .stacks_in_2203269Calligrapher h4, .stacks_in_2203269Calligrapher h3, .stacks_in_2203269Calligrapher h2, .stacks_in_2203269Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203269Calligrapher, .stacks_in_2203269Calligrapher h1, .stacks_in_2203269Calligrapher h2, .stacks_in_2203269Calligrapher h3, .stacks_in_2203269Calligrapher h4, .stacks_in_2203269Calligrapher h5, .stacks_in_2203269Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203269targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203269Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203269Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203269Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203269Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203271 {
	padding: 20px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203273Calligrapher{			font-size: 70% !important;			color: #4C4C4C !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203273Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203273Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203273Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203273Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203273Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203273Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203273Calligrapher h6, .stacks_in_2203273Calligrapher h5, .stacks_in_2203273Calligrapher h4, .stacks_in_2203273Calligrapher h3, .stacks_in_2203273Calligrapher h2, .stacks_in_2203273Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203273Calligrapher, .stacks_in_2203273Calligrapher h1, .stacks_in_2203273Calligrapher h2, .stacks_in_2203273Calligrapher h3, .stacks_in_2203273Calligrapher h4, .stacks_in_2203273Calligrapher h5, .stacks_in_2203273Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203273targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203273Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203273Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203273Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203273Calligrapher a:hover{			color: #E6E6E6 !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203275 {
	padding: 15px 0px 30px 0px;
}
#usefulStackWrapperstacks_in_2203277 {
	margin: 0 auto 0 0;
	min-width: 0px;
	max-width: 400px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203277 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203277 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203279Calligrapher{			font-size: 80% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203279Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203279Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203279Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203279Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203279Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203279Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203279Calligrapher h6, .stacks_in_2203279Calligrapher h5, .stacks_in_2203279Calligrapher h4, .stacks_in_2203279Calligrapher h3, .stacks_in_2203279Calligrapher h2, .stacks_in_2203279Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203279Calligrapher, .stacks_in_2203279Calligrapher h1, .stacks_in_2203279Calligrapher h2, .stacks_in_2203279Calligrapher h3, .stacks_in_2203279Calligrapher h4, .stacks_in_2203279Calligrapher h5, .stacks_in_2203279Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203279targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203279Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203279Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203279Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203279Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203281 {
	padding: 20px 0px 80px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202711Calligrapher{			font-size: 180% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202711Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202711Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202711Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202711Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202711Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202711Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202711Calligrapher h6, .stacks_in_2202711Calligrapher h5, .stacks_in_2202711Calligrapher h4, .stacks_in_2202711Calligrapher h3, .stacks_in_2202711Calligrapher h2, .stacks_in_2202711Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202711Calligrapher, .stacks_in_2202711Calligrapher h1, .stacks_in_2202711Calligrapher h2, .stacks_in_2202711Calligrapher h3, .stacks_in_2202711Calligrapher h4, .stacks_in_2202711Calligrapher h5, .stacks_in_2202711Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202711Calligrapher, .stacks_in_2202711Calligrapher h1, .stacks_in_2202711Calligrapher h2, .stacks_in_2202711Calligrapher h3, .stacks_in_2202711Calligrapher h4, .stacks_in_2202711Calligrapher h5, .stacks_in_2202711Calligrapher h6{	text-shadow: 1px 1px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202711targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202711Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202711Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202711Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202711Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202713 {
	padding: 30px 0px 0px 0px;
}
/*
 * cleanResponse
 * Version: 2.0.4
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns
 */

/***************************************  NO GUTTER **********************************/

.stacks_in_2202715.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202715.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

/****************  3 Non ******************/

.stacks_in_2202715.CR3_L.CR3_Goff {
	width: 33%;
}
.stacks_in_2202715.CR3_R.CR3_Goff {
	width: 33%;
}
.stacks_in_2202715.CR3_RS.CR3_Goff {
	width: 33.2%;
	float: right;
}
.stacks_in_2202715.CR3_M.CR3_Goff {
	margin: 0 0% 10px 0%;
	width: 34%;
}

/****************  4 Non ******************/

.stacks_in_2202715.CR4.CR4_Goff {
	width: 25%;
}
.stacks_in_2202715.CR4_S.CR4_Goff {
	width: 25%;
}
.stacks_in_2202715.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
	width: 25.1%;
	float: left;
}
.stacks_in_2202715.CR4_LF.CR4_Goff, .stacks_in_2202715.CR4_LL.CR4_Goff, .stacks_in_2202715.CR4_LF2.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202715.CR4_LF.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202715.CR4_LL2.CR4_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
	.stacks_in_2202715.CR4_R.CR4_LL2.CR4_S.CR4_Goff{
		float: left;
		width: 25%;
	}
}

/****************  5 Non ******************/

.stacks_in_2202715.CR5.CR5_Goff {
	width: 20%;
}
.stacks_in_2202715.CR5_S.CR5_Goff {
	width: 20%;
}
.stacks_in_2202715.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
	width: 20.3%;
}
.stacks_in_2202715.CR5_M.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202715.CR5_LF.CR5_Goff, .stacks_in_2202715.CR5_LL.CR5_Goff, .stacks_in_2202715.CR5_RF.CR5_Goff, .stacks_in_2202715.CR5_RL.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202715.cleanRespone5_First.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202715.cleanRespone5_Last.CR5_Goff {
	margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_2202715.CR6.CR6_Goff {
	width: 16.66%;
}
.stacks_in_2202715.CR6_S.CR6_Goff {
	width: 16.69%;
}
.stacks_in_2202715.CR6_R1.CR6_LL.CR6_S.CR6_Goff, stacks_in_2202715.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
	width: 17%;
}
.stacks_in_2202715.CR6_M.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202715.CR6_LF.CR6_Goff,
.stacks_in_2202715.CR6_LL.CR6_Goff,
.stacks_in_2202715.CR6_RF.CR6_Goff,
.stacks_in_2202715.CR6_RL.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202715.CR6_L1.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202715.CR6_R1.CR6_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
		.stacks_in_2202715.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
		.stacks_in_2202715.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
			width: 16.6%;
	}
}

/***************************************  1 COLUMN **********************************/

.stacks_in_2202715.cleanResponse1_L {
	width: 100%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202715.cleanResponse1_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2202715.cleanResponse2_L {
	float: left;
	width: 48%;
	margin: 0 0 10px 0;
}
.stacks_in_2202715.cleanResponse2_R {
	float: right;
	width: 48%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202715.cleanResponse2_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.cleanResponse2_R {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.cleanResponse2_L.CR2_Goff {
		width: 100%;
		margin:0 0 10px 0;
	}
	.stacks_in_2202715.cleanResponse2_R.CR2_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2202715.CR3_L {
	float: left;
	width: 31%;
	margin: 0 0 10px 0;

}
.stacks_in_2202715.CR3_R {
	float: right;
	width: 31%;
	margin: 0 0 10px 0;
}
.stacks_in_2202715.CR3_M {
	float: left;
	margin: 0 4% 10px 4%;
	width: 30%;
}
@media (max-width: 800px) {
	
	/*  ============ LARGE BOTTOM ================== */
	
	.stacks_in_2202715.CR3_L.cleanResp1 {
		float: left;
		width: 48%;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202715.CR3_M.cleanResp1 {
		float: left;
		width: 48%;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202715.CR3_R.cleanResp1,
	.stacks_in_2202715.CR3_RS.cleanResp1 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR3_L.cleanResp1.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR3_M.cleanResp1.CR3_Goff  {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR3_R.cleanResp1.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR3_RS.cleanResp1.CR3_Goff  {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	
	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202715.CR3_L.cleanResp2 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR3_M.cleanResp2 {
		float: left;
		width: 48%;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202715.CR3_R.cleanResp2 {
		float: left;
		width: 48%;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202715.CR3_RS.cleanResp2 {
		float: left;
		width: 48%;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202715.CR3_L.cleanResp2.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR3_M.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR3_R.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR3_RS.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	
}
@media (max-width: 600px){
	.stacks_in_2202715.CR3_L,
	.stacks_in_2202715.CR3_R.cleanResp2,
	.stacks_in_2202715.CR3_R,
	.stacks_in_2202715.CR3_R.cleanResp1,
	.stacks_in_2202715.CR3_RS.cleanResp2,
	.stacks_in_2202715.CR3_RS.cleanResp3 {
		float: left !important;
		width: 100% !important;
		margin: 0 0 10px 0!important;
	}
	.stacks_in_2202715.CR3_RS.CR3_Goff {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
	.stacks_in_2202715.CR3_M {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2202715.CR4_L {
	float: left;
}
.stacks_in_2202715.CR4_R {
	float: left;
}
.stacks_in_2202715.CR4 {
	width: 21.5%;
}
.stacks_in_2202715.CR4_S {
	width: 21.6%;
}
.stacks_in_2202715.CR4_LF,
.stacks_in_2202715.CR4_LL,
.stacks_in_2202715.CR4_LF2 {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202715.CR4_LF {
	margin: 0 2% 10px 0;
}
.stacks_in_2202715.CR4_LL2 {
	margin: 0 0 10px 2%;
	float: right;
}
@media (max-width: 1074px) {
	.stacks_in_2202715.CR4_S{
		width: 21.5%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202715.CR4 {
		width: 47%;
	}
	.stacks_in_2202715.CR4_S {
		width: 47%;
	}
	.stacks_in_2202715.CR4_LF {
		float: left;
		margin: 0 2% 10px 0 ;
	}
	.stacks_in_2202715.CR4_LL {
		float: left;
		margin: 0 0 10px 2% ;
	}
	.stacks_in_2202715.CR4_LF2 {
		float: left;
		margin: 0 2% 10px 0 ;
	}
	.stacks_in_2202715.CR4_LL2 {
		float: left;
		margin: 0 0 10px 2% ;
	}
	.stacks_in_2202715.CR4_R {
		float:left;
	}
	.stacks_in_2202715.CR4.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202715.CR4_S.CR4_Goff,
	.stacks_in_2202715.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202715.CR4_LF.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202715.CR4_LL.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202715.CR4_LF2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202715.CR4_LL2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
}

@media (max-width: 600px){
	.stacks_in_2202715.CR4 {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR4_S {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR4.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR4_S.CR4_Goff,
	.stacks_in_2202715.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2202715 .CR5_L {
	float: left;
}
.stacks_in_2202715 .CR5_R {
	float: left;
}
.stacks_in_2202715 .CR5 {
	width: 16.4%;
}
.stacks_in_2202715.CR5_S {
	width: 16.4%;
}
.stacks_in_2202715.CR5_M {
	float: left;
	margin: 0 2% 10px 2%;
}
.stacks_in_2202715.CR5_LF,
.stacks_in_2202715.CR5_LL,
.stacks_in_2202715.CR5_RF,
.stacks_in_2202715.CR5_RL {
	float: left;
	margin: 0 2% 10px 2%;
}
.stacks_in_2202715.cleanRespone5_First {
	margin: 0 2% 10px 0;
}
.stacks_in_2202715.cleanRespone5_Last {
	float:right;
	margin: 0 0 10px 2%;
}
@media (max-width: 800px) {
	.stacks_in_2202715.CR5, .stacks_in_2202715.CR5_S {
		width: 47%;
	}
	.stacks_in_2202715.CR5_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202715.CR5_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202715.CR5.cleanRespone5_Last,
	.stacks_in_2202715.CR5_S.cleanRespone5_Last {
		float: left;
		width: 99.8% ;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202715.CR5.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202715.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202715.CR5_LF.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR5_LL.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.cleanRespone5_Last.CR5_Goff,
	.stacks_in_2202715.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
		float: left;
		width: 100% ;
		margin: 0 auto 10px auto;
	}

	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202715.CR5.cleanResp2,
	.stacks_in_2202715.CR5_S.cleanResp2 {
		width: 47%;
	}
	.stacks_in_2202715.CR5_LF.cleanResp2,
	.stacks_in_2202715.cleanRespone5_Last.cleanResp2 {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202715.CR5_LL.cleanResp2 {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202715.CR5.cleanRespone5_First.cleanResp2,
	.stacks_in_2202715.CR5_S.cleanRespone5_First.cleanResp2 {
		float: left;
		width: 99.8%;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202715.CR5.cleanResp2.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202715.CR5_S.cleanResp2.CR5_Goff,
	.stacks_in_2202715.CR5_R1.CR5_LF.cleanRespone5_Last.cleanResp2.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202715.CR5_LF.cleanResp2.CR5_Goff,
	.stacks_in_2202715.cleanRespone5_Last.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
		
	}
	.stacks_in_2202715.CR5_LL.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.cleanRespone5_First.cleanResp2.CR5_Goff,
	.stacks_in_2202715.cleanRespone5_First.cleanResp2.CR5_S.CR5_Goff {
		float: left;
		width: 100%;
		margin: 0 auto 10px auto;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202715.CR5.CR5_LL.cleanResp2,
	.stacks_in_2202715.CR5.CR5_LF.cleanResp2,
	.stacks_in_2202715.CR5.CR5_LL.cleanResp1,
	.stacks_in_2202715.CR5.CR5_LF.cleanResp1,
	.stacks_in_2202715.CR5_S.CR5_LL.cleanResp2,
	.stacks_in_2202715.CR5_S.CR5_LF.cleanResp2,
	.stacks_in_2202715.CR5_S.CR5_LL.cleanResp1,
	.stacks_in_2202715.CR5_S.CR5_LF.cleanResp1 {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR5.CR5_Goff,
	.stacks_in_2202715.CR5_S.CR5_Goff,
	.stacks_in_2202715.CR5_LL.cleanResp2.CR5_Goff {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2202715.CR6_L,
.stacks_in_2202715.CR6_L1 {
	float: left;
}
.stacks_in_2202715.CR6_R,
.stacks_in_2202715.CR6_R1 {
	float: left;
}
.stacks_in_2202715.CR6 {
	width: 13%;
}
.stacks_in_2202715.CR6_S {
	width: 13.2%;
}
.stacks_in_2202715.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202715.CR6_LF,
.stacks_in_2202715.CR6_LL,
.stacks_in_2202715.CR6_RF,
.stacks_in_2202715.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202715.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202715.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202715.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202715.CR6,
	.stacks_in_2202715.CR6_S {
		width: 47%;
	}
	.stacks_in_2202715.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202715.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202715.CR6.CR6_Goff,
	.stacks_in_2202715.CR6_S.CR6_Goff,
	.stacks_in_2202715.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202715.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202715.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202715.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202715.CR6,
	.stacks_in_2202715.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202715 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202717Calligrapher{			font-size: 130% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202717Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202717Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202717Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202717Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202717Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202717Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202717Calligrapher h6, .stacks_in_2202717Calligrapher h5, .stacks_in_2202717Calligrapher h4, .stacks_in_2202717Calligrapher h3, .stacks_in_2202717Calligrapher h2, .stacks_in_2202717Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202717Calligrapher, .stacks_in_2202717Calligrapher h1, .stacks_in_2202717Calligrapher h2, .stacks_in_2202717Calligrapher h3, .stacks_in_2202717Calligrapher h4, .stacks_in_2202717Calligrapher h5, .stacks_in_2202717Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202717Calligrapher, .stacks_in_2202717Calligrapher h1, .stacks_in_2202717Calligrapher h2, .stacks_in_2202717Calligrapher h3, .stacks_in_2202717Calligrapher h4, .stacks_in_2202717Calligrapher h5, .stacks_in_2202717Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202717targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202717Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202717Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202717Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202717Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202721Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202721Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202721Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202721Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202721Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202721Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202721Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202721Calligrapher h6, .stacks_in_2202721Calligrapher h5, .stacks_in_2202721Calligrapher h4, .stacks_in_2202721Calligrapher h3, .stacks_in_2202721Calligrapher h2, .stacks_in_2202721Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202721Calligrapher, .stacks_in_2202721Calligrapher h1, .stacks_in_2202721Calligrapher h2, .stacks_in_2202721Calligrapher h3, .stacks_in_2202721Calligrapher h4, .stacks_in_2202721Calligrapher h5, .stacks_in_2202721Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202721Calligrapher, .stacks_in_2202721Calligrapher h1, .stacks_in_2202721Calligrapher h2, .stacks_in_2202721Calligrapher h3, .stacks_in_2202721Calligrapher h4, .stacks_in_2202721Calligrapher h5, .stacks_in_2202721Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202721targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202721Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202721Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202721Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202721Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202726Calligrapher{			font-size: 130% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202726Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202726Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202726Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202726Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202726Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202726Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202726Calligrapher h6, .stacks_in_2202726Calligrapher h5, .stacks_in_2202726Calligrapher h4, .stacks_in_2202726Calligrapher h3, .stacks_in_2202726Calligrapher h2, .stacks_in_2202726Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202726Calligrapher, .stacks_in_2202726Calligrapher h1, .stacks_in_2202726Calligrapher h2, .stacks_in_2202726Calligrapher h3, .stacks_in_2202726Calligrapher h4, .stacks_in_2202726Calligrapher h5, .stacks_in_2202726Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202726Calligrapher, .stacks_in_2202726Calligrapher h1, .stacks_in_2202726Calligrapher h2, .stacks_in_2202726Calligrapher h3, .stacks_in_2202726Calligrapher h4, .stacks_in_2202726Calligrapher h5, .stacks_in_2202726Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202726targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202726Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202726Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202726Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202726Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202730Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202730Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202730Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202730Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202730Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202730Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202730Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202730Calligrapher h6, .stacks_in_2202730Calligrapher h5, .stacks_in_2202730Calligrapher h4, .stacks_in_2202730Calligrapher h3, .stacks_in_2202730Calligrapher h2, .stacks_in_2202730Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202730Calligrapher, .stacks_in_2202730Calligrapher h1, .stacks_in_2202730Calligrapher h2, .stacks_in_2202730Calligrapher h3, .stacks_in_2202730Calligrapher h4, .stacks_in_2202730Calligrapher h5, .stacks_in_2202730Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202730Calligrapher, .stacks_in_2202730Calligrapher h1, .stacks_in_2202730Calligrapher h2, .stacks_in_2202730Calligrapher h3, .stacks_in_2202730Calligrapher h4, .stacks_in_2202730Calligrapher h5, .stacks_in_2202730Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202730targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202730Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202730Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202730Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202730Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202734Calligrapher{			font-size: 130% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202734Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202734Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202734Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202734Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202734Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202734Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202734Calligrapher h6, .stacks_in_2202734Calligrapher h5, .stacks_in_2202734Calligrapher h4, .stacks_in_2202734Calligrapher h3, .stacks_in_2202734Calligrapher h2, .stacks_in_2202734Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202734Calligrapher, .stacks_in_2202734Calligrapher h1, .stacks_in_2202734Calligrapher h2, .stacks_in_2202734Calligrapher h3, .stacks_in_2202734Calligrapher h4, .stacks_in_2202734Calligrapher h5, .stacks_in_2202734Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202734Calligrapher, .stacks_in_2202734Calligrapher h1, .stacks_in_2202734Calligrapher h2, .stacks_in_2202734Calligrapher h3, .stacks_in_2202734Calligrapher h4, .stacks_in_2202734Calligrapher h5, .stacks_in_2202734Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202734targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202734Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202734Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202734Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202734Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202734 {
	padding: 20px 0px 0px 0px;
}
/*
 * cleanResponse
 * Version: 2.0.4
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns
 */

/***************************************  NO GUTTER **********************************/

.stacks_in_2202738.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202738.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

/****************  3 Non ******************/

.stacks_in_2202738.CR3_L.CR3_Goff {
	width: 33%;
}
.stacks_in_2202738.CR3_R.CR3_Goff {
	width: 33%;
}
.stacks_in_2202738.CR3_RS.CR3_Goff {
	width: 33.2%;
	float: right;
}
.stacks_in_2202738.CR3_M.CR3_Goff {
	margin: 0 0% 10px 0%;
	width: 34%;
}

/****************  4 Non ******************/

.stacks_in_2202738.CR4.CR4_Goff {
	width: 25%;
}
.stacks_in_2202738.CR4_S.CR4_Goff {
	width: 25%;
}
.stacks_in_2202738.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
	width: 25.1%;
	float: left;
}
.stacks_in_2202738.CR4_LF.CR4_Goff, .stacks_in_2202738.CR4_LL.CR4_Goff, .stacks_in_2202738.CR4_LF2.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202738.CR4_LF.CR4_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202738.CR4_LL2.CR4_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
	.stacks_in_2202738.CR4_R.CR4_LL2.CR4_S.CR4_Goff{
		float: left;
		width: 25%;
	}
}

/****************  5 Non ******************/

.stacks_in_2202738.CR5.CR5_Goff {
	width: 20%;
}
.stacks_in_2202738.CR5_S.CR5_Goff {
	width: 20%;
}
.stacks_in_2202738.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
	width: 20.3%;
}
.stacks_in_2202738.CR5_M.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202738.CR5_LF.CR5_Goff, .stacks_in_2202738.CR5_LL.CR5_Goff, .stacks_in_2202738.CR5_RF.CR5_Goff, .stacks_in_2202738.CR5_RL.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202738.cleanRespone5_First.CR5_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202738.cleanRespone5_Last.CR5_Goff {
	margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_2202738.CR6.CR6_Goff {
	width: 16.66%;
}
.stacks_in_2202738.CR6_S.CR6_Goff {
	width: 16.69%;
}
.stacks_in_2202738.CR6_R1.CR6_LL.CR6_S.CR6_Goff, stacks_in_2202738.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
	width: 17%;
}
.stacks_in_2202738.CR6_M.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202738.CR6_LF.CR6_Goff,
.stacks_in_2202738.CR6_LL.CR6_Goff,
.stacks_in_2202738.CR6_RF.CR6_Goff,
.stacks_in_2202738.CR6_RL.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202738.CR6_L1.CR6_Goff {
	margin: 0 0 10px 0;
}
.stacks_in_2202738.CR6_R1.CR6_Goff {
	margin: 0 0 10px 0;
}
@media (max-width: 1099px) {
		.stacks_in_2202738.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
		.stacks_in_2202738.CR6_L1.CR6_LF.CR6_Goff.CR6_S.CR6_Goff  {
			width: 16.6%;
	}
}

/***************************************  1 COLUMN **********************************/

.stacks_in_2202738.cleanResponse1_L {
	width: 100%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202738.cleanResponse1_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2202738.cleanResponse2_L {
	float: left;
	width: 49%;
	margin: 0 0 10px 0;
}
.stacks_in_2202738.cleanResponse2_R {
	float: right;
	width: 49%;
	margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
	.stacks_in_2202738.cleanResponse2_L {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.cleanResponse2_R {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.cleanResponse2_L.CR2_Goff {
		width: 100%;
		margin:0 0 10px 0;
	}
	.stacks_in_2202738.cleanResponse2_R.CR2_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2202738.CR3_L {
	float: left;
	width: 32%;
	margin: 0 0 10px 0;

}
.stacks_in_2202738.CR3_R {
	float: right;
	width: 32%;
	margin: 0 0 10px 0;
}
.stacks_in_2202738.CR3_M {
	float: left;
	margin: 0 2% 10px 2%;
	width: 32%;
}
@media (max-width: 800px) {
	
	/*  ============ LARGE BOTTOM ================== */
	
	.stacks_in_2202738.CR3_L.cleanResp1 {
		float: left;
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202738.CR3_M.cleanResp1 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202738.CR3_R.cleanResp1,
	.stacks_in_2202738.CR3_RS.cleanResp1 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR3_L.cleanResp1.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR3_M.cleanResp1.CR3_Goff  {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR3_R.cleanResp1.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR3_RS.cleanResp1.CR3_Goff  {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	
	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202738.CR3_L.cleanResp2 {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR3_M.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202738.CR3_R.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202738.CR3_RS.cleanResp2 {
		float: left;
		width: 49%;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202738.CR3_L.cleanResp2.CR3_Goff {
		float: left;
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR3_M.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR3_R.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR3_RS.cleanResp2.CR3_Goff {
		float: left;
		width: 50%;
		margin: 0 0 10px 0;
	}
	
}
@media (max-width: 600px){
	.stacks_in_2202738.CR3_L,
	.stacks_in_2202738.CR3_R.cleanResp2,
	.stacks_in_2202738.CR3_R,
	.stacks_in_2202738.CR3_R.cleanResp1,
	.stacks_in_2202738.CR3_RS.cleanResp2,
	.stacks_in_2202738.CR3_RS.cleanResp3 {
		float: left !important;
		width: 100% !important;
		margin: 0 0 10px 0!important;
	}
	.stacks_in_2202738.CR3_RS.CR3_Goff {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
	.stacks_in_2202738.CR3_M {
		float: left !important;
		width: 100%!important;
		margin:0 0 10px 0!important;
	}
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2202738.CR4_L {
	float: left;
}
.stacks_in_2202738.CR4_R {
	float: left;
}
.stacks_in_2202738.CR4 {
	width: 23.5%;
}
.stacks_in_2202738.CR4_S {
	width: 23.6%;
}
.stacks_in_2202738.CR4_LF,
.stacks_in_2202738.CR4_LL,
.stacks_in_2202738.CR4_LF2 {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202738.CR4_LF {
	margin: 0 1% 10px 0;
}
.stacks_in_2202738.CR4_LL2 {
	margin: 0 0 10px 1%;
	float: right;
}
@media (max-width: 1074px) {
	.stacks_in_2202738.CR4_S{
		width: 23.5%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202738.CR4 {
		width: 49%;
	}
	.stacks_in_2202738.CR4_S {
		width: 49%;
	}
	.stacks_in_2202738.CR4_LF {
		float: left;
		margin: 0 1% 10px 0 ;
	}
	.stacks_in_2202738.CR4_LL {
		float: left;
		margin: 0 0 10px 1% ;
	}
	.stacks_in_2202738.CR4_LF2 {
		float: left;
		margin: 0 1% 10px 0 ;
	}
	.stacks_in_2202738.CR4_LL2 {
		float: left;
		margin: 0 0 10px 1% ;
	}
	.stacks_in_2202738.CR4_R {
		float:left;
	}
	.stacks_in_2202738.CR4.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202738.CR4_S.CR4_Goff,
	.stacks_in_2202738.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 50%;
	}
	.stacks_in_2202738.CR4_LF.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202738.CR4_LL.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202738.CR4_LF2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
	.stacks_in_2202738.CR4_LL2.CR4_Goff {
		float: left;
		margin: 0 0 10px 0 ;
	}
}

@media (max-width: 600px){
	.stacks_in_2202738.CR4 {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR4_S {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR4.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR4_S.CR4_Goff,
	.stacks_in_2202738.CR4_R.CR4_LL2.CR4_S.CR4_Goff {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2202738 .CR5_L {
	float: left;
}
.stacks_in_2202738 .CR5_R {
	float: left;
}
.stacks_in_2202738 .CR5 {
	width: 18.4%;
}
.stacks_in_2202738.CR5_S {
	width: 18.4%;
}
.stacks_in_2202738.CR5_M {
	float: left;
	margin: 0 1% 10px 1%;
}
.stacks_in_2202738.CR5_LF,
.stacks_in_2202738.CR5_LL,
.stacks_in_2202738.CR5_RF,
.stacks_in_2202738.CR5_RL {
	float: left;
	margin: 0 1% 10px 1%;
}
.stacks_in_2202738.cleanRespone5_First {
	margin: 0 1% 10px 0;
}
.stacks_in_2202738.cleanRespone5_Last {
	float:right;
	margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
	.stacks_in_2202738.CR5, .stacks_in_2202738.CR5_S {
		width: 49%;
	}
	.stacks_in_2202738.CR5_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202738.CR5_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202738.CR5.cleanRespone5_Last,
	.stacks_in_2202738.CR5_S.cleanRespone5_Last {
		float: left;
		width: 99.8% ;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202738.CR5.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202738.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202738.CR5_LF.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR5_LL.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.cleanRespone5_Last.CR5_Goff,
	.stacks_in_2202738.CR5_R1.CR5_LF.cleanRespone5_Last.CR5_S.CR5_Goff {
		float: left;
		width: 100% ;
		margin: 0 auto 10px auto;
	}

	/*  ============ LARGE TOP ================== */
	
	.stacks_in_2202738.CR5.cleanResp2,
	.stacks_in_2202738.CR5_S.cleanResp2 {
		width: 49%;
	}
	.stacks_in_2202738.CR5_LF.cleanResp2,
	.stacks_in_2202738.cleanRespone5_Last.cleanResp2 {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202738.CR5_LL.cleanResp2 {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202738.CR5.cleanRespone5_First.cleanResp2,
	.stacks_in_2202738.CR5_S.cleanRespone5_First.cleanResp2 {
		float: left;
		width: 99.8%;
		margin: 0 auto 10px auto;
	}
	.stacks_in_2202738.CR5.cleanResp2.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202738.CR5_S.cleanResp2.CR5_Goff,
	.stacks_in_2202738.CR5_R1.CR5_LF.cleanRespone5_Last.cleanResp2.CR5_S.CR5_Goff {
		width: 50%;
	}
	.stacks_in_2202738.CR5_LF.cleanResp2.CR5_Goff,
	.stacks_in_2202738.cleanRespone5_Last.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
		
	}
	.stacks_in_2202738.CR5_LL.cleanResp2.CR5_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.cleanRespone5_First.cleanResp2.CR5_Goff,
	.stacks_in_2202738.cleanRespone5_First.cleanResp2.CR5_S.CR5_Goff {
		float: left;
		width: 100%;
		margin: 0 auto 10px auto;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202738.CR5.CR5_LL.cleanResp2,
	.stacks_in_2202738.CR5.CR5_LF.cleanResp2,
	.stacks_in_2202738.CR5.CR5_LL.cleanResp1,
	.stacks_in_2202738.CR5.CR5_LF.cleanResp1,
	.stacks_in_2202738.CR5_S.CR5_LL.cleanResp2,
	.stacks_in_2202738.CR5_S.CR5_LF.cleanResp2,
	.stacks_in_2202738.CR5_S.CR5_LL.cleanResp1,
	.stacks_in_2202738.CR5_S.CR5_LF.cleanResp1 {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR5.CR5_Goff,
	.stacks_in_2202738.CR5_S.CR5_Goff,
	.stacks_in_2202738.CR5_LL.cleanResp2.CR5_Goff {
		width: 100% !important;
		margin: 0 0 10px 0;
	}
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2202738.CR6_L,
.stacks_in_2202738.CR6_L1 {
	float: left;
}
.stacks_in_2202738.CR6_R,
.stacks_in_2202738.CR6_R1 {
	float: left;
}
.stacks_in_2202738.CR6 {
	width: 15%;
}
.stacks_in_2202738.CR6_S {
	width: 15.2%;
}
.stacks_in_2202738.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_2202738.CR6_LF,
.stacks_in_2202738.CR6_LL,
.stacks_in_2202738.CR6_RF,
.stacks_in_2202738.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202738.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_2202738.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_2202738.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202738.CR6,
	.stacks_in_2202738.CR6_S {
		width: 49%;
	}
	.stacks_in_2202738.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202738.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202738.CR6.CR6_Goff,
	.stacks_in_2202738.CR6_S.CR6_Goff,
	.stacks_in_2202738.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202738.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202738.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202738.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202738.CR6,
	.stacks_in_2202738.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202740Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202740Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202740Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202740Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202740Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202740Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202740Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202740Calligrapher h6, .stacks_in_2202740Calligrapher h5, .stacks_in_2202740Calligrapher h4, .stacks_in_2202740Calligrapher h3, .stacks_in_2202740Calligrapher h2, .stacks_in_2202740Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202740Calligrapher, .stacks_in_2202740Calligrapher h1, .stacks_in_2202740Calligrapher h2, .stacks_in_2202740Calligrapher h3, .stacks_in_2202740Calligrapher h4, .stacks_in_2202740Calligrapher h5, .stacks_in_2202740Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202740Calligrapher, .stacks_in_2202740Calligrapher h1, .stacks_in_2202740Calligrapher h2, .stacks_in_2202740Calligrapher h3, .stacks_in_2202740Calligrapher h4, .stacks_in_2202740Calligrapher h5, .stacks_in_2202740Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202740targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202740Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202740Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202740Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202740Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202745Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202745Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202745Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202745Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202745Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202745Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202745Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202745Calligrapher h6, .stacks_in_2202745Calligrapher h5, .stacks_in_2202745Calligrapher h4, .stacks_in_2202745Calligrapher h3, .stacks_in_2202745Calligrapher h2, .stacks_in_2202745Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202745Calligrapher, .stacks_in_2202745Calligrapher h1, .stacks_in_2202745Calligrapher h2, .stacks_in_2202745Calligrapher h3, .stacks_in_2202745Calligrapher h4, .stacks_in_2202745Calligrapher h5, .stacks_in_2202745Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202745Calligrapher, .stacks_in_2202745Calligrapher h1, .stacks_in_2202745Calligrapher h2, .stacks_in_2202745Calligrapher h3, .stacks_in_2202745Calligrapher h4, .stacks_in_2202745Calligrapher h5, .stacks_in_2202745Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202745targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202745Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202745Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202745Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202745Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203287Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203287Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203287Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203287Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203287Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203287Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203287Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203287Calligrapher h6, .stacks_in_2203287Calligrapher h5, .stacks_in_2203287Calligrapher h4, .stacks_in_2203287Calligrapher h3, .stacks_in_2203287Calligrapher h2, .stacks_in_2203287Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203287Calligrapher, .stacks_in_2203287Calligrapher h1, .stacks_in_2203287Calligrapher h2, .stacks_in_2203287Calligrapher h3, .stacks_in_2203287Calligrapher h4, .stacks_in_2203287Calligrapher h5, .stacks_in_2203287Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2203287Calligrapher, .stacks_in_2203287Calligrapher h1, .stacks_in_2203287Calligrapher h2, .stacks_in_2203287Calligrapher h3, .stacks_in_2203287Calligrapher h4, .stacks_in_2203287Calligrapher h5, .stacks_in_2203287Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203287targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203287Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2203287Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2203287Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2203287Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203289 {
	padding: 0px 0px 20px 0px;
}
/* -- Start Split Each css Template -- */



.stacks_in_2203073split {
  display: flex;
}

.stacks_in_2203073leftcol {
  width: 800px;
  min-width: 800px;
  margin-right: 25px;
  margin-top: 0px;
  margin-top: 0px;
}

.stacks_in_2203073rightcol {
  flex-grow: 1;
  margin-left: 25px;
}


@media all and (max-width: 1204px) {
	.stacks_in_2203073leftcol {
	  width: 300px;
	  min-width: 300px;
	}	
}


@media all and (max-width: 768px) {
	.stacks_in_2203073leftcol {
	  width: 200px;
	  min-width: 200px;
	}		
}


@media all and (max-width: 480px) {
	.stacks_in_2203073leftcol {
	  width: 800px;
	  min-width: 800px;
	}	
}






	@media all and (max-width: 768px) {
	


		
			.stacks_in_2203073split {
				flex-wrap: wrap;
			}
			.stacks_in_2203073leftcol {
				order: 1;
				width: 100%;
				min-width: 100%;
				margin-right: 0px;
			}
			.stacks_in_2203073rightcol {
				order: 1;
				min-width: 100%;
				margin-left: 0px;
			}  
			
				.stacks_in_2203073leftcol {
					margin-bottom: 100px;
					margin-top: 0px;
				}
			  
		
		
		
		
		
		#stacks_in_2203073 *{
			text-align: center !important;
		}
		
	}




/* -- right side selected -- */


/* -- End Split Each css Template -- */#usefulStackWrapperstacks_in_2203071 {
	margin: 0 auto 0 0;
	min-width: 0px;
	max-width: 800px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203071 {
	padding-bottom: 0%;
	padding-top: 10%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203071 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202759Calligrapher{			font-size: 180% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202759Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202759Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202759Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202759Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202759Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202759Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202759Calligrapher h6, .stacks_in_2202759Calligrapher h5, .stacks_in_2202759Calligrapher h4, .stacks_in_2202759Calligrapher h3, .stacks_in_2202759Calligrapher h2, .stacks_in_2202759Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202759Calligrapher, .stacks_in_2202759Calligrapher h1, .stacks_in_2202759Calligrapher h2, .stacks_in_2202759Calligrapher h3, .stacks_in_2202759Calligrapher h4, .stacks_in_2202759Calligrapher h5, .stacks_in_2202759Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202759Calligrapher, .stacks_in_2202759Calligrapher h1, .stacks_in_2202759Calligrapher h2, .stacks_in_2202759Calligrapher h3, .stacks_in_2202759Calligrapher h4, .stacks_in_2202759Calligrapher h5, .stacks_in_2202759Calligrapher h6{	text-shadow: 1px 1px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202759targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202759Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202759Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202759Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202759Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202761 {
	padding: 20px 0px 0px 0px;
}
/* -- Start Split Each css Template -- */



.stacks_in_2203068split {
  display: flex;
}

.stacks_in_2203068leftcol {
  width: 400px;
  min-width: 400px;
  margin-right: 25px;
  margin-top: 0px;
  margin-top: 0px;
}

.stacks_in_2203068rightcol {
  flex-grow: 1;
  margin-left: 25px;
}


@media all and (max-width: 1024px) {
	.stacks_in_2203068leftcol {
	  width: 300px;
	  min-width: 300px;
	}	
}


@media all and (max-width: 768px) {
	.stacks_in_2203068leftcol {
	  width: 200px;
	  min-width: 200px;
	}		
}


@media all and (max-width: 480px) {
	.stacks_in_2203068leftcol {
	  width: 400px;
	  min-width: 400px;
	}	
}





	@media all and (max-width: 1024px) {



		
			.stacks_in_2203068split {
				flex-wrap: wrap;
			}
			.stacks_in_2203068leftcol {
				order: 2;
				width: 100%;
				min-width: 100%;
				margin-right: 0px;
			}
			.stacks_in_2203068rightcol {
				order: 1;
				min-width: 100%;
				margin-left: 0px;
			}  
			
				.stacks_in_2203068leftcol {
					margin-top: 20px;
					margin-bottom: 0px;
				}
			  
		
		
		
		
		
	}




/* -- right side selected -- */


/* -- End Split Each css Template -- */
#stacks_in_2203068 {
	padding: 20px 0px 60px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202765Calligrapher{			font-size: 130% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202765Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202765Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202765Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202765Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202765Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202765Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202765Calligrapher h6, .stacks_in_2202765Calligrapher h5, .stacks_in_2202765Calligrapher h4, .stacks_in_2202765Calligrapher h3, .stacks_in_2202765Calligrapher h2, .stacks_in_2202765Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202765Calligrapher, .stacks_in_2202765Calligrapher h1, .stacks_in_2202765Calligrapher h2, .stacks_in_2202765Calligrapher h3, .stacks_in_2202765Calligrapher h4, .stacks_in_2202765Calligrapher h5, .stacks_in_2202765Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202765Calligrapher, .stacks_in_2202765Calligrapher h1, .stacks_in_2202765Calligrapher h2, .stacks_in_2202765Calligrapher h3, .stacks_in_2202765Calligrapher h4, .stacks_in_2202765Calligrapher h5, .stacks_in_2202765Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202765targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202765Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202765Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202765Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202765Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203135Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203135Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203135Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203135Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203135Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203135Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203135Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203135Calligrapher h6, .stacks_in_2203135Calligrapher h5, .stacks_in_2203135Calligrapher h4, .stacks_in_2203135Calligrapher h3, .stacks_in_2203135Calligrapher h2, .stacks_in_2203135Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203135Calligrapher, .stacks_in_2203135Calligrapher h1, .stacks_in_2203135Calligrapher h2, .stacks_in_2203135Calligrapher h3, .stacks_in_2203135Calligrapher h4, .stacks_in_2203135Calligrapher h5, .stacks_in_2203135Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2203135Calligrapher, .stacks_in_2203135Calligrapher h1, .stacks_in_2203135Calligrapher h2, .stacks_in_2203135Calligrapher h3, .stacks_in_2203135Calligrapher h4, .stacks_in_2203135Calligrapher h5, .stacks_in_2203135Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203135targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203135Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2203135Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2203135Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2203135Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202774Calligrapher{			font-size: 130% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202774Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202774Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202774Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202774Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202774Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202774Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202774Calligrapher h6, .stacks_in_2202774Calligrapher h5, .stacks_in_2202774Calligrapher h4, .stacks_in_2202774Calligrapher h3, .stacks_in_2202774Calligrapher h2, .stacks_in_2202774Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202774Calligrapher, .stacks_in_2202774Calligrapher h1, .stacks_in_2202774Calligrapher h2, .stacks_in_2202774Calligrapher h3, .stacks_in_2202774Calligrapher h4, .stacks_in_2202774Calligrapher h5, .stacks_in_2202774Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202774Calligrapher, .stacks_in_2202774Calligrapher h1, .stacks_in_2202774Calligrapher h2, .stacks_in_2202774Calligrapher h3, .stacks_in_2202774Calligrapher h4, .stacks_in_2202774Calligrapher h5, .stacks_in_2202774Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202774targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202774Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202774Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202774Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202774Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202778Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202778Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202778Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202778Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202778Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202778Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202778Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202778Calligrapher h6, .stacks_in_2202778Calligrapher h5, .stacks_in_2202778Calligrapher h4, .stacks_in_2202778Calligrapher h3, .stacks_in_2202778Calligrapher h2, .stacks_in_2202778Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202778Calligrapher, .stacks_in_2202778Calligrapher h1, .stacks_in_2202778Calligrapher h2, .stacks_in_2202778Calligrapher h3, .stacks_in_2202778Calligrapher h4, .stacks_in_2202778Calligrapher h5, .stacks_in_2202778Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202778Calligrapher, .stacks_in_2202778Calligrapher h1, .stacks_in_2202778Calligrapher h2, .stacks_in_2202778Calligrapher h3, .stacks_in_2202778Calligrapher h4, .stacks_in_2202778Calligrapher h5, .stacks_in_2202778Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202778targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202778Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202778Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202778Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202778Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Split Each css Template -- */



.stacks_in_2203124split {
  display: flex;
}

.stacks_in_2203124leftcol {
  width: 400px;
  min-width: 400px;
  margin-right: 25px;
  margin-top: 0px;
  margin-top: 0px;
}

.stacks_in_2203124rightcol {
  flex-grow: 1;
  margin-left: 25px;
}


@media all and (max-width: 1024px) {
	.stacks_in_2203124leftcol {
	  width: 300px;
	  min-width: 300px;
	}	
}


@media all and (max-width: 768px) {
	.stacks_in_2203124leftcol {
	  width: 200px;
	  min-width: 200px;
	}		
}


@media all and (max-width: 480px) {
	.stacks_in_2203124leftcol {
	  width: 400px;
	  min-width: 400px;
	}	
}





	@media all and (max-width: 1024px) {



		
			.stacks_in_2203124split {
				flex-wrap: wrap;
			}
			.stacks_in_2203124leftcol {
				order: 2;
				width: 100%;
				min-width: 100%;
				margin-right: 0px;
			}
			.stacks_in_2203124rightcol {
				order: 1;
				min-width: 100%;
				margin-left: 0px;
			}  
			
				.stacks_in_2203124leftcol {
					margin-top: 20px;
					margin-bottom: 0px;
				}
			  
		
		
		
		
		
	}




/* -- right side selected -- */


/* -- End Split Each css Template -- */
#stacks_in_2203124 {
	padding: 0px 0px 60px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203126Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203126Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203126Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203126Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203126Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203126Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203126Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203126Calligrapher h6, .stacks_in_2203126Calligrapher h5, .stacks_in_2203126Calligrapher h4, .stacks_in_2203126Calligrapher h3, .stacks_in_2203126Calligrapher h2, .stacks_in_2203126Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203126Calligrapher, .stacks_in_2203126Calligrapher h1, .stacks_in_2203126Calligrapher h2, .stacks_in_2203126Calligrapher h3, .stacks_in_2203126Calligrapher h4, .stacks_in_2203126Calligrapher h5, .stacks_in_2203126Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2203126Calligrapher, .stacks_in_2203126Calligrapher h1, .stacks_in_2203126Calligrapher h2, .stacks_in_2203126Calligrapher h3, .stacks_in_2203126Calligrapher h4, .stacks_in_2203126Calligrapher h5, .stacks_in_2203126Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203126targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203126Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2203126Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2203126Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2203126Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203131Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203131Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203131Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203131Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203131Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203131Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203131Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203131Calligrapher h6, .stacks_in_2203131Calligrapher h5, .stacks_in_2203131Calligrapher h4, .stacks_in_2203131Calligrapher h3, .stacks_in_2203131Calligrapher h2, .stacks_in_2203131Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203131Calligrapher, .stacks_in_2203131Calligrapher h1, .stacks_in_2203131Calligrapher h2, .stacks_in_2203131Calligrapher h3, .stacks_in_2203131Calligrapher h4, .stacks_in_2203131Calligrapher h5, .stacks_in_2203131Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2203131Calligrapher, .stacks_in_2203131Calligrapher h1, .stacks_in_2203131Calligrapher h2, .stacks_in_2203131Calligrapher h3, .stacks_in_2203131Calligrapher h4, .stacks_in_2203131Calligrapher h5, .stacks_in_2203131Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203131targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203131Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2203131Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2203131Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2203131Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#usefulStackWrapperstacks_in_2203076 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 600px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203076 {
	padding-bottom: 0%;
	padding-top: 10%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203076 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203078Calligrapher{			font-size: 180% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.3em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203078Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203078Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203078Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203078Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203078Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203078Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203078Calligrapher h6, .stacks_in_2203078Calligrapher h5, .stacks_in_2203078Calligrapher h4, .stacks_in_2203078Calligrapher h3, .stacks_in_2203078Calligrapher h2, .stacks_in_2203078Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203078Calligrapher, .stacks_in_2203078Calligrapher h1, .stacks_in_2203078Calligrapher h2, .stacks_in_2203078Calligrapher h3, .stacks_in_2203078Calligrapher h4, .stacks_in_2203078Calligrapher h5, .stacks_in_2203078Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203078targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203078Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203078Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203078Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203078Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203080 {
	padding: 40px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203082Calligrapher{			font-size: 120% !important;			color: #D0CCA3 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203082Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203082Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203082Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203082Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203082Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203082Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203082Calligrapher h6, .stacks_in_2203082Calligrapher h5, .stacks_in_2203082Calligrapher h4, .stacks_in_2203082Calligrapher h3, .stacks_in_2203082Calligrapher h2, .stacks_in_2203082Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203082Calligrapher, .stacks_in_2203082Calligrapher h1, .stacks_in_2203082Calligrapher h2, .stacks_in_2203082Calligrapher h3, .stacks_in_2203082Calligrapher h4, .stacks_in_2203082Calligrapher h5, .stacks_in_2203082Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203082targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203082Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203082Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203082Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203082Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203084 {
	padding: 10px 0px 20px 0px;
}
#usefulStackWrapperstacks_in_2203086 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203086 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203086 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203088Calligrapher{			font-size: 90% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203088Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203088Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203088Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203088Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203088Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203088Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203088Calligrapher h6, .stacks_in_2203088Calligrapher h5, .stacks_in_2203088Calligrapher h4, .stacks_in_2203088Calligrapher h3, .stacks_in_2203088Calligrapher h2, .stacks_in_2203088Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203088Calligrapher, .stacks_in_2203088Calligrapher h1, .stacks_in_2203088Calligrapher h2, .stacks_in_2203088Calligrapher h3, .stacks_in_2203088Calligrapher h4, .stacks_in_2203088Calligrapher h5, .stacks_in_2203088Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203088targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203088Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203088Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203088Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203088Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203090 {
	padding: 5px 0px 40px 0px;
}
#usefulStackWrapperstacks_in_2203092 {
	margin: 0 auto 0 0;
	min-width: 0px;
	max-width: 400px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203092 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203092 {
		display: none;
	}
}












/* Start roundedbox css */

/* general styles edit and preview mode */
#stacks_in_2203094 .stacks_in_2203094bgimagestack
{
	position:relative;
	min-height:10px;
	padding:0px;
	border: 1px solid #FFFFFF;
	-webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    
	-webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}





#stacks_in_2203094 .stacks_in_2203094bgimage
{
	display:none;
}




/* end roundedbox css */
#stacks_in_2203094 {
	background-color: rgba(204, 204, 204, 1.00);
}
/* Backdrop Figure Which Contains The Filter */
.stacks_in_2203097_warehouse_backdrop { 
    height: auto;
        
}

.stacks_in_2203097_warehouse_image {    
    width: 100% !important;
    height: auto;
    
        display: block;     
        margin-left: auto;
        margin-right: auto;
    
    
    
    
    
}

.stacks_in_2203097_cleanborder {
    padding: 5px;
    /*border: solid 1px #bfbfbf; */
    border: solid 1px #000000;
}

/* fixed filters live here */  
.nashville {
  position: relative;
  -webkit-filter: sepia(0.2) contrast(1.2) brightness(1.05) saturate(1.2);
  filter: sepia(0.2) contrast(1.2) brightness(1.05) saturate(1.2); 
}  
.nashville img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}  
.nashville:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2; 
}  
.nashville:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3; 
}  
.nashville::after {
    background: rgba(0, 70, 150, 0.4);
    mix-blend-mode: lighten;
    display: block;
    width: 100% !important;
    height: auto;
}  
.nashville::before {
    background: rgba(247, 176, 153, 0.56);
    mix-blend-mode: darken;
    display: block;
    width: 100% !important;
    height: auto;
}

.gingham {
    position: relative;
    -webkit-filter: brightness(1.05) hue-rotate(-10deg);
    filter: brightness(1.05) hue-rotate(-10deg); 
}  
.gingham img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}  
.gingham:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}  
.gingham:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}  
.gingham::after {
    background: lavender;
    mix-blend-mode: soft-light;
    width: 100% !important;
    height: auto;
}

.walden {
    position: relative;
    -webkit-filter: brightness(1.1) hue-rotate(-10deg) sepia(0.3) saturate(1.6);
    filter: brightness(1.1) hue-rotate(-10deg) sepia(0.3) saturate(1.6); 
}
  
.walden img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.walden:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.walden:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}
  
.walden::after {
    background: #0044cc;
    mix-blend-mode: screen;
    opacity: .3;
    width: 100% !important;
    height: auto;
}

.xpro2 {
  position: relative;
  -webkit-filter: sepia(0.3);
          filter: sepia(0.3); 
}
  
.xpro2 img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.xpro2:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.xpro2:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.xpro2::after {
    background: -webkit-radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, 0.6) 110%);
    background: radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, 0.6) 110%);
    mix-blend-mode: color-burn;
    width: 100% !important;
    height: auto;
}

.valencia {
    position: relative;
    -webkit-filter: contrast(1.08) brightness(1.08) sepia(0.08);
    filter: contrast(1.08) brightness(1.08) sepia(0.08); }
  
.valencia img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.valencia:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2;
}
  
.valencia:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.valencia::after {
    background: #3a0339;
    mix-blend-mode: exclusion;
    opacity: .5;
    width: 100% !important;
    height: auto;
}

.toaster {
    position: relative;
    -webkit-filter: contrast(1.5) brightness(0.9);
    filter: contrast(1.5) brightness(0.9); }
  
.toaster img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.toaster:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.toaster:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3;
}
  
.toaster::after {
    width: 100% !important;
    height: auto;
    background: -webkit-radial-gradient(circle, #804e0f, #3b003b);
    background: radial-gradient(circle, #804e0f, #3b003b);
    mix-blend-mode: screen; 
}

.slumber {
    position: relative;
    -webkit-filter: saturate(0.66) brightness(1.05);
    filter: saturate(0.66) brightness(1.05); 
}
 .slumber img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
.slumber:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
.slumber:after {
    content: '';
    display: block;
    width: 100% !important;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.slumber::after {
    width: 100% !important;
    height: auto;
    background: rgba(125, 105, 24, 0.5);
    mix-blend-mode: soft-light; 
}
  
  .slumber::before {
    width: 100% !important;
    height: auto;
    background: rgba(69, 41, 12, 0.4);
    mix-blend-mode: lighten; 
}

.rise {
  position: relative;
  -webkit-filter: brightness(1.05) sepia(0.2) contrast(0.9) saturate(0.9);
          filter: brightness(1.05) sepia(0.2) contrast(0.9) saturate(0.9); 
}
  
.rise img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.rise:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.rise:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.rise::after {
    background: -webkit-radial-gradient(circle, rgba(232, 197, 152, 0.8), transparent 90%);
    background: radial-gradient(circle, rgba(232, 197, 152, 0.8), transparent 90%);
    mix-blend-mode: overlay;
    opacity: .6; 
    width: 100% !important;
    height: auto;
}
  
.rise::before {
    background: -webkit-radial-gradient(circle, rgba(236, 205, 169, 0.15) 55%, rgba(50, 30, 7, 0.4));
    background: radial-gradient(circle, rgba(236, 205, 169, 0.15) 55%, rgba(50, 30, 7, 0.4));
    mix-blend-mode: multiply; 
    width: 100% !important;
    height: auto;
}

.reyes {
  position: relative;
  -webkit-filter: sepia(0.22) brightness(1.1) contrast(0.85) saturate(0.75);
          filter: sepia(0.22) brightness(1.1) contrast(0.85) saturate(0.75); }
  
.reyes img {
     width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.reyes:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.reyes:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.reyes::after {
    background: #efcdad;
    mix-blend-mode: soft-light;
    opacity: .5; 
    width: 100% !important;
    height: auto;
}

.perpetua {
  position: relative; 
}
  
.perpetua img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.perpetua:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.perpetua:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.perpetua::after {
    background: -webkit-linear-gradient(top, #005b9a, #e6c13d);
    background: linear-gradient(to bottom, #005b9a, #e6c13d);
    mix-blend-mode: soft-light;
    opacity: .5;
    width: 100% !important;
    height: auto;
}

.moon {
  position: relative;
  -webkit-filter: grayscale(1) contrast(1.1) brightness(1.1);
          filter: grayscale(1) contrast(1.1) brightness(1.1); 
}
  
.moon img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.moon:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.moon:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.moon::before {
    background: #a0a0a0;
    mix-blend-mode: soft-light; 
    width: 100% !important;
    height: auto;
}
  
.moon::after {
    background: #383838;
    mix-blend-mode: lighten;
    width: 100% !important;
    height: auto;
}

.mayfair {
  position: relative;
  -webkit-filter: contrast(1.1) saturate(1.1);
          filter: contrast(1.1) saturate(1.1); 
}
  
.mayfair img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.mayfair:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.mayfair:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.mayfair::after {
    background: -webkit-radial-gradient(40% 40%, circle, rgba(255, 255, 255, 0.8), rgba(255, 200, 200, 0.6), #111111 60%);
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.8), rgba(255, 200, 200, 0.6), #111111 60%);
    mix-blend-mode: overlay;
    opacity: .4;
    width: 100% !important;
    height: auto;
}

.maven {
  position: relative;
  -webkit-filter: sepia(0.25) brightness(0.95) contrast(0.95) saturate(1.5);
          filter: sepia(0.25) brightness(0.95) contrast(0.95) saturate(1.5); 
}
.maven img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.maven:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.maven:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.maven:after {
    background: rgba(3, 230, 26, 0.2);
    mix-blend-mode: hue;
    width: 100% !important;
    height: auto;
}

.lofi {
  position: relative;
  -webkit-filter: saturate(1.1) contrast(1.5);
          filter: saturate(1.1) contrast(1.5); 
}
  
.lofi img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.lofi:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.lofi:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.lofi::after {
    background: -webkit-radial-gradient(circle, transparent 70%, #222222 150%);
    background: radial-gradient(circle, transparent 70%, #222222 150%);
    mix-blend-mode: multiply;
    width: 100% !important;
    height: auto;
}

.lark {
  position: relative;
  -webkit-filter: contrast(0.9);
          filter: contrast(0.9); 
}
  
.lark img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.lark:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.lark:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.lark::after {
    background: rgba(242, 242, 242, 0.8);
    mix-blend-mode: darken;
    width: 100% !important;
    height: auto;
}
  
.lark::before {
    background: #22253f;
    mix-blend-mode: color-dodge;
    width: 100% !important;
    height: auto; 
}

.kelvin {
  position: relative; 
}
  
.kelvin img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.kelvin:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.kelvin:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.kelvin::after {
    background: #b77d21;
    mix-blend-mode: overlay;
    width: 100% !important;
    height: auto;
}
  
.kelvin::before {
    background: #382c34;
    mix-blend-mode: color-dodge;
    width: 100% !important;
    height: auto;
}

.inkwell {
  position: relative;
  -webkit-filter: sepia(0.3) contrast(1.1) brightness(1.1) grayscale(1);
          filter: sepia(0.3) contrast(1.1) brightness(1.1) grayscale(1); 
}
  
.inkwell img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.inkwell:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.inkwell:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}

.hudson {
  position: relative;
  -webkit-filter: brightness(1.2) contrast(0.9) saturate(1.1);
          filter: brightness(1.2) contrast(0.9) saturate(1.1); 
}
  
.hudson img {
    width: 100% !important;
    height: auto;
    z-index: 1; 
}
  
.hudson:before {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 2; 
}
  
.hudson:after {
    content: '';
    display: block;
    width: 100% !important;
    height: auto;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: 3; 
}
  
.hudson::after {
    background: -webkit-radial-gradient(circle, #a6b1ff 50%, #342134);
    background: radial-gradient(circle, #a6b1ff 50%, #342134);
    mix-blend-mode: multiply;
    opacity: .5;
    width: 100% !important;
    height: auto;
}


#usefulStackWrapperstacks_in_2203098 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203098 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 7%;
	padding-right: 7%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203098 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203102Calligrapher{			font-size: 83% !important;			color: #666666 !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203102Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203102Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203102Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203102Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203102Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203102Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203102Calligrapher h6, .stacks_in_2203102Calligrapher h5, .stacks_in_2203102Calligrapher h4, .stacks_in_2203102Calligrapher h3, .stacks_in_2203102Calligrapher h2, .stacks_in_2203102Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203102Calligrapher, .stacks_in_2203102Calligrapher h1, .stacks_in_2203102Calligrapher h2, .stacks_in_2203102Calligrapher h3, .stacks_in_2203102Calligrapher h4, .stacks_in_2203102Calligrapher h5, .stacks_in_2203102Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203102targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203102Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203102Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203102Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203102Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203104 {
	padding: 20px 0px 0px 0px;
}

#stacks_in_2203105 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203106Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.5em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203106Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203106Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203106Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203106Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203106Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203106Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203106Calligrapher h6, .stacks_in_2203106Calligrapher h5, .stacks_in_2203106Calligrapher h4, .stacks_in_2203106Calligrapher h3, .stacks_in_2203106Calligrapher h2, .stacks_in_2203106Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203106Calligrapher, .stacks_in_2203106Calligrapher h1, .stacks_in_2203106Calligrapher h2, .stacks_in_2203106Calligrapher h3, .stacks_in_2203106Calligrapher h4, .stacks_in_2203106Calligrapher h5, .stacks_in_2203106Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203106targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203106Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203106Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203106Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203106Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203108 {
	padding: 10px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203110Calligrapher{			font-size: 80% !important;			color: #7F7F7F !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.5em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203110Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203110Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203110Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203110Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203110Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203110Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203110Calligrapher h6, .stacks_in_2203110Calligrapher h5, .stacks_in_2203110Calligrapher h4, .stacks_in_2203110Calligrapher h3, .stacks_in_2203110Calligrapher h2, .stacks_in_2203110Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203110Calligrapher, .stacks_in_2203110Calligrapher h1, .stacks_in_2203110Calligrapher h2, .stacks_in_2203110Calligrapher h3, .stacks_in_2203110Calligrapher h4, .stacks_in_2203110Calligrapher h5, .stacks_in_2203110Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203110targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203110Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203110Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203110Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203110Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203112 {
	padding: 20px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203114Calligrapher{			font-size: 70% !important;			color: #4C4C4C !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203114Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203114Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203114Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203114Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203114Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203114Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203114Calligrapher h6, .stacks_in_2203114Calligrapher h5, .stacks_in_2203114Calligrapher h4, .stacks_in_2203114Calligrapher h3, .stacks_in_2203114Calligrapher h2, .stacks_in_2203114Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203114Calligrapher, .stacks_in_2203114Calligrapher h1, .stacks_in_2203114Calligrapher h2, .stacks_in_2203114Calligrapher h3, .stacks_in_2203114Calligrapher h4, .stacks_in_2203114Calligrapher h5, .stacks_in_2203114Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203114targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203114Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203114Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203114Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203114Calligrapher a:hover{			color: #E6E6E6 !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203116 {
	padding: 15px 0px 30px 0px;
}
#usefulStackWrapperstacks_in_2203118 {
	margin: 0 auto 0 0;
	min-width: 0px;
	max-width: 400px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203118 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203118 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203120Calligrapher{			font-size: 80% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2203120Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203120Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203120Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203120Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203120Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203120Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203120Calligrapher h6, .stacks_in_2203120Calligrapher h5, .stacks_in_2203120Calligrapher h4, .stacks_in_2203120Calligrapher h3, .stacks_in_2203120Calligrapher h2, .stacks_in_2203120Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203120Calligrapher, .stacks_in_2203120Calligrapher h1, .stacks_in_2203120Calligrapher h2, .stacks_in_2203120Calligrapher h3, .stacks_in_2203120Calligrapher h4, .stacks_in_2203120Calligrapher h5, .stacks_in_2203120Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203120targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203120Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203120Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203120Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203120Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203122 {
	padding: 20px 0px 80px 0px;
}
#usefulStackWrapperstacks_in_2202273 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 600px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202273 {
	padding-bottom: 0%;
	padding-top: 15%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2202273 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203349Calligrapher{			font-size: 100% !important;			color: #666666 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 1px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2203349Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203349Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203349Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203349Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203349Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203349Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203349Calligrapher h6, .stacks_in_2203349Calligrapher h5, .stacks_in_2203349Calligrapher h4, .stacks_in_2203349Calligrapher h3, .stacks_in_2203349Calligrapher h2, .stacks_in_2203349Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203349Calligrapher, .stacks_in_2203349Calligrapher h1, .stacks_in_2203349Calligrapher h2, .stacks_in_2203349Calligrapher h3, .stacks_in_2203349Calligrapher h4, .stacks_in_2203349Calligrapher h5, .stacks_in_2203349Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203349targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203349Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203349Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203349Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203349Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#usefulStackWrapperstacks_in_2203350 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 260px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203350 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_2203350 {
		display: none;
	}
}













#stacks_in_2203350 {
	padding: 0px 0px 20px 0px;
}
/* If modifying any of this code, update the template.html file too */

/* CSS code for the POSTPONED button */

#stacks_in_2203351 *,
#stacks_in_2203351 *:before,
#stacks_in_2203351 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.ButtonMakerStackstacks_in_2203351 {
	line-height: 46px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 0px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}






/* Solid colour fill */
.ButtonMakerStackstacks_in_2203351 {
	background: #000000;
}

.ButtonMakerStackstacks_in_2203351:hover {
	background: #4C4C4C;
}





















.ButtonMakerStackstacks_in_2203351 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_2203351 a.Button-Link:active {
	
	-webkit-box-shadow:inset 0 0 5px 2px #333333;
	box-shadow:inset 0 0 5px 2px #333333;
	
	outline: none;
}

.ButtonMakerStackstacks_in_2203351 .Button-Label {
	color: #FFFFFF;
	font-size: 16px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_2203351:hover .Button-Label {
	color: #FFFFFF;
}






@media print {
	.ButtonMakerStackstacks_in_2203351 {
		display: none !important;
	}
}

/* End of CSS code for the POSTPONED button */











/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202277Calligrapher{			font-size: 100% !important;			color: #666666 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202277Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202277Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202277Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202277Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202277Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202277Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202277Calligrapher h6, .stacks_in_2202277Calligrapher h5, .stacks_in_2202277Calligrapher h4, .stacks_in_2202277Calligrapher h3, .stacks_in_2202277Calligrapher h2, .stacks_in_2202277Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202277Calligrapher, .stacks_in_2202277Calligrapher h1, .stacks_in_2202277Calligrapher h2, .stacks_in_2202277Calligrapher h3, .stacks_in_2202277Calligrapher h4, .stacks_in_2202277Calligrapher h5, .stacks_in_2202277Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202277targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202277Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202277Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202277Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202277Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202278 {
	padding: 20px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202281Calligrapher{			font-size: 90% !important;			color: #666666 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202281Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202281Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202281Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202281Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202281Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202281Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202281Calligrapher h6, .stacks_in_2202281Calligrapher h5, .stacks_in_2202281Calligrapher h4, .stacks_in_2202281Calligrapher h3, .stacks_in_2202281Calligrapher h2, .stacks_in_2202281Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202281Calligrapher, .stacks_in_2202281Calligrapher h1, .stacks_in_2202281Calligrapher h2, .stacks_in_2202281Calligrapher h3, .stacks_in_2202281Calligrapher h4, .stacks_in_2202281Calligrapher h5, .stacks_in_2202281Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202281targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202281Calligrapher a:link{			color: #000000 !important;			text-decoration: none !important;		}				.stacks_in_2202281Calligrapher a:visited{			color: #000000 !important;		}				.stacks_in_2202281Calligrapher a:active{			color: #000000 !important;		}				.stacks_in_2202281Calligrapher a:hover{			color: #666666 !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Contact Form stack CSS code */.stacks_in_2202282formwrap{	margin: 0;}#stacks_in_2202282comment{display: none;height: 0px;padding: 0px;margin: 0px;}.stacks_in_2202282mail{padding: 0;}.stacks_in_2202282fieldset{	border: none;	outline: none;	float : none !important;	text-align: left !important;}.stacks_in_2202282formail{}.stacks_in_2202282fieldset{	padding: 0 20px 0 3px;}#stacks_in_2202282 label{display: block;margin: 10px 0 0 0;padding: 0 0 5px 0;line-height: 1.1em;}#stacks_in_2202282 label *{display: inline;}#stacks_in_2202282 .stacks_in_2202282input{padding: 3px 7px 3px 7px;width: 100%;font-size: 12px;background: #FFFFFF !important;color: #555555 !important;margin: 0;border: 1px solid #D8D8D8 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px !important;}#stacks_in_2202282 textarea{padding: 7px;width: 100%;font-size: 13px;border: 1px solid #D8D8D8 !important;background: #FFFFFF !important;color: #555555 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}.stacks_in_2202282sendmail{margin-top: 20px !important;padding: 4px 7px 4px 7px !important;display: block;text-align: center !important;font-size: 12px;color: #444444 !important;border: 1px solid #D8D8D8 !important;background-color: #FFFFFF !important;-moz-border-radius: 3px !important;-webkit-border-radius: 3px !important;border-radius: 3px;cursor: pointer;}#sendmail:hover{cursor: pointer;}.stacks_in_2202282response{display: none;width: 80%;border: 1px solid #D6392B;background: #FEF4FA;padding: 10px;margin: 20px auto 0 0;color: #444444;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;min-height: 35px;}.stacks_in_2202282loader{float: left;width: 35px;height: 35px;padding: 0 15px 30px 0;}.stacks_in_2202282autoreplay{visibility: hidden;height: 0px;display: none;}#stacks_in_2202282 textarea{	color: #555555 !important;}/* End Contact Form stack CSS code */
#stacks_in_2202282 {
	padding: 20px 0px 0px 0px;
}
/* Start dooMax stack CSS code */#stacks_in_2202290, .stacks_in_2202290MaxWidthContainer{	-webkit-box-sizing: border-box;	-moz-box-sizing: border-box;	box-sizing: border-box;}     .stacks_in_2202290MaxWidthContainer{	    max-width: 960px;	}    .stacks_in_2202290MaxWidthContainer{		margin: 0 auto 0 auto;	}@media only screen and (max-width: 1024px) {	 	    .stacks_in_2202290MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2202290MaxWidthContainer{			margin: 0 auto 0 auto;		}		}@media only screen and (max-width: 480px) {	 	    .stacks_in_2202290MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2202290MaxWidthContainer{			margin: 0 auto 0 auto;		}		}/* End dooMax stack CSS code */
#stacks_in_2202290 {
	padding: 60px 0px 60px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202291Calligrapher{			font-size: 90% !important;			color: #666666 !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_2202291Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202291Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202291Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202291Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202291Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202291Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202291Calligrapher h6, .stacks_in_2202291Calligrapher h5, .stacks_in_2202291Calligrapher h4, .stacks_in_2202291Calligrapher h3, .stacks_in_2202291Calligrapher h2, .stacks_in_2202291Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202291Calligrapher, .stacks_in_2202291Calligrapher h1, .stacks_in_2202291Calligrapher h2, .stacks_in_2202291Calligrapher h3, .stacks_in_2202291Calligrapher h4, .stacks_in_2202291Calligrapher h5, .stacks_in_2202291Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202291targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202291Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202291Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202291Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202291Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */