 .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_2202708 {
  z-index: 10000000000000000000;
  position: relative;
  /*  */ }

#loader-stacks_in_2202708 .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_2202708 .loader-text.loader-8-text {
    /*  */
    margin-top: -50px;
    /*  */ }
  #loader-stacks_in_2202708 .loader-text.loader-4-text {
    /*  */
    margin-top: -50px;
    /*  */ }

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

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

@-webkit-keyframes loader-1-stacks_in_2202708 {
  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_2202708 {
  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_2202708 {
  width: 50px;
  height: 50px;
  margin: 50px;
  -webkit-animation: loader-2-1-stacks_in_2202708 1.4s infinite ease-in-out, loader-2-2-stacks_in_2202708 1.4s infinite ease-in-out alternate;
          animation: loader-2-1-stacks_in_2202708 1.4s infinite ease-in-out, loader-2-2-stacks_in_2202708 1.4s infinite ease-in-out alternate; }

@-webkit-keyframes loader-2-1-stacks_in_2202708 {
  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_2202708 {
  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_2202708 {
  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_2202708 {
  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_2202708 {
  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_2202708 1s infinite linear;
          animation: loader-3-stacks_in_2202708 1s infinite linear; }
  .loader-3-stacks_in_2202708::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_2202708 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

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

.loader-4-stacks_in_2202708 .bar {
  border-radius: 0px;
  display: inline-block;
  width: 4px;
  height: 18px;
  margin: 0 0px;
  -webkit-animation: loader-4-stacks_in_2202708 1s ease-in-out infinite;
          animation: loader-4-stacks_in_2202708 1s ease-in-out infinite; }
  .loader-4-stacks_in_2202708 .bar:nth-child(1) {
    background-color: rgba(52, 152, 219, 1.00);
    -webkit-animation-delay: 0;
            animation-delay: 0; }
  .loader-4-stacks_in_2202708 .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_2202708 .bar:nth-child(3) {
    background-color: rgba(241, 196, 15, 1.00);
    -webkit-animation-delay: .18s;
            animation-delay: .18s; }
  .loader-4-stacks_in_2202708 .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_2202708 {
  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_2202708 {
  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_2202708 {
  opacity: 0;
  width: 90px;
  height: 90px;
  border-radius: 50px;
  -webkit-animation: loader-5-stacks_in_2202708 1s ease-out;
          animation: loader-5-stacks_in_2202708 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_2202708 {
  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_2202708 {
  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_2202708 {
  width: 100%;
  height: 40px; }

.loader-6-stacks_in_2202708 .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_2202708 4s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23);
          animation: loader-6-stacks_in_2202708 4s infinite cubic-bezier(0.2, 0.64, 0.81, 0.23); }
  .loader-6-stacks_in_2202708 .bar:nth-child(2) {
    -webkit-animation-delay: 150ms;
            animation-delay: 150ms; }
  .loader-6-stacks_in_2202708 .bar:nth-child(3) {
    -webkit-animation-delay: 300ms;
            animation-delay: 300ms; }
  .loader-6-stacks_in_2202708 .bar:nth-child(4) {
    -webkit-animation-delay: 450ms;
            animation-delay: 450ms; }

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

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

.loader-7-stacks_in_2202708 {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 8px;
  max-width: 90%;
  background-color: rgba(241, 241, 241, 1.00); }
  .loader-7-stacks_in_2202708: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_2202708 2s linear infinite;
            animation: loader-7-stacks_in_2202708 2s linear infinite; }

@-webkit-keyframes loader-7-stacks_in_2202708 {
  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_2202708 {
  from {
    left: -200px;
    width: 30%; }
  50% {
    width: 30%; }
  70% {
    width: 70%; }
  80% {
    left: 50%; }
  95% {
    left: 120%; }
  to {
    left: 100%; } }

.loader-8-stacks_in_2202708 {
  width: 100%;
  height: 20px;
  background-size: 28px 28px;
  max-width: 90%;
  border-radius: 3pxpx;
  -webkit-animation: loader-8-stacks_in_2202708 .5s linear infinite;
          animation: loader-8-stacks_in_2202708 .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_2202708 {
  0% {
    background-position: 0 0; }
  100% {
    background-position: 28px 0; } }

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

.loader-9-stacks_in_2202708 {
  font-family: "Droid Serif";
  position: relative;
  color: rgba(241, 241, 241, 1.00);
  font-size: px; }
  .loader-9-stacks_in_2202708: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_2202708 8s linear;
            animation: loader-9-stacks_in_2202708 8s linear;
    /*  */ }
  @media only screen and (min-width: 480px) {
    .loader-9-stacks_in_2202708 {
      font-size: 24px; } }
  @media only screen and (min-width: 768px) {
    .loader-9-stacks_in_2202708 {
      font-size: 32px; } }
  @media only screen and (min-width: 1100px) {
    .loader-9-stacks_in_2202708 {
      font-size: 40px; } }

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

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

.loader-10-stacks_in_2202708 {
  width: 200px;
  height: 200px;
  position: relative;
  border-radius: 50%;
  background: url() no-repeat center center;
  background-size: 100% 100%; }
  .loader-10-stacks_in_2202708::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_2202708 1.7s infinite linear;
            animation: loader-10-stacks_in_2202708 1.7s infinite linear; }
  .loader-10-stacks_in_2202708-half::after {
    border-right-color: transparent;
    border-bottom-color: transparent; }
  .loader-10-stacks_in_2202708-quarter::after {
    border-right-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent; }
  .loader-10-stacks_in_2202708-third::after {
    border-right-color: transparent; }
  .loader-10-stacks_in_2202708::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_2202708 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

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

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

/* Start Agent-X stack CSS code */.stacks_in_2202710label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_2202710iPhoneContent, .stacks_in_2202710iPadContent, .stacks_in_2202710AndroidContent, .stacks_in_2202710BlackberryContent, .stacks_in_2202710DesktopContent {	display: none;}.stacks_in_2202710label{	display: none;}/* End Agent-X stack CSS code */ .target_stacks_in_2202712{ }.target_stacks_in_2202712.rotate{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;transform-origin:center center}.target_stacks_in_2202712.width-flexible{width:100%}.target_stacks_in_2202712.width-fixed{width:250px}.target_stacks_in_2202712.height-flexible{height:100%}.target_stacks_in_2202712.height-fixed{height:250px}.target_stacks_in_2202712.top_pt{top:5%}.target_stacks_in_2202712.top_px{top:5px}.target_stacks_in_2202712.bottom_pt{bottom:5%}.target_stacks_in_2202712.bottom_px{bottom:5px}.target_stacks_in_2202712.right_pt{right:10%}.target_stacks_in_2202712.right_px{right:10px}.target_stacks_in_2202712.left_pt{left:10%}.target_stacks_in_2202712.left_px{left:10px}  
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202716Calligrapher{			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_2202716Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202716Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202716Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202716Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202716Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202716Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202716Calligrapher h6, .stacks_in_2202716Calligrapher h5, .stacks_in_2202716Calligrapher h4, .stacks_in_2202716Calligrapher h3, .stacks_in_2202716Calligrapher h2, .stacks_in_2202716Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202716Calligrapher, .stacks_in_2202716Calligrapher h1, .stacks_in_2202716Calligrapher h2, .stacks_in_2202716Calligrapher h3, .stacks_in_2202716Calligrapher h4, .stacks_in_2202716Calligrapher h5, .stacks_in_2202716Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202716Calligrapher, .stacks_in_2202716Calligrapher h1, .stacks_in_2202716Calligrapher h2, .stacks_in_2202716Calligrapher h3, .stacks_in_2202716Calligrapher h4, .stacks_in_2202716Calligrapher h5, .stacks_in_2202716Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202716targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202716Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202716Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202716Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202716Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202718 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202720Calligrapher{			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_2202720Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202720Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202720Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202720Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202720Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202720Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202720Calligrapher h6, .stacks_in_2202720Calligrapher h5, .stacks_in_2202720Calligrapher h4, .stacks_in_2202720Calligrapher h3, .stacks_in_2202720Calligrapher h2, .stacks_in_2202720Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202720Calligrapher, .stacks_in_2202720Calligrapher h1, .stacks_in_2202720Calligrapher h2, .stacks_in_2202720Calligrapher h3, .stacks_in_2202720Calligrapher h4, .stacks_in_2202720Calligrapher h5, .stacks_in_2202720Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202720Calligrapher, .stacks_in_2202720Calligrapher h1, .stacks_in_2202720Calligrapher h2, .stacks_in_2202720Calligrapher h3, .stacks_in_2202720Calligrapher h4, .stacks_in_2202720Calligrapher h5, .stacks_in_2202720Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202720targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202720Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202720Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202720Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202720Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202722 {
	padding: 5px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_2202724 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202724 {
	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_2202724 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202726Calligrapher{			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_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: 1px 1px 2px #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 */
#stacks_in_2202728 {
	padding: 15px 0px 5px 0px;
}
 .target_stacks_in_2202732{ }.target_stacks_in_2202732.rotate{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;transform-origin:center center}.target_stacks_in_2202732.width-flexible{width:100%}.target_stacks_in_2202732.width-fixed{width:250px}.target_stacks_in_2202732.height-flexible{height:100%}.target_stacks_in_2202732.height-fixed{height:250px}.target_stacks_in_2202732.top_pt{top:5%}.target_stacks_in_2202732.top_px{top:5px}.target_stacks_in_2202732.bottom_pt{bottom:5%}.target_stacks_in_2202732.bottom_px{bottom:5px}.target_stacks_in_2202732.right_pt{right:10%}.target_stacks_in_2202732.right_px{right:10px}.target_stacks_in_2202732.left_pt{left:10%}.target_stacks_in_2202732.left_px{left:10px}  
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202736Calligrapher{			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_2202736Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202736Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202736Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202736Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202736Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202736Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202736Calligrapher h6, .stacks_in_2202736Calligrapher h5, .stacks_in_2202736Calligrapher h4, .stacks_in_2202736Calligrapher h3, .stacks_in_2202736Calligrapher h2, .stacks_in_2202736Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202736Calligrapher, .stacks_in_2202736Calligrapher h1, .stacks_in_2202736Calligrapher h2, .stacks_in_2202736Calligrapher h3, .stacks_in_2202736Calligrapher h4, .stacks_in_2202736Calligrapher h5, .stacks_in_2202736Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202736Calligrapher, .stacks_in_2202736Calligrapher h1, .stacks_in_2202736Calligrapher h2, .stacks_in_2202736Calligrapher h3, .stacks_in_2202736Calligrapher h4, .stacks_in_2202736Calligrapher h5, .stacks_in_2202736Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202736targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202736Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202736Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202736Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202736Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202738 {
	padding: 30px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202740Calligrapher{			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_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: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202740targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202740Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202740Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202740Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202740Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202742 {
	padding: 5px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_2202744 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202744 {
	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_2202744 {
		display: none;
	}
}












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

#usefulStackstacks_in_2202758 {
	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_2202758 {
		display: none;
	}
}












#ncp-stacks_in_2202760 img{max-width:100%;height:auto; width:auto;}#ncp-stacks_in_2202760.s2 .c.s1_2 .c-pad,#ncp-stacks_in_2202760.s3 .c.s1_3 .c-pad,#ncp-stacks_in_2202760.s4 .c.s1_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_2202760.s3 .c.s2_3 .c-pad,#ncp-stacks_in_2202760.s4 .c.s2_4 .c-pad,#ncp-stacks_in_2202760.s4 .c.s3_4 .c-pad{padding:0 2px}#ncp-stacks_in_2202760.s2 .c.s2_2 .c-pad,#ncp-stacks_in_2202760.s3 .c.s3_3 .c-pad,#ncp-stacks_in_2202760.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}@media only screen and (max-width:600px){#ncp-stacks_in_2202760 .c{margin:1% 0;padding:4px 0;width:100%}#ncp-stacks_in_2202760 .c:first-child,#ncp-stacks_in_2202760.s4 .c.s1_4,#ncp-stacks_in_2202760.s4 .c.s2_4{padding:0 0 4px}#ncp-stacks_in_2202760 .c:last-child,#ncp-stacks_in_2202760.s4 .c.s3_4,#ncp-stacks_in_2202760.s4 .c.s4_4{padding:4px 0 0}#ncp-stacks_in_2202760.s2 .c-pad,#ncp-stacks_in_2202760.s3 .c-pad{padding:0 !important}#ncp-stacks_in_2202760.s4 .c{width:49.2%}#ncp-stacks_in_2202760.s4 .c.s1_4 .c-pad,#ncp-stacks_in_2202760.s4 .c.s3_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_2202760.s4 .c.s2_4 .c-pad,#ncp-stacks_in_2202760.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}}@media only screen and (max-width:300px){#ncp-stacks_in_2202760 .c .c-pad{padding:0 !important}#ncp-stacks_in_2202760.s4 .c{width:100%}}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202762Calligrapher{			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_2202762Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202762Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202762Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202762Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202762Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202762Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202762Calligrapher h6, .stacks_in_2202762Calligrapher h5, .stacks_in_2202762Calligrapher h4, .stacks_in_2202762Calligrapher h3, .stacks_in_2202762Calligrapher h2, .stacks_in_2202762Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202762Calligrapher, .stacks_in_2202762Calligrapher h1, .stacks_in_2202762Calligrapher h2, .stacks_in_2202762Calligrapher h3, .stacks_in_2202762Calligrapher h4, .stacks_in_2202762Calligrapher h5, .stacks_in_2202762Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202762Calligrapher, .stacks_in_2202762Calligrapher h1, .stacks_in_2202762Calligrapher h2, .stacks_in_2202762Calligrapher h3, .stacks_in_2202762Calligrapher h4, .stacks_in_2202762Calligrapher h5, .stacks_in_2202762Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202762targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202762Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202762Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202762Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202762Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202764 {
	padding: 10px 0px 5px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202766Calligrapher{			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_2202766Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202766Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202766Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202766Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202766Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202766Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202766Calligrapher h6, .stacks_in_2202766Calligrapher h5, .stacks_in_2202766Calligrapher h4, .stacks_in_2202766Calligrapher h3, .stacks_in_2202766Calligrapher h2, .stacks_in_2202766Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202766Calligrapher, .stacks_in_2202766Calligrapher h1, .stacks_in_2202766Calligrapher h2, .stacks_in_2202766Calligrapher h3, .stacks_in_2202766Calligrapher h4, .stacks_in_2202766Calligrapher h5, .stacks_in_2202766Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202766Calligrapher, .stacks_in_2202766Calligrapher h1, .stacks_in_2202766Calligrapher h2, .stacks_in_2202766Calligrapher h3, .stacks_in_2202766Calligrapher h4, .stacks_in_2202766Calligrapher h5, .stacks_in_2202766Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202766targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202766Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202766Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202766Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202766Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202768 {
	padding: 40px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202770Calligrapher{			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_2202770Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202770Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202770Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202770Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202770Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202770Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202770Calligrapher h6, .stacks_in_2202770Calligrapher h5, .stacks_in_2202770Calligrapher h4, .stacks_in_2202770Calligrapher h3, .stacks_in_2202770Calligrapher h2, .stacks_in_2202770Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202770Calligrapher, .stacks_in_2202770Calligrapher h1, .stacks_in_2202770Calligrapher h2, .stacks_in_2202770Calligrapher h3, .stacks_in_2202770Calligrapher h4, .stacks_in_2202770Calligrapher h5, .stacks_in_2202770Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202770Calligrapher, .stacks_in_2202770Calligrapher h1, .stacks_in_2202770Calligrapher h2, .stacks_in_2202770Calligrapher h3, .stacks_in_2202770Calligrapher h4, .stacks_in_2202770Calligrapher h5, .stacks_in_2202770Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202770targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202770Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202770Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202770Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202770Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202772 {
	padding: 20px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_2202774 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202774 {
	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_2202774 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202776Calligrapher{			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_2202776Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202776Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202776Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202776Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202776Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202776Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202776Calligrapher h6, .stacks_in_2202776Calligrapher h5, .stacks_in_2202776Calligrapher h4, .stacks_in_2202776Calligrapher h3, .stacks_in_2202776Calligrapher h2, .stacks_in_2202776Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202776Calligrapher, .stacks_in_2202776Calligrapher h1, .stacks_in_2202776Calligrapher h2, .stacks_in_2202776Calligrapher h3, .stacks_in_2202776Calligrapher h4, .stacks_in_2202776Calligrapher h5, .stacks_in_2202776Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202776Calligrapher, .stacks_in_2202776Calligrapher h1, .stacks_in_2202776Calligrapher h2, .stacks_in_2202776Calligrapher h3, .stacks_in_2202776Calligrapher h4, .stacks_in_2202776Calligrapher h5, .stacks_in_2202776Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202776targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202776Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202776Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202776Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202776Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202778 {
	padding: 5px 0px 5px 0px;
}
/* Use this file for your stack CSS code */

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



#ContentFader_stacks_in_2202784{
}
#stacks_in_2202786 {
	padding: 70px 0px 0px 0px;
}
#stacks_in_2202450 *,
#stacks_in_2202450 *:before,
#stacks_in_2202450 *: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_2202451.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202451.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202451.CR6_L,
.stacks_in_2202451.CR6_L1 {
	float: left;
}
.stacks_in_2202451.CR6_R,
.stacks_in_2202451.CR6_R1 {
	float: left;
}
.stacks_in_2202451.CR6 {
	width: 15%;
}
.stacks_in_2202451.CR6_S {
	width: 15.2%;
}
.stacks_in_2202451.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_2202451.CR6_LF,
.stacks_in_2202451.CR6_LL,
.stacks_in_2202451.CR6_RF,
.stacks_in_2202451.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202451.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_2202451.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_2202451.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202451.CR6,
	.stacks_in_2202451.CR6_S {
		width: 49%;
	}
	.stacks_in_2202451.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202451.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202451.CR6.CR6_Goff,
	.stacks_in_2202451.CR6_S.CR6_Goff,
	.stacks_in_2202451.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202451.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202451.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202451.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202451.CR6,
	.stacks_in_2202451.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202452Calligrapher{			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_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   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .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: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202452targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202452Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202452Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202452Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202452Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Agent-X stack CSS code */.stacks_in_2202456label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_2202456iPhoneContent, .stacks_in_2202456iPadContent, .stacks_in_2202456AndroidContent, .stacks_in_2202456BlackberryContent, .stacks_in_2202456DesktopContent {	display: none;}.stacks_in_2202456label{	display: none;}/* End Agent-X stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202457Calligrapher{			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_2202457Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202457Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202457Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202457Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202457Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202457Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202457Calligrapher h6, .stacks_in_2202457Calligrapher h5, .stacks_in_2202457Calligrapher h4, .stacks_in_2202457Calligrapher h3, .stacks_in_2202457Calligrapher h2, .stacks_in_2202457Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202457Calligrapher, .stacks_in_2202457Calligrapher h1, .stacks_in_2202457Calligrapher h2, .stacks_in_2202457Calligrapher h3, .stacks_in_2202457Calligrapher h4, .stacks_in_2202457Calligrapher h5, .stacks_in_2202457Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202457targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202457Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202457Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202457Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202457Calligrapher 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_2202463Calligrapher{			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_2202463Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202463Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202463Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202463Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202463Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202463Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202463Calligrapher h6, .stacks_in_2202463Calligrapher h5, .stacks_in_2202463Calligrapher h4, .stacks_in_2202463Calligrapher h3, .stacks_in_2202463Calligrapher h2, .stacks_in_2202463Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202463Calligrapher, .stacks_in_2202463Calligrapher h1, .stacks_in_2202463Calligrapher h2, .stacks_in_2202463Calligrapher h3, .stacks_in_2202463Calligrapher h4, .stacks_in_2202463Calligrapher h5, .stacks_in_2202463Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202463targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202463Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202463Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202463Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202463Calligrapher 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_2202469Calligrapher{			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_2202469Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202469Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202469Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202469Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202469Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202469Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202469Calligrapher h6, .stacks_in_2202469Calligrapher h5, .stacks_in_2202469Calligrapher h4, .stacks_in_2202469Calligrapher h3, .stacks_in_2202469Calligrapher h2, .stacks_in_2202469Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202469Calligrapher, .stacks_in_2202469Calligrapher h1, .stacks_in_2202469Calligrapher h2, .stacks_in_2202469Calligrapher h3, .stacks_in_2202469Calligrapher h4, .stacks_in_2202469Calligrapher h5, .stacks_in_2202469Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202469targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202469Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202469Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202469Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202469Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooMax stack CSS code */#stacks_in_2202474, .stacks_in_2202474MaxWidthContainer{	-webkit-box-sizing: border-box;	-moz-box-sizing: border-box;	box-sizing: border-box;}     .stacks_in_2202474MaxWidthContainer{	    max-width: 960px;	}    .stacks_in_2202474MaxWidthContainer{		margin: 0 auto 0 auto;	}@media only screen and (max-width: 1024px) {	 	    .stacks_in_2202474MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2202474MaxWidthContainer{			margin: 0 auto 0 auto;		}		}@media only screen and (max-width: 480px) {	 	    .stacks_in_2202474MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2202474MaxWidthContainer{			margin: 0 auto 0 auto;		}		}/* End dooMax stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202475Calligrapher{			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_2202475Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202475Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202475Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202475Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202475Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202475Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202475Calligrapher h6, .stacks_in_2202475Calligrapher h5, .stacks_in_2202475Calligrapher h4, .stacks_in_2202475Calligrapher h3, .stacks_in_2202475Calligrapher h2, .stacks_in_2202475Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202475Calligrapher, .stacks_in_2202475Calligrapher h1, .stacks_in_2202475Calligrapher h2, .stacks_in_2202475Calligrapher h3, .stacks_in_2202475Calligrapher h4, .stacks_in_2202475Calligrapher h5, .stacks_in_2202475Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202475targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202475Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202475Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202475Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202475Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202476 {
	padding: 30px 0px 20px 0px;
}
#usefulStackWrapperstacks_in_2203212 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 180px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203212 {
	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_2203212 {
		display: none;
	}
}













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

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

.stacks_in_2203214_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_2202593 {
	margin: 0 0 0 auto;
	min-width: 0px;
	max-width: 600px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202593 {
	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_2202593 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202595Calligrapher{			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_2202595Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202595Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202595Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202595Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202595Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202595Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202595Calligrapher h6, .stacks_in_2202595Calligrapher h5, .stacks_in_2202595Calligrapher h4, .stacks_in_2202595Calligrapher h3, .stacks_in_2202595Calligrapher h2, .stacks_in_2202595Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202595Calligrapher, .stacks_in_2202595Calligrapher h1, .stacks_in_2202595Calligrapher h2, .stacks_in_2202595Calligrapher h3, .stacks_in_2202595Calligrapher h4, .stacks_in_2202595Calligrapher h5, .stacks_in_2202595Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202595targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202595Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202595Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202595Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202595Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202596 {
	padding: 50px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202599Calligrapher{			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_2202599Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202599Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202599Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202599Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202599Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202599Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202599Calligrapher h6, .stacks_in_2202599Calligrapher h5, .stacks_in_2202599Calligrapher h4, .stacks_in_2202599Calligrapher h3, .stacks_in_2202599Calligrapher h2, .stacks_in_2202599Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202599Calligrapher, .stacks_in_2202599Calligrapher h1, .stacks_in_2202599Calligrapher h2, .stacks_in_2202599Calligrapher h3, .stacks_in_2202599Calligrapher h4, .stacks_in_2202599Calligrapher h5, .stacks_in_2202599Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202599targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202599Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202599Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202599Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202599Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202600 {
	padding: 10px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202603Calligrapher{			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_2202603Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202603Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202603Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202603Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202603Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202603Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202603Calligrapher h6, .stacks_in_2202603Calligrapher h5, .stacks_in_2202603Calligrapher h4, .stacks_in_2202603Calligrapher h3, .stacks_in_2202603Calligrapher h2, .stacks_in_2202603Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202603Calligrapher, .stacks_in_2202603Calligrapher h1, .stacks_in_2202603Calligrapher h2, .stacks_in_2202603Calligrapher h3, .stacks_in_2202603Calligrapher h4, .stacks_in_2202603Calligrapher h5, .stacks_in_2202603Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202603targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202603Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202603Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202603Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202603Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202604 {
	padding: 20px 0px 20px 0px;
}
/* @group Basic Settings */

#listerWrapperstacks_in_2202667 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

/*  *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202668Calligrapher{			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_2202668Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202668Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202668Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202668Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202668Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202668Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202668Calligrapher h6, .stacks_in_2202668Calligrapher h5, .stacks_in_2202668Calligrapher h4, .stacks_in_2202668Calligrapher h3, .stacks_in_2202668Calligrapher h2, .stacks_in_2202668Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2202668Calligrapher, .stacks_in_2202668Calligrapher h1, .stacks_in_2202668Calligrapher h2, .stacks_in_2202668Calligrapher h3, .stacks_in_2202668Calligrapher h4, .stacks_in_2202668Calligrapher h5, .stacks_in_2202668Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202668targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202668Calligrapher a:link{			color: #8C7C56 !important;			text-decoration: none !important;		}				.stacks_in_2202668Calligrapher a:visited{			color: #8C7C56 !important;		}				.stacks_in_2202668Calligrapher a:active{			color: #8C7C56 !important;		}				.stacks_in_2202668Calligrapher a:hover{			color: #4C4C4C !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202669 {
	padding: 5px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_2202673 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202673 {
	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_2202673 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202674Calligrapher{			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_2202674Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202674Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202674Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202674Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202674Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202674Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202674Calligrapher h6, .stacks_in_2202674Calligrapher h5, .stacks_in_2202674Calligrapher h4, .stacks_in_2202674Calligrapher h3, .stacks_in_2202674Calligrapher h2, .stacks_in_2202674Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202674Calligrapher, .stacks_in_2202674Calligrapher h1, .stacks_in_2202674Calligrapher h2, .stacks_in_2202674Calligrapher h3, .stacks_in_2202674Calligrapher h4, .stacks_in_2202674Calligrapher h5, .stacks_in_2202674Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202674targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202674Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202674Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202674Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202674Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202675 {
	padding: 5px 0px 20px 0px;
}
/* @group Basic Settings */

#listerWrapperstacks_in_2202643 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

/*  *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202644Calligrapher{			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_2202644Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202644Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202644Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202644Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202644Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202644Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202644Calligrapher h6, .stacks_in_2202644Calligrapher h5, .stacks_in_2202644Calligrapher h4, .stacks_in_2202644Calligrapher h3, .stacks_in_2202644Calligrapher h2, .stacks_in_2202644Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2202644Calligrapher, .stacks_in_2202644Calligrapher h1, .stacks_in_2202644Calligrapher h2, .stacks_in_2202644Calligrapher h3, .stacks_in_2202644Calligrapher h4, .stacks_in_2202644Calligrapher h5, .stacks_in_2202644Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202644targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202644Calligrapher a:link{			color: #8C7C56 !important;			text-decoration: none !important;		}				.stacks_in_2202644Calligrapher a:visited{			color: #8C7C56 !important;		}				.stacks_in_2202644Calligrapher a:active{			color: #8C7C56 !important;		}				.stacks_in_2202644Calligrapher a:hover{			color: #4C4C4C !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202645 {
	padding: 5px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_2202649 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202649 {
	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_2202649 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202650Calligrapher{			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_2202650Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202650Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202650Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202650Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202650Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202650Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202650Calligrapher h6, .stacks_in_2202650Calligrapher h5, .stacks_in_2202650Calligrapher h4, .stacks_in_2202650Calligrapher h3, .stacks_in_2202650Calligrapher h2, .stacks_in_2202650Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202650Calligrapher, .stacks_in_2202650Calligrapher h1, .stacks_in_2202650Calligrapher h2, .stacks_in_2202650Calligrapher h3, .stacks_in_2202650Calligrapher h4, .stacks_in_2202650Calligrapher h5, .stacks_in_2202650Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202650targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202650Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202650Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202650Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202650Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202651 {
	padding: 5px 0px 20px 0px;
}
/* @group Basic Settings */

#listerWrapperstacks_in_2202655 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

/*  *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202656Calligrapher{			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_2202656Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202656Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202656Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202656Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202656Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202656Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202656Calligrapher h6, .stacks_in_2202656Calligrapher h5, .stacks_in_2202656Calligrapher h4, .stacks_in_2202656Calligrapher h3, .stacks_in_2202656Calligrapher h2, .stacks_in_2202656Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2202656Calligrapher, .stacks_in_2202656Calligrapher h1, .stacks_in_2202656Calligrapher h2, .stacks_in_2202656Calligrapher h3, .stacks_in_2202656Calligrapher h4, .stacks_in_2202656Calligrapher h5, .stacks_in_2202656Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202656targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202656Calligrapher a:link{			color: #8C7C56 !important;			text-decoration: none !important;		}				.stacks_in_2202656Calligrapher a:visited{			color: #8C7C56 !important;		}				.stacks_in_2202656Calligrapher a:active{			color: #8C7C56 !important;		}				.stacks_in_2202656Calligrapher a:hover{			color: #4C4C4C !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202657 {
	padding: 5px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_2203188 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203188 {
	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_2203188 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203190Calligrapher{			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_2203190Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203190Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203190Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203190Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203190Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203190Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203190Calligrapher h6, .stacks_in_2203190Calligrapher h5, .stacks_in_2203190Calligrapher h4, .stacks_in_2203190Calligrapher h3, .stacks_in_2203190Calligrapher h2, .stacks_in_2203190Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203190Calligrapher, .stacks_in_2203190Calligrapher h1, .stacks_in_2203190Calligrapher h2, .stacks_in_2203190Calligrapher h3, .stacks_in_2203190Calligrapher h4, .stacks_in_2203190Calligrapher h5, .stacks_in_2203190Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203190targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203190Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203190Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203190Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203190Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203192 {
	padding: 5px 0px 20px 0px;
}
/* @group Basic Settings */

#listerWrapperstacks_in_2203194 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

/*  *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203196Calligrapher{			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_2203196Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203196Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203196Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203196Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203196Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203196Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203196Calligrapher h6, .stacks_in_2203196Calligrapher h5, .stacks_in_2203196Calligrapher h4, .stacks_in_2203196Calligrapher h3, .stacks_in_2203196Calligrapher h2, .stacks_in_2203196Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203196Calligrapher, .stacks_in_2203196Calligrapher h1, .stacks_in_2203196Calligrapher h2, .stacks_in_2203196Calligrapher h3, .stacks_in_2203196Calligrapher h4, .stacks_in_2203196Calligrapher h5, .stacks_in_2203196Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203196targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203196Calligrapher a:link{			color: #8C7C56 !important;			text-decoration: none !important;		}				.stacks_in_2203196Calligrapher a:visited{			color: #8C7C56 !important;		}				.stacks_in_2203196Calligrapher a:active{			color: #8C7C56 !important;		}				.stacks_in_2203196Calligrapher a:hover{			color: #4C4C4C !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203198 {
	padding: 5px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_2203200 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203200 {
	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_2203200 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203202Calligrapher{			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_2203202Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203202Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203202Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203202Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203202Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203202Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203202Calligrapher h6, .stacks_in_2203202Calligrapher h5, .stacks_in_2203202Calligrapher h4, .stacks_in_2203202Calligrapher h3, .stacks_in_2203202Calligrapher h2, .stacks_in_2203202Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203202Calligrapher, .stacks_in_2203202Calligrapher h1, .stacks_in_2203202Calligrapher h2, .stacks_in_2203202Calligrapher h3, .stacks_in_2203202Calligrapher h4, .stacks_in_2203202Calligrapher h5, .stacks_in_2203202Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203202targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203202Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2203202Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2203202Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2203202Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203204 {
	padding: 5px 0px 20px 0px;
}
/* @group Basic Settings */

#listerWrapperstacks_in_2203182 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

/*  *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203184Calligrapher{			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_2203184Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203184Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203184Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203184Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203184Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203184Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203184Calligrapher h6, .stacks_in_2203184Calligrapher h5, .stacks_in_2203184Calligrapher h4, .stacks_in_2203184Calligrapher h3, .stacks_in_2203184Calligrapher h2, .stacks_in_2203184Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_2203184Calligrapher, .stacks_in_2203184Calligrapher h1, .stacks_in_2203184Calligrapher h2, .stacks_in_2203184Calligrapher h3, .stacks_in_2203184Calligrapher h4, .stacks_in_2203184Calligrapher h5, .stacks_in_2203184Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203184targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203184Calligrapher a:link{			color: #8C7C56 !important;			text-decoration: none !important;		}				.stacks_in_2203184Calligrapher a:visited{			color: #8C7C56 !important;		}				.stacks_in_2203184Calligrapher a:active{			color: #8C7C56 !important;		}				.stacks_in_2203184Calligrapher a:hover{			color: #4C4C4C !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2203186 {
	padding: 5px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_2202661 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202661 {
	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_2202661 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202662Calligrapher{			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_2202662Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202662Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202662Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202662Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202662Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202662Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202662Calligrapher h6, .stacks_in_2202662Calligrapher h5, .stacks_in_2202662Calligrapher h4, .stacks_in_2202662Calligrapher h3, .stacks_in_2202662Calligrapher h2, .stacks_in_2202662Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202662Calligrapher, .stacks_in_2202662Calligrapher h1, .stacks_in_2202662Calligrapher h2, .stacks_in_2202662Calligrapher h3, .stacks_in_2202662Calligrapher h4, .stacks_in_2202662Calligrapher h5, .stacks_in_2202662Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202662targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202662Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202662Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202662Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202662Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202663 {
	padding: 5px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202679Calligrapher{			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_2202679Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202679Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202679Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202679Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202679Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202679Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202679Calligrapher h6, .stacks_in_2202679Calligrapher h5, .stacks_in_2202679Calligrapher h4, .stacks_in_2202679Calligrapher h3, .stacks_in_2202679Calligrapher h2, .stacks_in_2202679Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202679Calligrapher, .stacks_in_2202679Calligrapher h1, .stacks_in_2202679Calligrapher h2, .stacks_in_2202679Calligrapher h3, .stacks_in_2202679Calligrapher h4, .stacks_in_2202679Calligrapher h5, .stacks_in_2202679Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202679targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202679Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202679Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202679Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202679Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202680 {
	padding: 20px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202683Calligrapher{			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_2202683Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202683Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202683Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202683Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202683Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202683Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202683Calligrapher h6, .stacks_in_2202683Calligrapher h5, .stacks_in_2202683Calligrapher h4, .stacks_in_2202683Calligrapher h3, .stacks_in_2202683Calligrapher h2, .stacks_in_2202683Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202683Calligrapher, .stacks_in_2202683Calligrapher h1, .stacks_in_2202683Calligrapher h2, .stacks_in_2202683Calligrapher h3, .stacks_in_2202683Calligrapher h4, .stacks_in_2202683Calligrapher h5, .stacks_in_2202683Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202683targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202683Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202683Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202683Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202683Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202684 {
	padding: 30px 0px 60px 0px;
}
/* Start Agent-X stack CSS code */.stacks_in_2202796label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_2202796iPhoneContent, .stacks_in_2202796iPadContent, .stacks_in_2202796AndroidContent, .stacks_in_2202796BlackberryContent, .stacks_in_2202796DesktopContent {	display: none;}.stacks_in_2202796label{	display: none;}/* End Agent-X stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202800Calligrapher{			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_2202800Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202800Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202800Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202800Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202800Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202800Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202800Calligrapher h6, .stacks_in_2202800Calligrapher h5, .stacks_in_2202800Calligrapher h4, .stacks_in_2202800Calligrapher h3, .stacks_in_2202800Calligrapher h2, .stacks_in_2202800Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202800Calligrapher, .stacks_in_2202800Calligrapher h1, .stacks_in_2202800Calligrapher h2, .stacks_in_2202800Calligrapher h3, .stacks_in_2202800Calligrapher h4, .stacks_in_2202800Calligrapher h5, .stacks_in_2202800Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202800Calligrapher, .stacks_in_2202800Calligrapher h1, .stacks_in_2202800Calligrapher h2, .stacks_in_2202800Calligrapher h3, .stacks_in_2202800Calligrapher h4, .stacks_in_2202800Calligrapher h5, .stacks_in_2202800Calligrapher h6{	text-shadow: 1px 1px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202800targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202800Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202800Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202800Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202800Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202802 {
	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_2202804.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202804.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202804.CR6_L,
.stacks_in_2202804.CR6_L1 {
	float: left;
}
.stacks_in_2202804.CR6_R,
.stacks_in_2202804.CR6_R1 {
	float: left;
}
.stacks_in_2202804.CR6 {
	width: 13%;
}
.stacks_in_2202804.CR6_S {
	width: 13.2%;
}
.stacks_in_2202804.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202804.CR6_LF,
.stacks_in_2202804.CR6_LL,
.stacks_in_2202804.CR6_RF,
.stacks_in_2202804.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202804.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202804.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202804.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202804.CR6,
	.stacks_in_2202804.CR6_S {
		width: 47%;
	}
	.stacks_in_2202804.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202804.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202804.CR6.CR6_Goff,
	.stacks_in_2202804.CR6_S.CR6_Goff,
	.stacks_in_2202804.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202804.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202804.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202804.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202804.CR6,
	.stacks_in_2202804.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202804 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202806Calligrapher{			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_2202806Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202806Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202806Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202806Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202806Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202806Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202806Calligrapher h6, .stacks_in_2202806Calligrapher h5, .stacks_in_2202806Calligrapher h4, .stacks_in_2202806Calligrapher h3, .stacks_in_2202806Calligrapher h2, .stacks_in_2202806Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202806Calligrapher, .stacks_in_2202806Calligrapher h1, .stacks_in_2202806Calligrapher h2, .stacks_in_2202806Calligrapher h3, .stacks_in_2202806Calligrapher h4, .stacks_in_2202806Calligrapher h5, .stacks_in_2202806Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202806Calligrapher, .stacks_in_2202806Calligrapher h1, .stacks_in_2202806Calligrapher h2, .stacks_in_2202806Calligrapher h3, .stacks_in_2202806Calligrapher h4, .stacks_in_2202806Calligrapher h5, .stacks_in_2202806Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202806targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202806Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202806Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202806Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202806Calligrapher 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_2202810Calligrapher{			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_2202810Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202810Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202810Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202810Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202810Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202810Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202810Calligrapher h6, .stacks_in_2202810Calligrapher h5, .stacks_in_2202810Calligrapher h4, .stacks_in_2202810Calligrapher h3, .stacks_in_2202810Calligrapher h2, .stacks_in_2202810Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202810Calligrapher, .stacks_in_2202810Calligrapher h1, .stacks_in_2202810Calligrapher h2, .stacks_in_2202810Calligrapher h3, .stacks_in_2202810Calligrapher h4, .stacks_in_2202810Calligrapher h5, .stacks_in_2202810Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202810Calligrapher, .stacks_in_2202810Calligrapher h1, .stacks_in_2202810Calligrapher h2, .stacks_in_2202810Calligrapher h3, .stacks_in_2202810Calligrapher h4, .stacks_in_2202810Calligrapher h5, .stacks_in_2202810Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202810targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202810Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202810Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202810Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202810Calligrapher 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_2202815Calligrapher{			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_2202815Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202815Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202815Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202815Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202815Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202815Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202815Calligrapher h6, .stacks_in_2202815Calligrapher h5, .stacks_in_2202815Calligrapher h4, .stacks_in_2202815Calligrapher h3, .stacks_in_2202815Calligrapher h2, .stacks_in_2202815Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202815Calligrapher, .stacks_in_2202815Calligrapher h1, .stacks_in_2202815Calligrapher h2, .stacks_in_2202815Calligrapher h3, .stacks_in_2202815Calligrapher h4, .stacks_in_2202815Calligrapher h5, .stacks_in_2202815Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202815Calligrapher, .stacks_in_2202815Calligrapher h1, .stacks_in_2202815Calligrapher h2, .stacks_in_2202815Calligrapher h3, .stacks_in_2202815Calligrapher h4, .stacks_in_2202815Calligrapher h5, .stacks_in_2202815Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202815targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202815Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202815Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202815Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202815Calligrapher 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_2202819Calligrapher{			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_2202819Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202819Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202819Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202819Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202819Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202819Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202819Calligrapher h6, .stacks_in_2202819Calligrapher h5, .stacks_in_2202819Calligrapher h4, .stacks_in_2202819Calligrapher h3, .stacks_in_2202819Calligrapher h2, .stacks_in_2202819Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202819Calligrapher, .stacks_in_2202819Calligrapher h1, .stacks_in_2202819Calligrapher h2, .stacks_in_2202819Calligrapher h3, .stacks_in_2202819Calligrapher h4, .stacks_in_2202819Calligrapher h5, .stacks_in_2202819Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202819Calligrapher, .stacks_in_2202819Calligrapher h1, .stacks_in_2202819Calligrapher h2, .stacks_in_2202819Calligrapher h3, .stacks_in_2202819Calligrapher h4, .stacks_in_2202819Calligrapher h5, .stacks_in_2202819Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202819targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202819Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202819Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202819Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202819Calligrapher 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_2202823Calligrapher{			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_2202823Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202823Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202823Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202823Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202823Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202823Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202823Calligrapher h6, .stacks_in_2202823Calligrapher h5, .stacks_in_2202823Calligrapher h4, .stacks_in_2202823Calligrapher h3, .stacks_in_2202823Calligrapher h2, .stacks_in_2202823Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202823Calligrapher, .stacks_in_2202823Calligrapher h1, .stacks_in_2202823Calligrapher h2, .stacks_in_2202823Calligrapher h3, .stacks_in_2202823Calligrapher h4, .stacks_in_2202823Calligrapher h5, .stacks_in_2202823Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202823Calligrapher, .stacks_in_2202823Calligrapher h1, .stacks_in_2202823Calligrapher h2, .stacks_in_2202823Calligrapher h3, .stacks_in_2202823Calligrapher h4, .stacks_in_2202823Calligrapher h5, .stacks_in_2202823Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202823targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202823Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202823Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202823Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202823Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202823 {
	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_2202827.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202827.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202827.CR6_L,
.stacks_in_2202827.CR6_L1 {
	float: left;
}
.stacks_in_2202827.CR6_R,
.stacks_in_2202827.CR6_R1 {
	float: left;
}
.stacks_in_2202827.CR6 {
	width: 15%;
}
.stacks_in_2202827.CR6_S {
	width: 15.2%;
}
.stacks_in_2202827.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_2202827.CR6_LF,
.stacks_in_2202827.CR6_LL,
.stacks_in_2202827.CR6_RF,
.stacks_in_2202827.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202827.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_2202827.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_2202827.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202827.CR6,
	.stacks_in_2202827.CR6_S {
		width: 49%;
	}
	.stacks_in_2202827.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202827.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202827.CR6.CR6_Goff,
	.stacks_in_2202827.CR6_S.CR6_Goff,
	.stacks_in_2202827.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202827.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202827.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202827.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202827.CR6,
	.stacks_in_2202827.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202829Calligrapher{			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_2202829Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202829Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202829Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202829Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202829Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202829Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202829Calligrapher h6, .stacks_in_2202829Calligrapher h5, .stacks_in_2202829Calligrapher h4, .stacks_in_2202829Calligrapher h3, .stacks_in_2202829Calligrapher h2, .stacks_in_2202829Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202829Calligrapher, .stacks_in_2202829Calligrapher h1, .stacks_in_2202829Calligrapher h2, .stacks_in_2202829Calligrapher h3, .stacks_in_2202829Calligrapher h4, .stacks_in_2202829Calligrapher h5, .stacks_in_2202829Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202829Calligrapher, .stacks_in_2202829Calligrapher h1, .stacks_in_2202829Calligrapher h2, .stacks_in_2202829Calligrapher h3, .stacks_in_2202829Calligrapher h4, .stacks_in_2202829Calligrapher h5, .stacks_in_2202829Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202829targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202829Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202829Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202829Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202829Calligrapher 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_2202834Calligrapher{			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_2202834Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202834Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202834Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202834Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202834Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202834Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202834Calligrapher h6, .stacks_in_2202834Calligrapher h5, .stacks_in_2202834Calligrapher h4, .stacks_in_2202834Calligrapher h3, .stacks_in_2202834Calligrapher h2, .stacks_in_2202834Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202834Calligrapher, .stacks_in_2202834Calligrapher h1, .stacks_in_2202834Calligrapher h2, .stacks_in_2202834Calligrapher h3, .stacks_in_2202834Calligrapher h4, .stacks_in_2202834Calligrapher h5, .stacks_in_2202834Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202834Calligrapher, .stacks_in_2202834Calligrapher h1, .stacks_in_2202834Calligrapher h2, .stacks_in_2202834Calligrapher h3, .stacks_in_2202834Calligrapher h4, .stacks_in_2202834Calligrapher h5, .stacks_in_2202834Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202834targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202834Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202834Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202834Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202834Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//*
 * cleanResponse
 * Version: 2.0.4
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202843.CR6_L,
.stacks_in_2202843.CR6_L1 {
	float: left;
}
.stacks_in_2202843.CR6_R,
.stacks_in_2202843.CR6_R1 {
	float: left;
}
.stacks_in_2202843.CR6 {
	width: 15%;
}
.stacks_in_2202843.CR6_S {
	width: 15.2%;
}
.stacks_in_2202843.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_2202843.CR6_LF,
.stacks_in_2202843.CR6_LL,
.stacks_in_2202843.CR6_RF,
.stacks_in_2202843.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202843.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_2202843.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_2202843.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202843.CR6,
	.stacks_in_2202843.CR6_S {
		width: 49%;
	}
	.stacks_in_2202843.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202843.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202843.CR6.CR6_Goff,
	.stacks_in_2202843.CR6_S.CR6_Goff,
	.stacks_in_2202843.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202843.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202843.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202843.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202843.CR6,
	.stacks_in_2202843.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202843 {
	padding: 100px 0px 10px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202847Calligrapher{			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_2202847Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202847Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202847Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202847Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202847Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202847Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202847Calligrapher h6, .stacks_in_2202847Calligrapher h5, .stacks_in_2202847Calligrapher h4, .stacks_in_2202847Calligrapher h3, .stacks_in_2202847Calligrapher h2, .stacks_in_2202847Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202847Calligrapher, .stacks_in_2202847Calligrapher h1, .stacks_in_2202847Calligrapher h2, .stacks_in_2202847Calligrapher h3, .stacks_in_2202847Calligrapher h4, .stacks_in_2202847Calligrapher h5, .stacks_in_2202847Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202847Calligrapher, .stacks_in_2202847Calligrapher h1, .stacks_in_2202847Calligrapher h2, .stacks_in_2202847Calligrapher h3, .stacks_in_2202847Calligrapher h4, .stacks_in_2202847Calligrapher h5, .stacks_in_2202847Calligrapher h6{	text-shadow: 1px 1px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202847targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202847Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202847Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202847Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202847Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202849 {
	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_2202851.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202851.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202851.CR6_L,
.stacks_in_2202851.CR6_L1 {
	float: left;
}
.stacks_in_2202851.CR6_R,
.stacks_in_2202851.CR6_R1 {
	float: left;
}
.stacks_in_2202851.CR6 {
	width: 13%;
}
.stacks_in_2202851.CR6_S {
	width: 13.2%;
}
.stacks_in_2202851.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202851.CR6_LF,
.stacks_in_2202851.CR6_LL,
.stacks_in_2202851.CR6_RF,
.stacks_in_2202851.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202851.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202851.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202851.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202851.CR6,
	.stacks_in_2202851.CR6_S {
		width: 47%;
	}
	.stacks_in_2202851.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202851.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202851.CR6.CR6_Goff,
	.stacks_in_2202851.CR6_S.CR6_Goff,
	.stacks_in_2202851.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202851.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202851.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202851.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202851.CR6,
	.stacks_in_2202851.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202851 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202853Calligrapher{			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_2202853Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202853Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202853Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202853Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202853Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202853Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202853Calligrapher h6, .stacks_in_2202853Calligrapher h5, .stacks_in_2202853Calligrapher h4, .stacks_in_2202853Calligrapher h3, .stacks_in_2202853Calligrapher h2, .stacks_in_2202853Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202853Calligrapher, .stacks_in_2202853Calligrapher h1, .stacks_in_2202853Calligrapher h2, .stacks_in_2202853Calligrapher h3, .stacks_in_2202853Calligrapher h4, .stacks_in_2202853Calligrapher h5, .stacks_in_2202853Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202853Calligrapher, .stacks_in_2202853Calligrapher h1, .stacks_in_2202853Calligrapher h2, .stacks_in_2202853Calligrapher h3, .stacks_in_2202853Calligrapher h4, .stacks_in_2202853Calligrapher h5, .stacks_in_2202853Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202853targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202853Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202853Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202853Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202853Calligrapher 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_2202857Calligrapher{			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_2202857Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202857Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202857Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202857Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202857Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202857Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202857Calligrapher h6, .stacks_in_2202857Calligrapher h5, .stacks_in_2202857Calligrapher h4, .stacks_in_2202857Calligrapher h3, .stacks_in_2202857Calligrapher h2, .stacks_in_2202857Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202857Calligrapher, .stacks_in_2202857Calligrapher h1, .stacks_in_2202857Calligrapher h2, .stacks_in_2202857Calligrapher h3, .stacks_in_2202857Calligrapher h4, .stacks_in_2202857Calligrapher h5, .stacks_in_2202857Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202857Calligrapher, .stacks_in_2202857Calligrapher h1, .stacks_in_2202857Calligrapher h2, .stacks_in_2202857Calligrapher h3, .stacks_in_2202857Calligrapher h4, .stacks_in_2202857Calligrapher h5, .stacks_in_2202857Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202857targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202857Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202857Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202857Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202857Calligrapher 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_2202862Calligrapher{			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_2202862Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202862Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202862Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202862Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202862Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202862Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202862Calligrapher h6, .stacks_in_2202862Calligrapher h5, .stacks_in_2202862Calligrapher h4, .stacks_in_2202862Calligrapher h3, .stacks_in_2202862Calligrapher h2, .stacks_in_2202862Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202862Calligrapher, .stacks_in_2202862Calligrapher h1, .stacks_in_2202862Calligrapher h2, .stacks_in_2202862Calligrapher h3, .stacks_in_2202862Calligrapher h4, .stacks_in_2202862Calligrapher h5, .stacks_in_2202862Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202862Calligrapher, .stacks_in_2202862Calligrapher h1, .stacks_in_2202862Calligrapher h2, .stacks_in_2202862Calligrapher h3, .stacks_in_2202862Calligrapher h4, .stacks_in_2202862Calligrapher h5, .stacks_in_2202862Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202862targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202862Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202862Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202862Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202862Calligrapher 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_2202866Calligrapher{			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_2202866Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202866Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202866Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202866Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202866Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202866Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202866Calligrapher h6, .stacks_in_2202866Calligrapher h5, .stacks_in_2202866Calligrapher h4, .stacks_in_2202866Calligrapher h3, .stacks_in_2202866Calligrapher h2, .stacks_in_2202866Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202866Calligrapher, .stacks_in_2202866Calligrapher h1, .stacks_in_2202866Calligrapher h2, .stacks_in_2202866Calligrapher h3, .stacks_in_2202866Calligrapher h4, .stacks_in_2202866Calligrapher h5, .stacks_in_2202866Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202866Calligrapher, .stacks_in_2202866Calligrapher h1, .stacks_in_2202866Calligrapher h2, .stacks_in_2202866Calligrapher h3, .stacks_in_2202866Calligrapher h4, .stacks_in_2202866Calligrapher h5, .stacks_in_2202866Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202866targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202866Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202866Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202866Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202866Calligrapher 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_2202870Calligrapher{			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_2202870Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202870Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202870Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202870Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202870Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202870Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202870Calligrapher h6, .stacks_in_2202870Calligrapher h5, .stacks_in_2202870Calligrapher h4, .stacks_in_2202870Calligrapher h3, .stacks_in_2202870Calligrapher h2, .stacks_in_2202870Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202870Calligrapher, .stacks_in_2202870Calligrapher h1, .stacks_in_2202870Calligrapher h2, .stacks_in_2202870Calligrapher h3, .stacks_in_2202870Calligrapher h4, .stacks_in_2202870Calligrapher h5, .stacks_in_2202870Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202870Calligrapher, .stacks_in_2202870Calligrapher h1, .stacks_in_2202870Calligrapher h2, .stacks_in_2202870Calligrapher h3, .stacks_in_2202870Calligrapher h4, .stacks_in_2202870Calligrapher h5, .stacks_in_2202870Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202870targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202870Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202870Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202870Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202870Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202870 {
	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_2202874.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202874.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202874.CR6_L,
.stacks_in_2202874.CR6_L1 {
	float: left;
}
.stacks_in_2202874.CR6_R,
.stacks_in_2202874.CR6_R1 {
	float: left;
}
.stacks_in_2202874.CR6 {
	width: 15%;
}
.stacks_in_2202874.CR6_S {
	width: 15.2%;
}
.stacks_in_2202874.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_2202874.CR6_LF,
.stacks_in_2202874.CR6_LL,
.stacks_in_2202874.CR6_RF,
.stacks_in_2202874.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202874.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_2202874.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_2202874.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202874.CR6,
	.stacks_in_2202874.CR6_S {
		width: 49%;
	}
	.stacks_in_2202874.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202874.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202874.CR6.CR6_Goff,
	.stacks_in_2202874.CR6_S.CR6_Goff,
	.stacks_in_2202874.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202874.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202874.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202874.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202874.CR6,
	.stacks_in_2202874.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202876Calligrapher{			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_2202876Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202876Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202876Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202876Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202876Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202876Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202876Calligrapher h6, .stacks_in_2202876Calligrapher h5, .stacks_in_2202876Calligrapher h4, .stacks_in_2202876Calligrapher h3, .stacks_in_2202876Calligrapher h2, .stacks_in_2202876Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202876Calligrapher, .stacks_in_2202876Calligrapher h1, .stacks_in_2202876Calligrapher h2, .stacks_in_2202876Calligrapher h3, .stacks_in_2202876Calligrapher h4, .stacks_in_2202876Calligrapher h5, .stacks_in_2202876Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202876Calligrapher, .stacks_in_2202876Calligrapher h1, .stacks_in_2202876Calligrapher h2, .stacks_in_2202876Calligrapher h3, .stacks_in_2202876Calligrapher h4, .stacks_in_2202876Calligrapher h5, .stacks_in_2202876Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202876targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202876Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202876Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202876Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202876Calligrapher 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_2202881Calligrapher{			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_2202881Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202881Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202881Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202881Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202881Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202881Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202881Calligrapher h6, .stacks_in_2202881Calligrapher h5, .stacks_in_2202881Calligrapher h4, .stacks_in_2202881Calligrapher h3, .stacks_in_2202881Calligrapher h2, .stacks_in_2202881Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202881Calligrapher, .stacks_in_2202881Calligrapher h1, .stacks_in_2202881Calligrapher h2, .stacks_in_2202881Calligrapher h3, .stacks_in_2202881Calligrapher h4, .stacks_in_2202881Calligrapher h5, .stacks_in_2202881Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202881Calligrapher, .stacks_in_2202881Calligrapher h1, .stacks_in_2202881Calligrapher h2, .stacks_in_2202881Calligrapher h3, .stacks_in_2202881Calligrapher h4, .stacks_in_2202881Calligrapher h5, .stacks_in_2202881Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202881targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202881Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202881Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202881Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202881Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#ncp-stacks_in_2202886 img{max-width:100%;height:auto; width:auto;}#ncp-stacks_in_2202886.s2 .c.s1_2 .c-pad,#ncp-stacks_in_2202886.s3 .c.s1_3 .c-pad,#ncp-stacks_in_2202886.s4 .c.s1_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_2202886.s3 .c.s2_3 .c-pad,#ncp-stacks_in_2202886.s4 .c.s2_4 .c-pad,#ncp-stacks_in_2202886.s4 .c.s3_4 .c-pad{padding:0 2px}#ncp-stacks_in_2202886.s2 .c.s2_2 .c-pad,#ncp-stacks_in_2202886.s3 .c.s3_3 .c-pad,#ncp-stacks_in_2202886.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}@media only screen and (max-width:600px){#ncp-stacks_in_2202886 .c{margin:1% 0;padding:4px 0;width:100%}#ncp-stacks_in_2202886 .c:first-child,#ncp-stacks_in_2202886.s4 .c.s1_4,#ncp-stacks_in_2202886.s4 .c.s2_4{padding:0 0 4px}#ncp-stacks_in_2202886 .c:last-child,#ncp-stacks_in_2202886.s4 .c.s3_4,#ncp-stacks_in_2202886.s4 .c.s4_4{padding:4px 0 0}#ncp-stacks_in_2202886.s2 .c-pad,#ncp-stacks_in_2202886.s3 .c-pad{padding:0 !important}#ncp-stacks_in_2202886.s4 .c{width:49.2%}#ncp-stacks_in_2202886.s4 .c.s1_4 .c-pad,#ncp-stacks_in_2202886.s4 .c.s3_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_2202886.s4 .c.s2_4 .c-pad,#ncp-stacks_in_2202886.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}}@media only screen and (max-width:300px){#ncp-stacks_in_2202886 .c .c-pad{padding:0 !important}#ncp-stacks_in_2202886.s4 .c{width:100%}}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202891Calligrapher{			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_2202891Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202891Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202891Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202891Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202891Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202891Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202891Calligrapher h6, .stacks_in_2202891Calligrapher h5, .stacks_in_2202891Calligrapher h4, .stacks_in_2202891Calligrapher h3, .stacks_in_2202891Calligrapher h2, .stacks_in_2202891Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202891Calligrapher, .stacks_in_2202891Calligrapher h1, .stacks_in_2202891Calligrapher h2, .stacks_in_2202891Calligrapher h3, .stacks_in_2202891Calligrapher h4, .stacks_in_2202891Calligrapher h5, .stacks_in_2202891Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202891Calligrapher, .stacks_in_2202891Calligrapher h1, .stacks_in_2202891Calligrapher h2, .stacks_in_2202891Calligrapher h3, .stacks_in_2202891Calligrapher h4, .stacks_in_2202891Calligrapher h5, .stacks_in_2202891Calligrapher h6{	text-shadow: 1px 1px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202891targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202891Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202891Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202891Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202891Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202893 {
	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_2202895.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202895.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202895.CR6_L,
.stacks_in_2202895.CR6_L1 {
	float: left;
}
.stacks_in_2202895.CR6_R,
.stacks_in_2202895.CR6_R1 {
	float: left;
}
.stacks_in_2202895.CR6 {
	width: 13%;
}
.stacks_in_2202895.CR6_S {
	width: 13.2%;
}
.stacks_in_2202895.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202895.CR6_LF,
.stacks_in_2202895.CR6_LL,
.stacks_in_2202895.CR6_RF,
.stacks_in_2202895.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202895.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202895.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202895.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202895.CR6,
	.stacks_in_2202895.CR6_S {
		width: 47%;
	}
	.stacks_in_2202895.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202895.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202895.CR6.CR6_Goff,
	.stacks_in_2202895.CR6_S.CR6_Goff,
	.stacks_in_2202895.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202895.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202895.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202895.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202895.CR6,
	.stacks_in_2202895.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202895 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202897Calligrapher{			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_2202897Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202897Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202897Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202897Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202897Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202897Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202897Calligrapher h6, .stacks_in_2202897Calligrapher h5, .stacks_in_2202897Calligrapher h4, .stacks_in_2202897Calligrapher h3, .stacks_in_2202897Calligrapher h2, .stacks_in_2202897Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202897Calligrapher, .stacks_in_2202897Calligrapher h1, .stacks_in_2202897Calligrapher h2, .stacks_in_2202897Calligrapher h3, .stacks_in_2202897Calligrapher h4, .stacks_in_2202897Calligrapher h5, .stacks_in_2202897Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202897Calligrapher, .stacks_in_2202897Calligrapher h1, .stacks_in_2202897Calligrapher h2, .stacks_in_2202897Calligrapher h3, .stacks_in_2202897Calligrapher h4, .stacks_in_2202897Calligrapher h5, .stacks_in_2202897Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202897targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202897Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202897Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202897Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202897Calligrapher 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_2202901Calligrapher{			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_2202901Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202901Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202901Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202901Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202901Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202901Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202901Calligrapher h6, .stacks_in_2202901Calligrapher h5, .stacks_in_2202901Calligrapher h4, .stacks_in_2202901Calligrapher h3, .stacks_in_2202901Calligrapher h2, .stacks_in_2202901Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202901Calligrapher, .stacks_in_2202901Calligrapher h1, .stacks_in_2202901Calligrapher h2, .stacks_in_2202901Calligrapher h3, .stacks_in_2202901Calligrapher h4, .stacks_in_2202901Calligrapher h5, .stacks_in_2202901Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202901Calligrapher, .stacks_in_2202901Calligrapher h1, .stacks_in_2202901Calligrapher h2, .stacks_in_2202901Calligrapher h3, .stacks_in_2202901Calligrapher h4, .stacks_in_2202901Calligrapher h5, .stacks_in_2202901Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202901targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202901Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202901Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202901Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202901Calligrapher 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_2202906Calligrapher{			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_2202906Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202906Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202906Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202906Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202906Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202906Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202906Calligrapher h6, .stacks_in_2202906Calligrapher h5, .stacks_in_2202906Calligrapher h4, .stacks_in_2202906Calligrapher h3, .stacks_in_2202906Calligrapher h2, .stacks_in_2202906Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202906Calligrapher, .stacks_in_2202906Calligrapher h1, .stacks_in_2202906Calligrapher h2, .stacks_in_2202906Calligrapher h3, .stacks_in_2202906Calligrapher h4, .stacks_in_2202906Calligrapher h5, .stacks_in_2202906Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202906Calligrapher, .stacks_in_2202906Calligrapher h1, .stacks_in_2202906Calligrapher h2, .stacks_in_2202906Calligrapher h3, .stacks_in_2202906Calligrapher h4, .stacks_in_2202906Calligrapher h5, .stacks_in_2202906Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202906targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202906Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202906Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202906Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202906Calligrapher 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_2202910Calligrapher{			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_2202910Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202910Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202910Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202910Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202910Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202910Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202910Calligrapher h6, .stacks_in_2202910Calligrapher h5, .stacks_in_2202910Calligrapher h4, .stacks_in_2202910Calligrapher h3, .stacks_in_2202910Calligrapher h2, .stacks_in_2202910Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202910Calligrapher, .stacks_in_2202910Calligrapher h1, .stacks_in_2202910Calligrapher h2, .stacks_in_2202910Calligrapher h3, .stacks_in_2202910Calligrapher h4, .stacks_in_2202910Calligrapher h5, .stacks_in_2202910Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202910Calligrapher, .stacks_in_2202910Calligrapher h1, .stacks_in_2202910Calligrapher h2, .stacks_in_2202910Calligrapher h3, .stacks_in_2202910Calligrapher h4, .stacks_in_2202910Calligrapher h5, .stacks_in_2202910Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202910targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202910Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202910Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202910Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202910Calligrapher 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_2202914Calligrapher{			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_2202914Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202914Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202914Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202914Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202914Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202914Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202914Calligrapher h6, .stacks_in_2202914Calligrapher h5, .stacks_in_2202914Calligrapher h4, .stacks_in_2202914Calligrapher h3, .stacks_in_2202914Calligrapher h2, .stacks_in_2202914Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202914Calligrapher, .stacks_in_2202914Calligrapher h1, .stacks_in_2202914Calligrapher h2, .stacks_in_2202914Calligrapher h3, .stacks_in_2202914Calligrapher h4, .stacks_in_2202914Calligrapher h5, .stacks_in_2202914Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202914Calligrapher, .stacks_in_2202914Calligrapher h1, .stacks_in_2202914Calligrapher h2, .stacks_in_2202914Calligrapher h3, .stacks_in_2202914Calligrapher h4, .stacks_in_2202914Calligrapher h5, .stacks_in_2202914Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202914targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202914Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202914Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202914Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202914Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202914 {
	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_2202918.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202918.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202918.CR6_L,
.stacks_in_2202918.CR6_L1 {
	float: left;
}
.stacks_in_2202918.CR6_R,
.stacks_in_2202918.CR6_R1 {
	float: left;
}
.stacks_in_2202918.CR6 {
	width: 15%;
}
.stacks_in_2202918.CR6_S {
	width: 15.2%;
}
.stacks_in_2202918.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_2202918.CR6_LF,
.stacks_in_2202918.CR6_LL,
.stacks_in_2202918.CR6_RF,
.stacks_in_2202918.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202918.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_2202918.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_2202918.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202918.CR6,
	.stacks_in_2202918.CR6_S {
		width: 49%;
	}
	.stacks_in_2202918.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202918.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202918.CR6.CR6_Goff,
	.stacks_in_2202918.CR6_S.CR6_Goff,
	.stacks_in_2202918.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202918.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202918.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202918.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202918.CR6,
	.stacks_in_2202918.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202920Calligrapher{			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_2202920Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202920Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202920Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202920Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202920Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202920Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202920Calligrapher h6, .stacks_in_2202920Calligrapher h5, .stacks_in_2202920Calligrapher h4, .stacks_in_2202920Calligrapher h3, .stacks_in_2202920Calligrapher h2, .stacks_in_2202920Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202920Calligrapher, .stacks_in_2202920Calligrapher h1, .stacks_in_2202920Calligrapher h2, .stacks_in_2202920Calligrapher h3, .stacks_in_2202920Calligrapher h4, .stacks_in_2202920Calligrapher h5, .stacks_in_2202920Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202920Calligrapher, .stacks_in_2202920Calligrapher h1, .stacks_in_2202920Calligrapher h2, .stacks_in_2202920Calligrapher h3, .stacks_in_2202920Calligrapher h4, .stacks_in_2202920Calligrapher h5, .stacks_in_2202920Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202920targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202920Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202920Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202920Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202920Calligrapher 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_2202925Calligrapher{			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_2202925Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202925Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202925Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202925Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202925Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202925Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202925Calligrapher h6, .stacks_in_2202925Calligrapher h5, .stacks_in_2202925Calligrapher h4, .stacks_in_2202925Calligrapher h3, .stacks_in_2202925Calligrapher h2, .stacks_in_2202925Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202925Calligrapher, .stacks_in_2202925Calligrapher h1, .stacks_in_2202925Calligrapher h2, .stacks_in_2202925Calligrapher h3, .stacks_in_2202925Calligrapher h4, .stacks_in_2202925Calligrapher h5, .stacks_in_2202925Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202925Calligrapher, .stacks_in_2202925Calligrapher h1, .stacks_in_2202925Calligrapher h2, .stacks_in_2202925Calligrapher h3, .stacks_in_2202925Calligrapher h4, .stacks_in_2202925Calligrapher h5, .stacks_in_2202925Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202925targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202925Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202925Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202925Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202925Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//*
 * cleanResponse
 * Version: 2.0.4
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns
 */

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

.stacks_in_2202935.cleanResponse2_L.CR2_Goff {
	width: 45%;
}
.stacks_in_2202935.cleanResponse2_R.CR2_Goff {
	width: 55%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202935.CR6_L,
.stacks_in_2202935.CR6_L1 {
	float: left;
}
.stacks_in_2202935.CR6_R,
.stacks_in_2202935.CR6_R1 {
	float: left;
}
.stacks_in_2202935.CR6 {
	width: 15%;
}
.stacks_in_2202935.CR6_S {
	width: 15.2%;
}
.stacks_in_2202935.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_2202935.CR6_LF,
.stacks_in_2202935.CR6_LL,
.stacks_in_2202935.CR6_RF,
.stacks_in_2202935.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202935.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_2202935.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_2202935.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202935.CR6,
	.stacks_in_2202935.CR6_S {
		width: 49%;
	}
	.stacks_in_2202935.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202935.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202935.CR6.CR6_Goff,
	.stacks_in_2202935.CR6_S.CR6_Goff,
	.stacks_in_2202935.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202935.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202935.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202935.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202935.CR6,
	.stacks_in_2202935.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202935 {
	padding: 100px 0px 10px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202939Calligrapher{			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_2202939Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202939Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202939Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202939Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202939Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202939Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202939Calligrapher h6, .stacks_in_2202939Calligrapher h5, .stacks_in_2202939Calligrapher h4, .stacks_in_2202939Calligrapher h3, .stacks_in_2202939Calligrapher h2, .stacks_in_2202939Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202939Calligrapher, .stacks_in_2202939Calligrapher h1, .stacks_in_2202939Calligrapher h2, .stacks_in_2202939Calligrapher h3, .stacks_in_2202939Calligrapher h4, .stacks_in_2202939Calligrapher h5, .stacks_in_2202939Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202939Calligrapher, .stacks_in_2202939Calligrapher h1, .stacks_in_2202939Calligrapher h2, .stacks_in_2202939Calligrapher h3, .stacks_in_2202939Calligrapher h4, .stacks_in_2202939Calligrapher h5, .stacks_in_2202939Calligrapher h6{	text-shadow: 1px 1px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202939targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202939Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202939Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202939Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202939Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202941 {
	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_2202943.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202943.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202943.CR6_L,
.stacks_in_2202943.CR6_L1 {
	float: left;
}
.stacks_in_2202943.CR6_R,
.stacks_in_2202943.CR6_R1 {
	float: left;
}
.stacks_in_2202943.CR6 {
	width: 13%;
}
.stacks_in_2202943.CR6_S {
	width: 13.2%;
}
.stacks_in_2202943.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202943.CR6_LF,
.stacks_in_2202943.CR6_LL,
.stacks_in_2202943.CR6_RF,
.stacks_in_2202943.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202943.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202943.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202943.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202943.CR6,
	.stacks_in_2202943.CR6_S {
		width: 47%;
	}
	.stacks_in_2202943.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202943.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202943.CR6.CR6_Goff,
	.stacks_in_2202943.CR6_S.CR6_Goff,
	.stacks_in_2202943.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202943.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202943.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202943.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202943.CR6,
	.stacks_in_2202943.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202943 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202945Calligrapher{			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_2202945Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202945Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202945Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202945Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202945Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202945Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202945Calligrapher h6, .stacks_in_2202945Calligrapher h5, .stacks_in_2202945Calligrapher h4, .stacks_in_2202945Calligrapher h3, .stacks_in_2202945Calligrapher h2, .stacks_in_2202945Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202945Calligrapher, .stacks_in_2202945Calligrapher h1, .stacks_in_2202945Calligrapher h2, .stacks_in_2202945Calligrapher h3, .stacks_in_2202945Calligrapher h4, .stacks_in_2202945Calligrapher h5, .stacks_in_2202945Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202945Calligrapher, .stacks_in_2202945Calligrapher h1, .stacks_in_2202945Calligrapher h2, .stacks_in_2202945Calligrapher h3, .stacks_in_2202945Calligrapher h4, .stacks_in_2202945Calligrapher h5, .stacks_in_2202945Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202945targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202945Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202945Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202945Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202945Calligrapher 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_2202949Calligrapher{			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_2202949Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202949Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202949Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202949Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202949Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202949Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202949Calligrapher h6, .stacks_in_2202949Calligrapher h5, .stacks_in_2202949Calligrapher h4, .stacks_in_2202949Calligrapher h3, .stacks_in_2202949Calligrapher h2, .stacks_in_2202949Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202949Calligrapher, .stacks_in_2202949Calligrapher h1, .stacks_in_2202949Calligrapher h2, .stacks_in_2202949Calligrapher h3, .stacks_in_2202949Calligrapher h4, .stacks_in_2202949Calligrapher h5, .stacks_in_2202949Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202949Calligrapher, .stacks_in_2202949Calligrapher h1, .stacks_in_2202949Calligrapher h2, .stacks_in_2202949Calligrapher h3, .stacks_in_2202949Calligrapher h4, .stacks_in_2202949Calligrapher h5, .stacks_in_2202949Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202949targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202949Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202949Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202949Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202949Calligrapher 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_2202954Calligrapher{			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_2202954Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202954Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202954Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202954Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202954Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202954Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202954Calligrapher h6, .stacks_in_2202954Calligrapher h5, .stacks_in_2202954Calligrapher h4, .stacks_in_2202954Calligrapher h3, .stacks_in_2202954Calligrapher h2, .stacks_in_2202954Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202954Calligrapher, .stacks_in_2202954Calligrapher h1, .stacks_in_2202954Calligrapher h2, .stacks_in_2202954Calligrapher h3, .stacks_in_2202954Calligrapher h4, .stacks_in_2202954Calligrapher h5, .stacks_in_2202954Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202954Calligrapher, .stacks_in_2202954Calligrapher h1, .stacks_in_2202954Calligrapher h2, .stacks_in_2202954Calligrapher h3, .stacks_in_2202954Calligrapher h4, .stacks_in_2202954Calligrapher h5, .stacks_in_2202954Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202954targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202954Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202954Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202954Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202954Calligrapher 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_2202958Calligrapher{			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_2202958Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202958Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202958Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202958Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202958Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202958Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202958Calligrapher h6, .stacks_in_2202958Calligrapher h5, .stacks_in_2202958Calligrapher h4, .stacks_in_2202958Calligrapher h3, .stacks_in_2202958Calligrapher h2, .stacks_in_2202958Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202958Calligrapher, .stacks_in_2202958Calligrapher h1, .stacks_in_2202958Calligrapher h2, .stacks_in_2202958Calligrapher h3, .stacks_in_2202958Calligrapher h4, .stacks_in_2202958Calligrapher h5, .stacks_in_2202958Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202958Calligrapher, .stacks_in_2202958Calligrapher h1, .stacks_in_2202958Calligrapher h2, .stacks_in_2202958Calligrapher h3, .stacks_in_2202958Calligrapher h4, .stacks_in_2202958Calligrapher h5, .stacks_in_2202958Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202958targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202958Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202958Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202958Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202958Calligrapher 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_2202962Calligrapher{			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_2202962Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202962Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202962Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202962Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202962Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202962Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202962Calligrapher h6, .stacks_in_2202962Calligrapher h5, .stacks_in_2202962Calligrapher h4, .stacks_in_2202962Calligrapher h3, .stacks_in_2202962Calligrapher h2, .stacks_in_2202962Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202962Calligrapher, .stacks_in_2202962Calligrapher h1, .stacks_in_2202962Calligrapher h2, .stacks_in_2202962Calligrapher h3, .stacks_in_2202962Calligrapher h4, .stacks_in_2202962Calligrapher h5, .stacks_in_2202962Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202962Calligrapher, .stacks_in_2202962Calligrapher h1, .stacks_in_2202962Calligrapher h2, .stacks_in_2202962Calligrapher h3, .stacks_in_2202962Calligrapher h4, .stacks_in_2202962Calligrapher h5, .stacks_in_2202962Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202962targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202962Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202962Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202962Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202962Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202962 {
	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_2202966.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202966.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#usefulStackstacks_in_2202233 {
	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_2202233 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2203215Calligrapher{			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_2203215Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203215Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203215Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203215Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203215Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203215Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2203215Calligrapher h6, .stacks_in_2203215Calligrapher h5, .stacks_in_2203215Calligrapher h4, .stacks_in_2203215Calligrapher h3, .stacks_in_2203215Calligrapher h2, .stacks_in_2203215Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2203215Calligrapher, .stacks_in_2203215Calligrapher h1, .stacks_in_2203215Calligrapher h2, .stacks_in_2203215Calligrapher h3, .stacks_in_2203215Calligrapher h4, .stacks_in_2203215Calligrapher h5, .stacks_in_2203215Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2203215targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2203215Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2203215Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2203215Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2203215Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#usefulStackWrapperstacks_in_2203217 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 260px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203217 {
	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_2203217 {
		display: none;
	}
}













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

/* CSS code for the ENROLING SOON button */

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

.ButtonMakerStackstacks_in_2203219 {
	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_2203219 {
	background: #000000;
}

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





















.ButtonMakerStackstacks_in_2203219 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_2203219 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_2203219 .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_2203219:hover .Button-Label {
	color: #FFFFFF;
}






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

/* End of CSS code for the ENROLING SOON button */











/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_222288Calligrapher{			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_222288Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222288Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222288Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222288Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222288Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222288Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222288Calligrapher h6, .stacks_in_222288Calligrapher h5, .stacks_in_222288Calligrapher h4, .stacks_in_222288Calligrapher h3, .stacks_in_222288Calligrapher h2, .stacks_in_222288Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_222288Calligrapher, .stacks_in_222288Calligrapher h1, .stacks_in_222288Calligrapher h2, .stacks_in_222288Calligrapher h3, .stacks_in_222288Calligrapher h4, .stacks_in_222288Calligrapher h5, .stacks_in_222288Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_222288targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_222288Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_222288Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_222288Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_222288Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_222296 {
	padding: 20px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202244Calligrapher{			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_2202244Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202244Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202244Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202244Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202244Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202244Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202244Calligrapher h6, .stacks_in_2202244Calligrapher h5, .stacks_in_2202244Calligrapher h4, .stacks_in_2202244Calligrapher h3, .stacks_in_2202244Calligrapher h2, .stacks_in_2202244Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202244Calligrapher, .stacks_in_2202244Calligrapher h1, .stacks_in_2202244Calligrapher h2, .stacks_in_2202244Calligrapher h3, .stacks_in_2202244Calligrapher h4, .stacks_in_2202244Calligrapher h5, .stacks_in_2202244Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202244targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202244Calligrapher a:link{			color: #000000 !important;			text-decoration: none !important;		}				.stacks_in_2202244Calligrapher a:visited{			color: #000000 !important;		}				.stacks_in_2202244Calligrapher a:active{			color: #000000 !important;		}				.stacks_in_2202244Calligrapher a:hover{			color: #666666 !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Contact Form stack CSS code */.stacks_in_2202245formwrap{	margin: 0;}#stacks_in_2202245comment{display: none;height: 0px;padding: 0px;margin: 0px;}.stacks_in_2202245mail{padding: 0;}.stacks_in_2202245fieldset{	border: none;	outline: none;	float : none !important;	text-align: left !important;}.stacks_in_2202245formail{}.stacks_in_2202245fieldset{	padding: 0 20px 0 3px;}#stacks_in_2202245 label{display: block;margin: 10px 0 0 0;padding: 0 0 5px 0;line-height: 1.1em;}#stacks_in_2202245 label *{display: inline;}#stacks_in_2202245 .stacks_in_2202245input{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_2202245 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_2202245sendmail{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_2202245response{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_2202245loader{float: left;width: 35px;height: 35px;padding: 0 15px 30px 0;}.stacks_in_2202245autoreplay{visibility: hidden;height: 0px;display: none;}#stacks_in_2202245 textarea{	color: #555555 !important;}/* End Contact Form stack CSS code */
#stacks_in_2202245 {
	padding: 20px 0px 0px 0px;
}
/* Start dooMax stack CSS code */#stacks_in_2202253, .stacks_in_2202253MaxWidthContainer{	-webkit-box-sizing: border-box;	-moz-box-sizing: border-box;	box-sizing: border-box;}     .stacks_in_2202253MaxWidthContainer{	    max-width: 960px;	}    .stacks_in_2202253MaxWidthContainer{		margin: 0 auto 0 auto;	}@media only screen and (max-width: 1024px) {	 	    .stacks_in_2202253MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2202253MaxWidthContainer{			margin: 0 auto 0 auto;		}		}@media only screen and (max-width: 480px) {	 	    .stacks_in_2202253MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2202253MaxWidthContainer{			margin: 0 auto 0 auto;		}		}/* End dooMax stack CSS code */
#stacks_in_2202253 {
	padding: 60px 0px 60px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202254Calligrapher{			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_2202254Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202254Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202254Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202254Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202254Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202254Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202254Calligrapher h6, .stacks_in_2202254Calligrapher h5, .stacks_in_2202254Calligrapher h4, .stacks_in_2202254Calligrapher h3, .stacks_in_2202254Calligrapher h2, .stacks_in_2202254Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202254Calligrapher, .stacks_in_2202254Calligrapher h1, .stacks_in_2202254Calligrapher h2, .stacks_in_2202254Calligrapher h3, .stacks_in_2202254Calligrapher h4, .stacks_in_2202254Calligrapher h5, .stacks_in_2202254Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202254targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202254Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202254Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202254Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202254Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */