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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes loader-10-stacks_in_2203233 {
  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_2202794label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_2202794iPhoneContent, .stacks_in_2202794iPadContent, .stacks_in_2202794AndroidContent, .stacks_in_2202794BlackberryContent, .stacks_in_2202794DesktopContent {	display: none;}.stacks_in_2202794label{	display: none;}/* End Agent-X stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202796Calligrapher{			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_2202796Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202796Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202796Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202796Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202796Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202796Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202796Calligrapher h6, .stacks_in_2202796Calligrapher h5, .stacks_in_2202796Calligrapher h4, .stacks_in_2202796Calligrapher h3, .stacks_in_2202796Calligrapher h2, .stacks_in_2202796Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202796Calligrapher, .stacks_in_2202796Calligrapher h1, .stacks_in_2202796Calligrapher h2, .stacks_in_2202796Calligrapher h3, .stacks_in_2202796Calligrapher h4, .stacks_in_2202796Calligrapher h5, .stacks_in_2202796Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202796targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202796Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202796Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202796Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202796Calligrapher 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_2202802Calligrapher{			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_2202802Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202802Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202802Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202802Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202802Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202802Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202802Calligrapher h6, .stacks_in_2202802Calligrapher h5, .stacks_in_2202802Calligrapher h4, .stacks_in_2202802Calligrapher h3, .stacks_in_2202802Calligrapher h2, .stacks_in_2202802Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202802Calligrapher, .stacks_in_2202802Calligrapher h1, .stacks_in_2202802Calligrapher h2, .stacks_in_2202802Calligrapher h3, .stacks_in_2202802Calligrapher h4, .stacks_in_2202802Calligrapher h5, .stacks_in_2202802Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202802targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202802Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202802Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202802Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202802Calligrapher 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_2202808Calligrapher{			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_2202808Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202808Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202808Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202808Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202808Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202808Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202808Calligrapher h6, .stacks_in_2202808Calligrapher h5, .stacks_in_2202808Calligrapher h4, .stacks_in_2202808Calligrapher h3, .stacks_in_2202808Calligrapher h2, .stacks_in_2202808Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202808Calligrapher, .stacks_in_2202808Calligrapher h1, .stacks_in_2202808Calligrapher h2, .stacks_in_2202808Calligrapher h3, .stacks_in_2202808Calligrapher h4, .stacks_in_2202808Calligrapher h5, .stacks_in_2202808Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202808targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202808Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202808Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202808Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202808Calligrapher 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_2203252 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2203252 {
	padding-bottom: 5%;
	padding-top: 2%;
	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_2203252 {
		display: none;
	}
}












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

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








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












#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_2202607 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

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








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












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

#listerWrapperstacks_in_2202619 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202625 {
	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_2202625 {
		display: none;
	}
}












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

#listerWrapperstacks_in_2202631 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202637 {
	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_2202637 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202638Calligrapher{			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_2202638Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202638Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202638Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202638Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202638Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202638Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202638Calligrapher h6, .stacks_in_2202638Calligrapher h5, .stacks_in_2202638Calligrapher h4, .stacks_in_2202638Calligrapher h3, .stacks_in_2202638Calligrapher h2, .stacks_in_2202638Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202638Calligrapher, .stacks_in_2202638Calligrapher h1, .stacks_in_2202638Calligrapher h2, .stacks_in_2202638Calligrapher h3, .stacks_in_2202638Calligrapher h4, .stacks_in_2202638Calligrapher h5, .stacks_in_2202638Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202638targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202638Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202638Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202638Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202638Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202639 {
	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_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;
}
/* 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_2202814label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_2202814iPhoneContent, .stacks_in_2202814iPadContent, .stacks_in_2202814AndroidContent, .stacks_in_2202814BlackberryContent, .stacks_in_2202814DesktopContent {	display: none;}.stacks_in_2202814label{	display: none;}/* End Agent-X stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202818Calligrapher{			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_2202818Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202818Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202818Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202818Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202818Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202818Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202818Calligrapher h6, .stacks_in_2202818Calligrapher h5, .stacks_in_2202818Calligrapher h4, .stacks_in_2202818Calligrapher h3, .stacks_in_2202818Calligrapher h2, .stacks_in_2202818Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202818Calligrapher, .stacks_in_2202818Calligrapher h1, .stacks_in_2202818Calligrapher h2, .stacks_in_2202818Calligrapher h3, .stacks_in_2202818Calligrapher h4, .stacks_in_2202818Calligrapher h5, .stacks_in_2202818Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202818Calligrapher, .stacks_in_2202818Calligrapher h1, .stacks_in_2202818Calligrapher h2, .stacks_in_2202818Calligrapher h3, .stacks_in_2202818Calligrapher h4, .stacks_in_2202818Calligrapher h5, .stacks_in_2202818Calligrapher h6{	text-shadow: 1px 1px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202818targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202818Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202818Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202818Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202818Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202820 {
	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_2202822.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202822.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202822.CR6_L,
.stacks_in_2202822.CR6_L1 {
	float: left;
}
.stacks_in_2202822.CR6_R,
.stacks_in_2202822.CR6_R1 {
	float: left;
}
.stacks_in_2202822.CR6 {
	width: 13%;
}
.stacks_in_2202822.CR6_S {
	width: 13.2%;
}
.stacks_in_2202822.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202822.CR6_LF,
.stacks_in_2202822.CR6_LL,
.stacks_in_2202822.CR6_RF,
.stacks_in_2202822.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202822.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202822.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202822.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202822.CR6,
	.stacks_in_2202822.CR6_S {
		width: 47%;
	}
	.stacks_in_2202822.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202822.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202822.CR6.CR6_Goff,
	.stacks_in_2202822.CR6_S.CR6_Goff,
	.stacks_in_2202822.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202822.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202822.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202822.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202822.CR6,
	.stacks_in_2202822.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202822 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202824Calligrapher{			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_2202824Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202824Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202824Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202824Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202824Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202824Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202824Calligrapher h6, .stacks_in_2202824Calligrapher h5, .stacks_in_2202824Calligrapher h4, .stacks_in_2202824Calligrapher h3, .stacks_in_2202824Calligrapher h2, .stacks_in_2202824Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202824Calligrapher, .stacks_in_2202824Calligrapher h1, .stacks_in_2202824Calligrapher h2, .stacks_in_2202824Calligrapher h3, .stacks_in_2202824Calligrapher h4, .stacks_in_2202824Calligrapher h5, .stacks_in_2202824Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202824Calligrapher, .stacks_in_2202824Calligrapher h1, .stacks_in_2202824Calligrapher h2, .stacks_in_2202824Calligrapher h3, .stacks_in_2202824Calligrapher h4, .stacks_in_2202824Calligrapher h5, .stacks_in_2202824Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202824targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202824Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202824Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202824Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202824Calligrapher 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_2202828Calligrapher{			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_2202828Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202828Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202828Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202828Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202828Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202828Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202828Calligrapher h6, .stacks_in_2202828Calligrapher h5, .stacks_in_2202828Calligrapher h4, .stacks_in_2202828Calligrapher h3, .stacks_in_2202828Calligrapher h2, .stacks_in_2202828Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202828Calligrapher, .stacks_in_2202828Calligrapher h1, .stacks_in_2202828Calligrapher h2, .stacks_in_2202828Calligrapher h3, .stacks_in_2202828Calligrapher h4, .stacks_in_2202828Calligrapher h5, .stacks_in_2202828Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202828Calligrapher, .stacks_in_2202828Calligrapher h1, .stacks_in_2202828Calligrapher h2, .stacks_in_2202828Calligrapher h3, .stacks_in_2202828Calligrapher h4, .stacks_in_2202828Calligrapher h5, .stacks_in_2202828Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202828targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202828Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202828Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202828Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202828Calligrapher 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_2202833Calligrapher{			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_2202833Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202833Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202833Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202833Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202833Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202833Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202833Calligrapher h6, .stacks_in_2202833Calligrapher h5, .stacks_in_2202833Calligrapher h4, .stacks_in_2202833Calligrapher h3, .stacks_in_2202833Calligrapher h2, .stacks_in_2202833Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202833Calligrapher, .stacks_in_2202833Calligrapher h1, .stacks_in_2202833Calligrapher h2, .stacks_in_2202833Calligrapher h3, .stacks_in_2202833Calligrapher h4, .stacks_in_2202833Calligrapher h5, .stacks_in_2202833Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202833Calligrapher, .stacks_in_2202833Calligrapher h1, .stacks_in_2202833Calligrapher h2, .stacks_in_2202833Calligrapher h3, .stacks_in_2202833Calligrapher h4, .stacks_in_2202833Calligrapher h5, .stacks_in_2202833Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202833targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202833Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202833Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202833Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202833Calligrapher 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_2202837Calligrapher{			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_2202837Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202837Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202837Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202837Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202837Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202837Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202837Calligrapher h6, .stacks_in_2202837Calligrapher h5, .stacks_in_2202837Calligrapher h4, .stacks_in_2202837Calligrapher h3, .stacks_in_2202837Calligrapher h2, .stacks_in_2202837Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202837Calligrapher, .stacks_in_2202837Calligrapher h1, .stacks_in_2202837Calligrapher h2, .stacks_in_2202837Calligrapher h3, .stacks_in_2202837Calligrapher h4, .stacks_in_2202837Calligrapher h5, .stacks_in_2202837Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202837Calligrapher, .stacks_in_2202837Calligrapher h1, .stacks_in_2202837Calligrapher h2, .stacks_in_2202837Calligrapher h3, .stacks_in_2202837Calligrapher h4, .stacks_in_2202837Calligrapher h5, .stacks_in_2202837Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202837targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202837Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202837Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202837Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202837Calligrapher 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_2202841Calligrapher{			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_2202841Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202841Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202841Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202841Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202841Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202841Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202841Calligrapher h6, .stacks_in_2202841Calligrapher h5, .stacks_in_2202841Calligrapher h4, .stacks_in_2202841Calligrapher h3, .stacks_in_2202841Calligrapher h2, .stacks_in_2202841Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202841Calligrapher, .stacks_in_2202841Calligrapher h1, .stacks_in_2202841Calligrapher h2, .stacks_in_2202841Calligrapher h3, .stacks_in_2202841Calligrapher h4, .stacks_in_2202841Calligrapher h5, .stacks_in_2202841Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202841Calligrapher, .stacks_in_2202841Calligrapher h1, .stacks_in_2202841Calligrapher h2, .stacks_in_2202841Calligrapher h3, .stacks_in_2202841Calligrapher h4, .stacks_in_2202841Calligrapher h5, .stacks_in_2202841Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202841targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202841Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202841Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202841Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202841Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202841 {
	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_2202845.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202845.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202869.CR6_L,
.stacks_in_2202869.CR6_L1 {
	float: left;
}
.stacks_in_2202869.CR6_R,
.stacks_in_2202869.CR6_R1 {
	float: left;
}
.stacks_in_2202869.CR6 {
	width: 13%;
}
.stacks_in_2202869.CR6_S {
	width: 13.2%;
}
.stacks_in_2202869.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202869.CR6_LF,
.stacks_in_2202869.CR6_LL,
.stacks_in_2202869.CR6_RF,
.stacks_in_2202869.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202869.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202869.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202869.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202869.CR6,
	.stacks_in_2202869.CR6_S {
		width: 47%;
	}
	.stacks_in_2202869.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202869.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202869.CR6.CR6_Goff,
	.stacks_in_2202869.CR6_S.CR6_Goff,
	.stacks_in_2202869.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202869.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202869.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202869.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202869.CR6,
	.stacks_in_2202869.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202869 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202871Calligrapher{			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_2202871Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202871Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202871Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202871Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202871Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202871Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202871Calligrapher h6, .stacks_in_2202871Calligrapher h5, .stacks_in_2202871Calligrapher h4, .stacks_in_2202871Calligrapher h3, .stacks_in_2202871Calligrapher h2, .stacks_in_2202871Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202871Calligrapher, .stacks_in_2202871Calligrapher h1, .stacks_in_2202871Calligrapher h2, .stacks_in_2202871Calligrapher h3, .stacks_in_2202871Calligrapher h4, .stacks_in_2202871Calligrapher h5, .stacks_in_2202871Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202871Calligrapher, .stacks_in_2202871Calligrapher h1, .stacks_in_2202871Calligrapher h2, .stacks_in_2202871Calligrapher h3, .stacks_in_2202871Calligrapher h4, .stacks_in_2202871Calligrapher h5, .stacks_in_2202871Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202871targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202871Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202871Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202871Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202871Calligrapher 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_2202875Calligrapher{			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_2202875Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202875Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202875Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202875Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202875Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202875Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202875Calligrapher h6, .stacks_in_2202875Calligrapher h5, .stacks_in_2202875Calligrapher h4, .stacks_in_2202875Calligrapher h3, .stacks_in_2202875Calligrapher h2, .stacks_in_2202875Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202875Calligrapher, .stacks_in_2202875Calligrapher h1, .stacks_in_2202875Calligrapher h2, .stacks_in_2202875Calligrapher h3, .stacks_in_2202875Calligrapher h4, .stacks_in_2202875Calligrapher h5, .stacks_in_2202875Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202875Calligrapher, .stacks_in_2202875Calligrapher h1, .stacks_in_2202875Calligrapher h2, .stacks_in_2202875Calligrapher h3, .stacks_in_2202875Calligrapher h4, .stacks_in_2202875Calligrapher h5, .stacks_in_2202875Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202875targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202875Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202875Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202875Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202875Calligrapher 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_2202880Calligrapher{			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_2202880Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202880Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202880Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202880Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202880Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202880Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202880Calligrapher h6, .stacks_in_2202880Calligrapher h5, .stacks_in_2202880Calligrapher h4, .stacks_in_2202880Calligrapher h3, .stacks_in_2202880Calligrapher h2, .stacks_in_2202880Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202880Calligrapher, .stacks_in_2202880Calligrapher h1, .stacks_in_2202880Calligrapher h2, .stacks_in_2202880Calligrapher h3, .stacks_in_2202880Calligrapher h4, .stacks_in_2202880Calligrapher h5, .stacks_in_2202880Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202880Calligrapher, .stacks_in_2202880Calligrapher h1, .stacks_in_2202880Calligrapher h2, .stacks_in_2202880Calligrapher h3, .stacks_in_2202880Calligrapher h4, .stacks_in_2202880Calligrapher h5, .stacks_in_2202880Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202880targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202880Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202880Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202880Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202880Calligrapher 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_2202884Calligrapher{			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_2202884Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202884Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202884Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202884Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202884Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202884Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202884Calligrapher h6, .stacks_in_2202884Calligrapher h5, .stacks_in_2202884Calligrapher h4, .stacks_in_2202884Calligrapher h3, .stacks_in_2202884Calligrapher h2, .stacks_in_2202884Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202884Calligrapher, .stacks_in_2202884Calligrapher h1, .stacks_in_2202884Calligrapher h2, .stacks_in_2202884Calligrapher h3, .stacks_in_2202884Calligrapher h4, .stacks_in_2202884Calligrapher h5, .stacks_in_2202884Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202884Calligrapher, .stacks_in_2202884Calligrapher h1, .stacks_in_2202884Calligrapher h2, .stacks_in_2202884Calligrapher h3, .stacks_in_2202884Calligrapher h4, .stacks_in_2202884Calligrapher h5, .stacks_in_2202884Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202884targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202884Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202884Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202884Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202884Calligrapher 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_2202888Calligrapher{			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_2202888Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202888Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202888Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202888Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202888Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202888Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202888Calligrapher h6, .stacks_in_2202888Calligrapher h5, .stacks_in_2202888Calligrapher h4, .stacks_in_2202888Calligrapher h3, .stacks_in_2202888Calligrapher h2, .stacks_in_2202888Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202888Calligrapher, .stacks_in_2202888Calligrapher h1, .stacks_in_2202888Calligrapher h2, .stacks_in_2202888Calligrapher h3, .stacks_in_2202888Calligrapher h4, .stacks_in_2202888Calligrapher h5, .stacks_in_2202888Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202888Calligrapher, .stacks_in_2202888Calligrapher h1, .stacks_in_2202888Calligrapher h2, .stacks_in_2202888Calligrapher h3, .stacks_in_2202888Calligrapher h4, .stacks_in_2202888Calligrapher h5, .stacks_in_2202888Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202888targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202888Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202888Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202888Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202888Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202888 {
	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_2202892.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202892.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202913.CR6_L,
.stacks_in_2202913.CR6_L1 {
	float: left;
}
.stacks_in_2202913.CR6_R,
.stacks_in_2202913.CR6_R1 {
	float: left;
}
.stacks_in_2202913.CR6 {
	width: 13%;
}
.stacks_in_2202913.CR6_S {
	width: 13.2%;
}
.stacks_in_2202913.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202913.CR6_LF,
.stacks_in_2202913.CR6_LL,
.stacks_in_2202913.CR6_RF,
.stacks_in_2202913.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202913.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202913.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202913.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202913.CR6,
	.stacks_in_2202913.CR6_S {
		width: 47%;
	}
	.stacks_in_2202913.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202913.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202913.CR6.CR6_Goff,
	.stacks_in_2202913.CR6_S.CR6_Goff,
	.stacks_in_2202913.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202913.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202913.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202913.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202913.CR6,
	.stacks_in_2202913.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202913 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202915Calligrapher{			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_2202915Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202915Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202915Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202915Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202915Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202915Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202915Calligrapher h6, .stacks_in_2202915Calligrapher h5, .stacks_in_2202915Calligrapher h4, .stacks_in_2202915Calligrapher h3, .stacks_in_2202915Calligrapher h2, .stacks_in_2202915Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202915Calligrapher, .stacks_in_2202915Calligrapher h1, .stacks_in_2202915Calligrapher h2, .stacks_in_2202915Calligrapher h3, .stacks_in_2202915Calligrapher h4, .stacks_in_2202915Calligrapher h5, .stacks_in_2202915Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202915Calligrapher, .stacks_in_2202915Calligrapher h1, .stacks_in_2202915Calligrapher h2, .stacks_in_2202915Calligrapher h3, .stacks_in_2202915Calligrapher h4, .stacks_in_2202915Calligrapher h5, .stacks_in_2202915Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202915targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202915Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202915Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202915Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202915Calligrapher 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_2202919Calligrapher{			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_2202919Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202919Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202919Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202919Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202919Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202919Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202919Calligrapher h6, .stacks_in_2202919Calligrapher h5, .stacks_in_2202919Calligrapher h4, .stacks_in_2202919Calligrapher h3, .stacks_in_2202919Calligrapher h2, .stacks_in_2202919Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202919Calligrapher, .stacks_in_2202919Calligrapher h1, .stacks_in_2202919Calligrapher h2, .stacks_in_2202919Calligrapher h3, .stacks_in_2202919Calligrapher h4, .stacks_in_2202919Calligrapher h5, .stacks_in_2202919Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202919Calligrapher, .stacks_in_2202919Calligrapher h1, .stacks_in_2202919Calligrapher h2, .stacks_in_2202919Calligrapher h3, .stacks_in_2202919Calligrapher h4, .stacks_in_2202919Calligrapher h5, .stacks_in_2202919Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202919targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202919Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202919Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202919Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202919Calligrapher 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_2202924Calligrapher{			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_2202924Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202924Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202924Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202924Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202924Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202924Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202924Calligrapher h6, .stacks_in_2202924Calligrapher h5, .stacks_in_2202924Calligrapher h4, .stacks_in_2202924Calligrapher h3, .stacks_in_2202924Calligrapher h2, .stacks_in_2202924Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202924Calligrapher, .stacks_in_2202924Calligrapher h1, .stacks_in_2202924Calligrapher h2, .stacks_in_2202924Calligrapher h3, .stacks_in_2202924Calligrapher h4, .stacks_in_2202924Calligrapher h5, .stacks_in_2202924Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202924Calligrapher, .stacks_in_2202924Calligrapher h1, .stacks_in_2202924Calligrapher h2, .stacks_in_2202924Calligrapher h3, .stacks_in_2202924Calligrapher h4, .stacks_in_2202924Calligrapher h5, .stacks_in_2202924Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202924targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202924Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202924Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202924Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202924Calligrapher 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_2202928Calligrapher{			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_2202928Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202928Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202928Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202928Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202928Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202928Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202928Calligrapher h6, .stacks_in_2202928Calligrapher h5, .stacks_in_2202928Calligrapher h4, .stacks_in_2202928Calligrapher h3, .stacks_in_2202928Calligrapher h2, .stacks_in_2202928Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202928Calligrapher, .stacks_in_2202928Calligrapher h1, .stacks_in_2202928Calligrapher h2, .stacks_in_2202928Calligrapher h3, .stacks_in_2202928Calligrapher h4, .stacks_in_2202928Calligrapher h5, .stacks_in_2202928Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202928Calligrapher, .stacks_in_2202928Calligrapher h1, .stacks_in_2202928Calligrapher h2, .stacks_in_2202928Calligrapher h3, .stacks_in_2202928Calligrapher h4, .stacks_in_2202928Calligrapher h5, .stacks_in_2202928Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202928targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202928Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202928Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202928Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202928Calligrapher 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_2202932Calligrapher{			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_2202932Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202932Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202932Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202932Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202932Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202932Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202932Calligrapher h6, .stacks_in_2202932Calligrapher h5, .stacks_in_2202932Calligrapher h4, .stacks_in_2202932Calligrapher h3, .stacks_in_2202932Calligrapher h2, .stacks_in_2202932Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202932Calligrapher, .stacks_in_2202932Calligrapher h1, .stacks_in_2202932Calligrapher h2, .stacks_in_2202932Calligrapher h3, .stacks_in_2202932Calligrapher h4, .stacks_in_2202932Calligrapher h5, .stacks_in_2202932Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202932Calligrapher, .stacks_in_2202932Calligrapher h1, .stacks_in_2202932Calligrapher h2, .stacks_in_2202932Calligrapher h3, .stacks_in_2202932Calligrapher h4, .stacks_in_2202932Calligrapher h5, .stacks_in_2202932Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202932targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202932Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202932Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202932Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202932Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202932 {
	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_2202936.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202936.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202961.CR6_L,
.stacks_in_2202961.CR6_L1 {
	float: left;
}
.stacks_in_2202961.CR6_R,
.stacks_in_2202961.CR6_R1 {
	float: left;
}
.stacks_in_2202961.CR6 {
	width: 13%;
}
.stacks_in_2202961.CR6_S {
	width: 13.2%;
}
.stacks_in_2202961.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202961.CR6_LF,
.stacks_in_2202961.CR6_LL,
.stacks_in_2202961.CR6_RF,
.stacks_in_2202961.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202961.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202961.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202961.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202961.CR6,
	.stacks_in_2202961.CR6_S {
		width: 47%;
	}
	.stacks_in_2202961.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202961.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202961.CR6.CR6_Goff,
	.stacks_in_2202961.CR6_S.CR6_Goff,
	.stacks_in_2202961.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202961.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202961.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202961.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202961.CR6,
	.stacks_in_2202961.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202961 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202963Calligrapher{			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_2202963Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202963Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202963Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202963Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202963Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202963Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202963Calligrapher h6, .stacks_in_2202963Calligrapher h5, .stacks_in_2202963Calligrapher h4, .stacks_in_2202963Calligrapher h3, .stacks_in_2202963Calligrapher h2, .stacks_in_2202963Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202963Calligrapher, .stacks_in_2202963Calligrapher h1, .stacks_in_2202963Calligrapher h2, .stacks_in_2202963Calligrapher h3, .stacks_in_2202963Calligrapher h4, .stacks_in_2202963Calligrapher h5, .stacks_in_2202963Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202963Calligrapher, .stacks_in_2202963Calligrapher h1, .stacks_in_2202963Calligrapher h2, .stacks_in_2202963Calligrapher h3, .stacks_in_2202963Calligrapher h4, .stacks_in_2202963Calligrapher h5, .stacks_in_2202963Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202963targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202963Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202963Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202963Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202963Calligrapher 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_2202967Calligrapher{			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_2202967Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202967Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202967Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202967Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202967Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202967Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202967Calligrapher h6, .stacks_in_2202967Calligrapher h5, .stacks_in_2202967Calligrapher h4, .stacks_in_2202967Calligrapher h3, .stacks_in_2202967Calligrapher h2, .stacks_in_2202967Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202967Calligrapher, .stacks_in_2202967Calligrapher h1, .stacks_in_2202967Calligrapher h2, .stacks_in_2202967Calligrapher h3, .stacks_in_2202967Calligrapher h4, .stacks_in_2202967Calligrapher h5, .stacks_in_2202967Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202967Calligrapher, .stacks_in_2202967Calligrapher h1, .stacks_in_2202967Calligrapher h2, .stacks_in_2202967Calligrapher h3, .stacks_in_2202967Calligrapher h4, .stacks_in_2202967Calligrapher h5, .stacks_in_2202967Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202967targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202967Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202967Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202967Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202967Calligrapher 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_2202972Calligrapher{			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_2202972Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202972Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202972Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202972Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202972Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202972Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202972Calligrapher h6, .stacks_in_2202972Calligrapher h5, .stacks_in_2202972Calligrapher h4, .stacks_in_2202972Calligrapher h3, .stacks_in_2202972Calligrapher h2, .stacks_in_2202972Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202972Calligrapher, .stacks_in_2202972Calligrapher h1, .stacks_in_2202972Calligrapher h2, .stacks_in_2202972Calligrapher h3, .stacks_in_2202972Calligrapher h4, .stacks_in_2202972Calligrapher h5, .stacks_in_2202972Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202972Calligrapher, .stacks_in_2202972Calligrapher h1, .stacks_in_2202972Calligrapher h2, .stacks_in_2202972Calligrapher h3, .stacks_in_2202972Calligrapher h4, .stacks_in_2202972Calligrapher h5, .stacks_in_2202972Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202972targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202972Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202972Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202972Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202972Calligrapher 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_2202976Calligrapher{			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_2202976Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202976Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202976Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202976Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202976Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202976Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202976Calligrapher h6, .stacks_in_2202976Calligrapher h5, .stacks_in_2202976Calligrapher h4, .stacks_in_2202976Calligrapher h3, .stacks_in_2202976Calligrapher h2, .stacks_in_2202976Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202976Calligrapher, .stacks_in_2202976Calligrapher h1, .stacks_in_2202976Calligrapher h2, .stacks_in_2202976Calligrapher h3, .stacks_in_2202976Calligrapher h4, .stacks_in_2202976Calligrapher h5, .stacks_in_2202976Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202976Calligrapher, .stacks_in_2202976Calligrapher h1, .stacks_in_2202976Calligrapher h2, .stacks_in_2202976Calligrapher h3, .stacks_in_2202976Calligrapher h4, .stacks_in_2202976Calligrapher h5, .stacks_in_2202976Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202976targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202976Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202976Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202976Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202976Calligrapher 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_2202980Calligrapher{			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_2202980Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202980Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202980Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202980Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202980Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202980Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202980Calligrapher h6, .stacks_in_2202980Calligrapher h5, .stacks_in_2202980Calligrapher h4, .stacks_in_2202980Calligrapher h3, .stacks_in_2202980Calligrapher h2, .stacks_in_2202980Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202980Calligrapher, .stacks_in_2202980Calligrapher h1, .stacks_in_2202980Calligrapher h2, .stacks_in_2202980Calligrapher h3, .stacks_in_2202980Calligrapher h4, .stacks_in_2202980Calligrapher h5, .stacks_in_2202980Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202980Calligrapher, .stacks_in_2202980Calligrapher h1, .stacks_in_2202980Calligrapher h2, .stacks_in_2202980Calligrapher h3, .stacks_in_2202980Calligrapher h4, .stacks_in_2202980Calligrapher h5, .stacks_in_2202980Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202980targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202980Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202980Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202980Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202980Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202980 {
	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_2202984.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202984.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#usefulStackstacks_in_2203259 {
	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_2203259 {
		display: none;
	}
}













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

/* CSS code for the RETURNING IN 2023 button */

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

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

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





















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






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

/* End of CSS code for the RETURNING IN 2023 button */











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