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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#usefulStackstacks_in_2202455 {
	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_2202455 {
		display: none;
	}
}












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

#usefulStackstacks_in_2202475 {
	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_2202475 {
		display: none;
	}
}












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

#usefulStackstacks_in_2202489 {
	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_2202489 {
		display: none;
	}
}












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

#usefulStackstacks_in_2202505 {
	padding-bottom: 0%;
	padding-top: 3%;
	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_2202505 {
		display: none;
	}
}












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

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



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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_222216.CR6_L,
.stacks_in_222216.CR6_L1 {
	float: left;
}
.stacks_in_222216.CR6_R,
.stacks_in_222216.CR6_R1 {
	float: left;
}
.stacks_in_222216.CR6 {
	width: 15%;
}
.stacks_in_222216.CR6_S {
	width: 15.2%;
}
.stacks_in_222216.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_222216.CR6_LF,
.stacks_in_222216.CR6_LL,
.stacks_in_222216.CR6_RF,
.stacks_in_222216.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_222216.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_222216.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_222216.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_222216.CR6,
	.stacks_in_222216.CR6_S {
		width: 49%;
	}
	.stacks_in_222216.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_222216.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_222216.CR6.CR6_Goff,
	.stacks_in_222216.CR6_S.CR6_Goff,
	.stacks_in_222216.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_222216.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_222216.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_222216.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_222216.CR6,
	.stacks_in_222216.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_222218Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_222218Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222218Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222218Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222218Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222218Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222218Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222218Calligrapher h6, .stacks_in_222218Calligrapher h5, .stacks_in_222218Calligrapher h4, .stacks_in_222218Calligrapher h3, .stacks_in_222218Calligrapher h2, .stacks_in_222218Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_222218Calligrapher, .stacks_in_222218Calligrapher h1, .stacks_in_222218Calligrapher h2, .stacks_in_222218Calligrapher h3, .stacks_in_222218Calligrapher h4, .stacks_in_222218Calligrapher h5, .stacks_in_222218Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_222218targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_222218Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_222218Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_222218Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_222218Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Agent-X stack CSS code */.stacks_in_2202525label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_2202525iPhoneContent, .stacks_in_2202525iPadContent, .stacks_in_2202525AndroidContent, .stacks_in_2202525BlackberryContent, .stacks_in_2202525DesktopContent {	display: none;}.stacks_in_2202525label{	display: none;}/* End Agent-X stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202527Calligrapher{			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_2202527Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202527Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202527Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202527Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202527Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202527Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202527Calligrapher h6, .stacks_in_2202527Calligrapher h5, .stacks_in_2202527Calligrapher h4, .stacks_in_2202527Calligrapher h3, .stacks_in_2202527Calligrapher h2, .stacks_in_2202527Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202527Calligrapher, .stacks_in_2202527Calligrapher h1, .stacks_in_2202527Calligrapher h2, .stacks_in_2202527Calligrapher h3, .stacks_in_2202527Calligrapher h4, .stacks_in_2202527Calligrapher h5, .stacks_in_2202527Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202527targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202527Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202527Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202527Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202527Calligrapher 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_2202533Calligrapher{			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_2202533Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202533Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202533Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202533Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202533Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202533Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202533Calligrapher h6, .stacks_in_2202533Calligrapher h5, .stacks_in_2202533Calligrapher h4, .stacks_in_2202533Calligrapher h3, .stacks_in_2202533Calligrapher h2, .stacks_in_2202533Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202533Calligrapher, .stacks_in_2202533Calligrapher h1, .stacks_in_2202533Calligrapher h2, .stacks_in_2202533Calligrapher h3, .stacks_in_2202533Calligrapher h4, .stacks_in_2202533Calligrapher h5, .stacks_in_2202533Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202533targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202533Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202533Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202533Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202533Calligrapher 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_2202539Calligrapher{			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_2202539Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202539Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202539Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202539Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202539Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202539Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202539Calligrapher h6, .stacks_in_2202539Calligrapher h5, .stacks_in_2202539Calligrapher h4, .stacks_in_2202539Calligrapher h3, .stacks_in_2202539Calligrapher h2, .stacks_in_2202539Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202539Calligrapher, .stacks_in_2202539Calligrapher h1, .stacks_in_2202539Calligrapher h2, .stacks_in_2202539Calligrapher h3, .stacks_in_2202539Calligrapher h4, .stacks_in_2202539Calligrapher h5, .stacks_in_2202539Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202539targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202539Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202539Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202539Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202539Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooMax stack CSS code */#stacks_in_2201647, .stacks_in_2201647MaxWidthContainer{	-webkit-box-sizing: border-box;	-moz-box-sizing: border-box;	box-sizing: border-box;}     .stacks_in_2201647MaxWidthContainer{	    max-width: 960px;	}    .stacks_in_2201647MaxWidthContainer{		margin: 0 auto 0 auto;	}@media only screen and (max-width: 1024px) {	 	    .stacks_in_2201647MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2201647MaxWidthContainer{			margin: 0 auto 0 auto;		}		}@media only screen and (max-width: 480px) {	 	    .stacks_in_2201647MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2201647MaxWidthContainer{			margin: 0 auto 0 auto;		}		}/* End dooMax stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_222232Calligrapher{			font-size: 100% !important;			color: #666666 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_222232Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222232Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222232Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222232Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222232Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222232Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222232Calligrapher h6, .stacks_in_222232Calligrapher h5, .stacks_in_222232Calligrapher h4, .stacks_in_222232Calligrapher h3, .stacks_in_222232Calligrapher h2, .stacks_in_222232Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_222232Calligrapher, .stacks_in_222232Calligrapher h1, .stacks_in_222232Calligrapher h2, .stacks_in_222232Calligrapher h3, .stacks_in_222232Calligrapher h4, .stacks_in_222232Calligrapher h5, .stacks_in_222232Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_222232targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_222232Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_222232Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_222232Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_222232Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_222234 {
	padding: 20px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_2202949 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 380px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_2202949 {
	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_2202949 {
		display: none;
	}
}













#stacks_in_2202949 {
	padding: 0px 0px 60px 0px;
}
/* HoverLiftThing by RapidWeaver Central  */


#hoverliftthingstacks_in_2202950 {
   -webkit-box-sizing:border-box;
       -moz-box-sizing:border-box;
    		box-sizing:border-box;
}

#cardlinkstacks_in_2202950  a:link,
#cardlinkstacks_in_2202950  a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 30;	
}


#stacks_in_2202950 .hoverliftthing {
	background: rgba(255, 255, 255, 1.00);
	margin: 10px 15px 25px 15px;
	overflow: hidden;
	position: relative;
			
	-webkit-border-radius: none;
			border-radius: none;
	-webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
			box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
	-webkit-transition: box-shadow 0.3s ease;
			transition: box-shadow 0.3s ease;
	-webkit-font-smoothing: antialiased;
	 -moz-osx-font-smoothing: grayscale;
}


#stacks_in_2202950 .hoverliftthing:hover {
    -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2); 
    		box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);    	

}

#stacks_in_2202950 .hoverliftthing img {
	-webkit-border-radius: none !important;
			border-radius: none !important;

}


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

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








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












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

#usefulStackstacks_in_2202258 {
	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_2202258 {
		display: none;
	}
}












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

#listerWrapperstacks_in_2202280 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202287 {
	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_2202287 {
		display: none;
	}
}












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

#listerWrapperstacks_in_2202293 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202299 {
	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_2202299 {
		display: none;
	}
}












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

#listerWrapperstacks_in_2202308 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202314 {
	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_2202314 {
		display: none;
	}
}












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

#listerWrapperstacks_in_2202323 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202329 {
	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_2202329 {
		display: none;
	}
}












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

#listerWrapperstacks_in_2202338 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202345 {
	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_2202345 {
		display: none;
	}
}












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

#listerWrapperstacks_in_2202374 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202366 {
	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_2202366 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202367Calligrapher{			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_2202367Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202367Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202367Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202367Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202367Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202367Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202367Calligrapher h6, .stacks_in_2202367Calligrapher h5, .stacks_in_2202367Calligrapher h4, .stacks_in_2202367Calligrapher h3, .stacks_in_2202367Calligrapher h2, .stacks_in_2202367Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202367Calligrapher, .stacks_in_2202367Calligrapher h1, .stacks_in_2202367Calligrapher h2, .stacks_in_2202367Calligrapher h3, .stacks_in_2202367Calligrapher h4, .stacks_in_2202367Calligrapher h5, .stacks_in_2202367Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202367targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202367Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202367Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202367Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202367Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202368 {
	padding: 5px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202385Calligrapher{			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_2202385Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202385Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202385Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202385Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202385Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202385Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202385Calligrapher h6, .stacks_in_2202385Calligrapher h5, .stacks_in_2202385Calligrapher h4, .stacks_in_2202385Calligrapher h3, .stacks_in_2202385Calligrapher h2, .stacks_in_2202385Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202385Calligrapher, .stacks_in_2202385Calligrapher h1, .stacks_in_2202385Calligrapher h2, .stacks_in_2202385Calligrapher h3, .stacks_in_2202385Calligrapher h4, .stacks_in_2202385Calligrapher h5, .stacks_in_2202385Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202385targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202385Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202385Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202385Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202385Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202386 {
	padding: 20px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_226271Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_226271Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_226271Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_226271Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_226271Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_226271Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_226271Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_226271Calligrapher h6, .stacks_in_226271Calligrapher h5, .stacks_in_226271Calligrapher h4, .stacks_in_226271Calligrapher h3, .stacks_in_226271Calligrapher h2, .stacks_in_226271Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_226271Calligrapher, .stacks_in_226271Calligrapher h1, .stacks_in_226271Calligrapher h2, .stacks_in_226271Calligrapher h3, .stacks_in_226271Calligrapher h4, .stacks_in_226271Calligrapher h5, .stacks_in_226271Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_226271targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_226271Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_226271Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_226271Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_226271Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_226273 {
	padding: 30px 0px 60px 0px;
}
/* Start Agent-X stack CSS code */.stacks_in_2202545label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_2202545iPhoneContent, .stacks_in_2202545iPadContent, .stacks_in_2202545AndroidContent, .stacks_in_2202545BlackberryContent, .stacks_in_2202545DesktopContent {	display: none;}.stacks_in_2202545label{	display: none;}/* End Agent-X stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202549Calligrapher{			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_2202549Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202549Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202549Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202549Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202549Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202549Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202549Calligrapher h6, .stacks_in_2202549Calligrapher h5, .stacks_in_2202549Calligrapher h4, .stacks_in_2202549Calligrapher h3, .stacks_in_2202549Calligrapher h2, .stacks_in_2202549Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202549Calligrapher, .stacks_in_2202549Calligrapher h1, .stacks_in_2202549Calligrapher h2, .stacks_in_2202549Calligrapher h3, .stacks_in_2202549Calligrapher h4, .stacks_in_2202549Calligrapher h5, .stacks_in_2202549Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202549Calligrapher, .stacks_in_2202549Calligrapher h1, .stacks_in_2202549Calligrapher h2, .stacks_in_2202549Calligrapher h3, .stacks_in_2202549Calligrapher h4, .stacks_in_2202549Calligrapher h5, .stacks_in_2202549Calligrapher h6{	text-shadow: 1px 1px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202549targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202549Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202549Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202549Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202549Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202551 {
	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_2202553.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202553.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202553.CR6_L,
.stacks_in_2202553.CR6_L1 {
	float: left;
}
.stacks_in_2202553.CR6_R,
.stacks_in_2202553.CR6_R1 {
	float: left;
}
.stacks_in_2202553.CR6 {
	width: 13%;
}
.stacks_in_2202553.CR6_S {
	width: 13.2%;
}
.stacks_in_2202553.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202553.CR6_LF,
.stacks_in_2202553.CR6_LL,
.stacks_in_2202553.CR6_RF,
.stacks_in_2202553.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202553.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202553.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202553.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202553.CR6,
	.stacks_in_2202553.CR6_S {
		width: 47%;
	}
	.stacks_in_2202553.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202553.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202553.CR6.CR6_Goff,
	.stacks_in_2202553.CR6_S.CR6_Goff,
	.stacks_in_2202553.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202553.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202553.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202553.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202553.CR6,
	.stacks_in_2202553.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202553 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202555Calligrapher{			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_2202555Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202555Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202555Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202555Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202555Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202555Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202555Calligrapher h6, .stacks_in_2202555Calligrapher h5, .stacks_in_2202555Calligrapher h4, .stacks_in_2202555Calligrapher h3, .stacks_in_2202555Calligrapher h2, .stacks_in_2202555Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202555Calligrapher, .stacks_in_2202555Calligrapher h1, .stacks_in_2202555Calligrapher h2, .stacks_in_2202555Calligrapher h3, .stacks_in_2202555Calligrapher h4, .stacks_in_2202555Calligrapher h5, .stacks_in_2202555Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202555Calligrapher, .stacks_in_2202555Calligrapher h1, .stacks_in_2202555Calligrapher h2, .stacks_in_2202555Calligrapher h3, .stacks_in_2202555Calligrapher h4, .stacks_in_2202555Calligrapher h5, .stacks_in_2202555Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202555targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202555Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202555Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202555Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202555Calligrapher 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_2202559Calligrapher{			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_2202559Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202559Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202559Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202559Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202559Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202559Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202559Calligrapher h6, .stacks_in_2202559Calligrapher h5, .stacks_in_2202559Calligrapher h4, .stacks_in_2202559Calligrapher h3, .stacks_in_2202559Calligrapher h2, .stacks_in_2202559Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202559Calligrapher, .stacks_in_2202559Calligrapher h1, .stacks_in_2202559Calligrapher h2, .stacks_in_2202559Calligrapher h3, .stacks_in_2202559Calligrapher h4, .stacks_in_2202559Calligrapher h5, .stacks_in_2202559Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202559Calligrapher, .stacks_in_2202559Calligrapher h1, .stacks_in_2202559Calligrapher h2, .stacks_in_2202559Calligrapher h3, .stacks_in_2202559Calligrapher h4, .stacks_in_2202559Calligrapher h5, .stacks_in_2202559Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202559targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202559Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202559Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202559Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202559Calligrapher 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_2202564Calligrapher{			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_2202564Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202564Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202564Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202564Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202564Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202564Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202564Calligrapher h6, .stacks_in_2202564Calligrapher h5, .stacks_in_2202564Calligrapher h4, .stacks_in_2202564Calligrapher h3, .stacks_in_2202564Calligrapher h2, .stacks_in_2202564Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202564Calligrapher, .stacks_in_2202564Calligrapher h1, .stacks_in_2202564Calligrapher h2, .stacks_in_2202564Calligrapher h3, .stacks_in_2202564Calligrapher h4, .stacks_in_2202564Calligrapher h5, .stacks_in_2202564Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202564Calligrapher, .stacks_in_2202564Calligrapher h1, .stacks_in_2202564Calligrapher h2, .stacks_in_2202564Calligrapher h3, .stacks_in_2202564Calligrapher h4, .stacks_in_2202564Calligrapher h5, .stacks_in_2202564Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202564targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202564Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202564Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202564Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202564Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202568Calligrapher{			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_2202568Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202568Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202568Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202568Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202568Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202568Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202568Calligrapher h6, .stacks_in_2202568Calligrapher h5, .stacks_in_2202568Calligrapher h4, .stacks_in_2202568Calligrapher h3, .stacks_in_2202568Calligrapher h2, .stacks_in_2202568Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202568Calligrapher, .stacks_in_2202568Calligrapher h1, .stacks_in_2202568Calligrapher h2, .stacks_in_2202568Calligrapher h3, .stacks_in_2202568Calligrapher h4, .stacks_in_2202568Calligrapher h5, .stacks_in_2202568Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202568Calligrapher, .stacks_in_2202568Calligrapher h1, .stacks_in_2202568Calligrapher h2, .stacks_in_2202568Calligrapher h3, .stacks_in_2202568Calligrapher h4, .stacks_in_2202568Calligrapher h5, .stacks_in_2202568Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202568targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202568Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202568Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202568Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202568Calligrapher 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_2202572Calligrapher{			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_2202572Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202572Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202572Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202572Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202572Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202572Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202572Calligrapher h6, .stacks_in_2202572Calligrapher h5, .stacks_in_2202572Calligrapher h4, .stacks_in_2202572Calligrapher h3, .stacks_in_2202572Calligrapher h2, .stacks_in_2202572Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202572Calligrapher, .stacks_in_2202572Calligrapher h1, .stacks_in_2202572Calligrapher h2, .stacks_in_2202572Calligrapher h3, .stacks_in_2202572Calligrapher h4, .stacks_in_2202572Calligrapher h5, .stacks_in_2202572Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202572Calligrapher, .stacks_in_2202572Calligrapher h1, .stacks_in_2202572Calligrapher h2, .stacks_in_2202572Calligrapher h3, .stacks_in_2202572Calligrapher h4, .stacks_in_2202572Calligrapher h5, .stacks_in_2202572Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202572targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202572Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202572Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202572Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202572Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202572 {
	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_2202576.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202576.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202600.CR6_L,
.stacks_in_2202600.CR6_L1 {
	float: left;
}
.stacks_in_2202600.CR6_R,
.stacks_in_2202600.CR6_R1 {
	float: left;
}
.stacks_in_2202600.CR6 {
	width: 13%;
}
.stacks_in_2202600.CR6_S {
	width: 13.2%;
}
.stacks_in_2202600.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202600.CR6_LF,
.stacks_in_2202600.CR6_LL,
.stacks_in_2202600.CR6_RF,
.stacks_in_2202600.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202600.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202600.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202600.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202600.CR6,
	.stacks_in_2202600.CR6_S {
		width: 47%;
	}
	.stacks_in_2202600.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202600.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202600.CR6.CR6_Goff,
	.stacks_in_2202600.CR6_S.CR6_Goff,
	.stacks_in_2202600.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202600.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202600.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202600.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202600.CR6,
	.stacks_in_2202600.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202600 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202602Calligrapher{			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_2202602Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202602Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202602Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202602Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202602Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202602Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202602Calligrapher h6, .stacks_in_2202602Calligrapher h5, .stacks_in_2202602Calligrapher h4, .stacks_in_2202602Calligrapher h3, .stacks_in_2202602Calligrapher h2, .stacks_in_2202602Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202602Calligrapher, .stacks_in_2202602Calligrapher h1, .stacks_in_2202602Calligrapher h2, .stacks_in_2202602Calligrapher h3, .stacks_in_2202602Calligrapher h4, .stacks_in_2202602Calligrapher h5, .stacks_in_2202602Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202602Calligrapher, .stacks_in_2202602Calligrapher h1, .stacks_in_2202602Calligrapher h2, .stacks_in_2202602Calligrapher h3, .stacks_in_2202602Calligrapher h4, .stacks_in_2202602Calligrapher h5, .stacks_in_2202602Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202602targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202602Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202602Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202602Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202602Calligrapher 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_2202606Calligrapher{			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_2202606Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202606Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202606Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202606Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202606Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202606Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202606Calligrapher h6, .stacks_in_2202606Calligrapher h5, .stacks_in_2202606Calligrapher h4, .stacks_in_2202606Calligrapher h3, .stacks_in_2202606Calligrapher h2, .stacks_in_2202606Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202606Calligrapher, .stacks_in_2202606Calligrapher h1, .stacks_in_2202606Calligrapher h2, .stacks_in_2202606Calligrapher h3, .stacks_in_2202606Calligrapher h4, .stacks_in_2202606Calligrapher h5, .stacks_in_2202606Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202606Calligrapher, .stacks_in_2202606Calligrapher h1, .stacks_in_2202606Calligrapher h2, .stacks_in_2202606Calligrapher h3, .stacks_in_2202606Calligrapher h4, .stacks_in_2202606Calligrapher h5, .stacks_in_2202606Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202606targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202606Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202606Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202606Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202606Calligrapher 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_2202611Calligrapher{			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_2202611Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202611Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202611Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202611Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202611Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202611Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202611Calligrapher h6, .stacks_in_2202611Calligrapher h5, .stacks_in_2202611Calligrapher h4, .stacks_in_2202611Calligrapher h3, .stacks_in_2202611Calligrapher h2, .stacks_in_2202611Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202611Calligrapher, .stacks_in_2202611Calligrapher h1, .stacks_in_2202611Calligrapher h2, .stacks_in_2202611Calligrapher h3, .stacks_in_2202611Calligrapher h4, .stacks_in_2202611Calligrapher h5, .stacks_in_2202611Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202611Calligrapher, .stacks_in_2202611Calligrapher h1, .stacks_in_2202611Calligrapher h2, .stacks_in_2202611Calligrapher h3, .stacks_in_2202611Calligrapher h4, .stacks_in_2202611Calligrapher h5, .stacks_in_2202611Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202611targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202611Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202611Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202611Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202611Calligrapher 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_2202615Calligrapher{			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_2202615Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202615Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202615Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202615Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202615Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202615Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202615Calligrapher h6, .stacks_in_2202615Calligrapher h5, .stacks_in_2202615Calligrapher h4, .stacks_in_2202615Calligrapher h3, .stacks_in_2202615Calligrapher h2, .stacks_in_2202615Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202615Calligrapher, .stacks_in_2202615Calligrapher h1, .stacks_in_2202615Calligrapher h2, .stacks_in_2202615Calligrapher h3, .stacks_in_2202615Calligrapher h4, .stacks_in_2202615Calligrapher h5, .stacks_in_2202615Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202615Calligrapher, .stacks_in_2202615Calligrapher h1, .stacks_in_2202615Calligrapher h2, .stacks_in_2202615Calligrapher h3, .stacks_in_2202615Calligrapher h4, .stacks_in_2202615Calligrapher h5, .stacks_in_2202615Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202615targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202615Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202615Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202615Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202615Calligrapher 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_2202619Calligrapher{			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_2202619Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202619Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202619Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202619Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202619Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202619Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202619Calligrapher h6, .stacks_in_2202619Calligrapher h5, .stacks_in_2202619Calligrapher h4, .stacks_in_2202619Calligrapher h3, .stacks_in_2202619Calligrapher h2, .stacks_in_2202619Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202619Calligrapher, .stacks_in_2202619Calligrapher h1, .stacks_in_2202619Calligrapher h2, .stacks_in_2202619Calligrapher h3, .stacks_in_2202619Calligrapher h4, .stacks_in_2202619Calligrapher h5, .stacks_in_2202619Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202619Calligrapher, .stacks_in_2202619Calligrapher h1, .stacks_in_2202619Calligrapher h2, .stacks_in_2202619Calligrapher h3, .stacks_in_2202619Calligrapher h4, .stacks_in_2202619Calligrapher h5, .stacks_in_2202619Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202619targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202619Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202619Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202619Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202619Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202619 {
	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_2202623.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202623.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202623.CR6_L,
.stacks_in_2202623.CR6_L1 {
	float: left;
}
.stacks_in_2202623.CR6_R,
.stacks_in_2202623.CR6_R1 {
	float: left;
}
.stacks_in_2202623.CR6 {
	width: 15%;
}
.stacks_in_2202623.CR6_S {
	width: 15.2%;
}
.stacks_in_2202623.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_2202623.CR6_LF,
.stacks_in_2202623.CR6_LL,
.stacks_in_2202623.CR6_RF,
.stacks_in_2202623.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_2202623.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_2202623.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_2202623.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202623.CR6,
	.stacks_in_2202623.CR6_S {
		width: 49%;
	}
	.stacks_in_2202623.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2202623.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2202623.CR6.CR6_Goff,
	.stacks_in_2202623.CR6_S.CR6_Goff,
	.stacks_in_2202623.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202623.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202623.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202623.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202623.CR6,
	.stacks_in_2202623.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202625Calligrapher{			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_2202625Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202625Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202625Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202625Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202625Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202625Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202625Calligrapher h6, .stacks_in_2202625Calligrapher h5, .stacks_in_2202625Calligrapher h4, .stacks_in_2202625Calligrapher h3, .stacks_in_2202625Calligrapher h2, .stacks_in_2202625Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202625Calligrapher, .stacks_in_2202625Calligrapher h1, .stacks_in_2202625Calligrapher h2, .stacks_in_2202625Calligrapher h3, .stacks_in_2202625Calligrapher h4, .stacks_in_2202625Calligrapher h5, .stacks_in_2202625Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202625Calligrapher, .stacks_in_2202625Calligrapher h1, .stacks_in_2202625Calligrapher h2, .stacks_in_2202625Calligrapher h3, .stacks_in_2202625Calligrapher h4, .stacks_in_2202625Calligrapher h5, .stacks_in_2202625Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202625targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202625Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202625Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202625Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202625Calligrapher 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_2202630Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202630Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202630Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202630Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202630Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202630Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202630Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202630Calligrapher h6, .stacks_in_2202630Calligrapher h5, .stacks_in_2202630Calligrapher h4, .stacks_in_2202630Calligrapher h3, .stacks_in_2202630Calligrapher h2, .stacks_in_2202630Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202630Calligrapher, .stacks_in_2202630Calligrapher h1, .stacks_in_2202630Calligrapher h2, .stacks_in_2202630Calligrapher h3, .stacks_in_2202630Calligrapher h4, .stacks_in_2202630Calligrapher h5, .stacks_in_2202630Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202630Calligrapher, .stacks_in_2202630Calligrapher h1, .stacks_in_2202630Calligrapher h2, .stacks_in_2202630Calligrapher h3, .stacks_in_2202630Calligrapher h4, .stacks_in_2202630Calligrapher h5, .stacks_in_2202630Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202630targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202630Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202630Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202630Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202630Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#ncp-stacks_in_2202635 img{max-width:100%;height:auto; width:auto;}#ncp-stacks_in_2202635.s2 .c.s1_2 .c-pad,#ncp-stacks_in_2202635.s3 .c.s1_3 .c-pad,#ncp-stacks_in_2202635.s4 .c.s1_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_2202635.s3 .c.s2_3 .c-pad,#ncp-stacks_in_2202635.s4 .c.s2_4 .c-pad,#ncp-stacks_in_2202635.s4 .c.s3_4 .c-pad{padding:0 2px}#ncp-stacks_in_2202635.s2 .c.s2_2 .c-pad,#ncp-stacks_in_2202635.s3 .c.s3_3 .c-pad,#ncp-stacks_in_2202635.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}@media only screen and (max-width:600px){#ncp-stacks_in_2202635 .c{margin:1% 0;padding:4px 0;width:100%}#ncp-stacks_in_2202635 .c:first-child,#ncp-stacks_in_2202635.s4 .c.s1_4,#ncp-stacks_in_2202635.s4 .c.s2_4{padding:0 0 4px}#ncp-stacks_in_2202635 .c:last-child,#ncp-stacks_in_2202635.s4 .c.s3_4,#ncp-stacks_in_2202635.s4 .c.s4_4{padding:4px 0 0}#ncp-stacks_in_2202635.s2 .c-pad,#ncp-stacks_in_2202635.s3 .c-pad{padding:0 !important}#ncp-stacks_in_2202635.s4 .c{width:49.2%}#ncp-stacks_in_2202635.s4 .c.s1_4 .c-pad,#ncp-stacks_in_2202635.s4 .c.s3_4 .c-pad{padding:0 4px 0 0}#ncp-stacks_in_2202635.s4 .c.s2_4 .c-pad,#ncp-stacks_in_2202635.s4 .c.s4_4 .c-pad{padding:0 0 0 4px}}@media only screen and (max-width:300px){#ncp-stacks_in_2202635 .c .c-pad{padding:0 !important}#ncp-stacks_in_2202635.s4 .c{width:100%}}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202640Calligrapher{			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_2202640Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202640Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202640Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202640Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202640Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202640Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202640Calligrapher h6, .stacks_in_2202640Calligrapher h5, .stacks_in_2202640Calligrapher h4, .stacks_in_2202640Calligrapher h3, .stacks_in_2202640Calligrapher h2, .stacks_in_2202640Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202640Calligrapher, .stacks_in_2202640Calligrapher h1, .stacks_in_2202640Calligrapher h2, .stacks_in_2202640Calligrapher h3, .stacks_in_2202640Calligrapher h4, .stacks_in_2202640Calligrapher h5, .stacks_in_2202640Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202640Calligrapher, .stacks_in_2202640Calligrapher h1, .stacks_in_2202640Calligrapher h2, .stacks_in_2202640Calligrapher h3, .stacks_in_2202640Calligrapher h4, .stacks_in_2202640Calligrapher h5, .stacks_in_2202640Calligrapher h6{	text-shadow: 1px 1px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202640targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202640Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202640Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202640Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202640Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202642 {
	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_2202644.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202644.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202644.CR6_L,
.stacks_in_2202644.CR6_L1 {
	float: left;
}
.stacks_in_2202644.CR6_R,
.stacks_in_2202644.CR6_R1 {
	float: left;
}
.stacks_in_2202644.CR6 {
	width: 13%;
}
.stacks_in_2202644.CR6_S {
	width: 13.2%;
}
.stacks_in_2202644.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202644.CR6_LF,
.stacks_in_2202644.CR6_LL,
.stacks_in_2202644.CR6_RF,
.stacks_in_2202644.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202644.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202644.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202644.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202644.CR6,
	.stacks_in_2202644.CR6_S {
		width: 47%;
	}
	.stacks_in_2202644.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202644.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202644.CR6.CR6_Goff,
	.stacks_in_2202644.CR6_S.CR6_Goff,
	.stacks_in_2202644.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202644.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202644.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202644.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202644.CR6,
	.stacks_in_2202644.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202644 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202646Calligrapher{			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_2202646Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202646Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202646Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202646Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202646Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202646Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202646Calligrapher h6, .stacks_in_2202646Calligrapher h5, .stacks_in_2202646Calligrapher h4, .stacks_in_2202646Calligrapher h3, .stacks_in_2202646Calligrapher h2, .stacks_in_2202646Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202646Calligrapher, .stacks_in_2202646Calligrapher h1, .stacks_in_2202646Calligrapher h2, .stacks_in_2202646Calligrapher h3, .stacks_in_2202646Calligrapher h4, .stacks_in_2202646Calligrapher h5, .stacks_in_2202646Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202646Calligrapher, .stacks_in_2202646Calligrapher h1, .stacks_in_2202646Calligrapher h2, .stacks_in_2202646Calligrapher h3, .stacks_in_2202646Calligrapher h4, .stacks_in_2202646Calligrapher h5, .stacks_in_2202646Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202646targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202646Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202646Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202646Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202646Calligrapher 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_2202650Calligrapher{			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_2202650Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202650Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202650Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202650Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202650Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202650Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202650Calligrapher h6, .stacks_in_2202650Calligrapher h5, .stacks_in_2202650Calligrapher h4, .stacks_in_2202650Calligrapher h3, .stacks_in_2202650Calligrapher h2, .stacks_in_2202650Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202650Calligrapher, .stacks_in_2202650Calligrapher h1, .stacks_in_2202650Calligrapher h2, .stacks_in_2202650Calligrapher h3, .stacks_in_2202650Calligrapher h4, .stacks_in_2202650Calligrapher h5, .stacks_in_2202650Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202650Calligrapher, .stacks_in_2202650Calligrapher h1, .stacks_in_2202650Calligrapher h2, .stacks_in_2202650Calligrapher h3, .stacks_in_2202650Calligrapher h4, .stacks_in_2202650Calligrapher h5, .stacks_in_2202650Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202650targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202650Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202650Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202650Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202650Calligrapher 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_2202655Calligrapher{			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_2202655Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202655Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202655Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202655Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202655Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202655Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202655Calligrapher h6, .stacks_in_2202655Calligrapher h5, .stacks_in_2202655Calligrapher h4, .stacks_in_2202655Calligrapher h3, .stacks_in_2202655Calligrapher h2, .stacks_in_2202655Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202655Calligrapher, .stacks_in_2202655Calligrapher h1, .stacks_in_2202655Calligrapher h2, .stacks_in_2202655Calligrapher h3, .stacks_in_2202655Calligrapher h4, .stacks_in_2202655Calligrapher h5, .stacks_in_2202655Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202655Calligrapher, .stacks_in_2202655Calligrapher h1, .stacks_in_2202655Calligrapher h2, .stacks_in_2202655Calligrapher h3, .stacks_in_2202655Calligrapher h4, .stacks_in_2202655Calligrapher h5, .stacks_in_2202655Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202655targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202655Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202655Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202655Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202655Calligrapher 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_2202659Calligrapher{			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_2202659Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202659Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202659Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202659Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202659Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202659Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202659Calligrapher h6, .stacks_in_2202659Calligrapher h5, .stacks_in_2202659Calligrapher h4, .stacks_in_2202659Calligrapher h3, .stacks_in_2202659Calligrapher h2, .stacks_in_2202659Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202659Calligrapher, .stacks_in_2202659Calligrapher h1, .stacks_in_2202659Calligrapher h2, .stacks_in_2202659Calligrapher h3, .stacks_in_2202659Calligrapher h4, .stacks_in_2202659Calligrapher h5, .stacks_in_2202659Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202659Calligrapher, .stacks_in_2202659Calligrapher h1, .stacks_in_2202659Calligrapher h2, .stacks_in_2202659Calligrapher h3, .stacks_in_2202659Calligrapher h4, .stacks_in_2202659Calligrapher h5, .stacks_in_2202659Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202659targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202659Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202659Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202659Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202659Calligrapher 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_2202663Calligrapher{			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_2202663Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202663Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202663Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202663Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202663Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202663Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202663Calligrapher h6, .stacks_in_2202663Calligrapher h5, .stacks_in_2202663Calligrapher h4, .stacks_in_2202663Calligrapher h3, .stacks_in_2202663Calligrapher h2, .stacks_in_2202663Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202663Calligrapher, .stacks_in_2202663Calligrapher h1, .stacks_in_2202663Calligrapher h2, .stacks_in_2202663Calligrapher h3, .stacks_in_2202663Calligrapher h4, .stacks_in_2202663Calligrapher h5, .stacks_in_2202663Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202663Calligrapher, .stacks_in_2202663Calligrapher h1, .stacks_in_2202663Calligrapher h2, .stacks_in_2202663Calligrapher h3, .stacks_in_2202663Calligrapher h4, .stacks_in_2202663Calligrapher h5, .stacks_in_2202663Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202663targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202663Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202663Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202663Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202663Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202663 {
	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_2202667.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202667.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2202692.CR6_L,
.stacks_in_2202692.CR6_L1 {
	float: left;
}
.stacks_in_2202692.CR6_R,
.stacks_in_2202692.CR6_R1 {
	float: left;
}
.stacks_in_2202692.CR6 {
	width: 13%;
}
.stacks_in_2202692.CR6_S {
	width: 13.2%;
}
.stacks_in_2202692.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2202692.CR6_LF,
.stacks_in_2202692.CR6_LL,
.stacks_in_2202692.CR6_RF,
.stacks_in_2202692.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2202692.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2202692.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2202692.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2202692.CR6,
	.stacks_in_2202692.CR6_S {
		width: 47%;
	}
	.stacks_in_2202692.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2202692.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2202692.CR6.CR6_Goff,
	.stacks_in_2202692.CR6_S.CR6_Goff,
	.stacks_in_2202692.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2202692.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2202692.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2202692.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2202692.CR6,
	.stacks_in_2202692.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2202692 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202694Calligrapher{			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_2202694Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202694Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202694Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202694Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202694Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202694Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202694Calligrapher h6, .stacks_in_2202694Calligrapher h5, .stacks_in_2202694Calligrapher h4, .stacks_in_2202694Calligrapher h3, .stacks_in_2202694Calligrapher h2, .stacks_in_2202694Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202694Calligrapher, .stacks_in_2202694Calligrapher h1, .stacks_in_2202694Calligrapher h2, .stacks_in_2202694Calligrapher h3, .stacks_in_2202694Calligrapher h4, .stacks_in_2202694Calligrapher h5, .stacks_in_2202694Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202694Calligrapher, .stacks_in_2202694Calligrapher h1, .stacks_in_2202694Calligrapher h2, .stacks_in_2202694Calligrapher h3, .stacks_in_2202694Calligrapher h4, .stacks_in_2202694Calligrapher h5, .stacks_in_2202694Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202694targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202694Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202694Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202694Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202694Calligrapher 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_2202698Calligrapher{			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_2202698Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202698Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202698Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202698Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202698Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202698Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202698Calligrapher h6, .stacks_in_2202698Calligrapher h5, .stacks_in_2202698Calligrapher h4, .stacks_in_2202698Calligrapher h3, .stacks_in_2202698Calligrapher h2, .stacks_in_2202698Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202698Calligrapher, .stacks_in_2202698Calligrapher h1, .stacks_in_2202698Calligrapher h2, .stacks_in_2202698Calligrapher h3, .stacks_in_2202698Calligrapher h4, .stacks_in_2202698Calligrapher h5, .stacks_in_2202698Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202698Calligrapher, .stacks_in_2202698Calligrapher h1, .stacks_in_2202698Calligrapher h2, .stacks_in_2202698Calligrapher h3, .stacks_in_2202698Calligrapher h4, .stacks_in_2202698Calligrapher h5, .stacks_in_2202698Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202698targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202698Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202698Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202698Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202698Calligrapher 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_2202703Calligrapher{			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_2202703Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202703Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202703Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202703Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202703Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202703Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202703Calligrapher h6, .stacks_in_2202703Calligrapher h5, .stacks_in_2202703Calligrapher h4, .stacks_in_2202703Calligrapher h3, .stacks_in_2202703Calligrapher h2, .stacks_in_2202703Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202703Calligrapher, .stacks_in_2202703Calligrapher h1, .stacks_in_2202703Calligrapher h2, .stacks_in_2202703Calligrapher h3, .stacks_in_2202703Calligrapher h4, .stacks_in_2202703Calligrapher h5, .stacks_in_2202703Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202703Calligrapher, .stacks_in_2202703Calligrapher h1, .stacks_in_2202703Calligrapher h2, .stacks_in_2202703Calligrapher h3, .stacks_in_2202703Calligrapher h4, .stacks_in_2202703Calligrapher h5, .stacks_in_2202703Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202703targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202703Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202703Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202703Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202703Calligrapher 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_2202707Calligrapher{			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_2202707Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202707Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202707Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202707Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202707Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202707Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202707Calligrapher h6, .stacks_in_2202707Calligrapher h5, .stacks_in_2202707Calligrapher h4, .stacks_in_2202707Calligrapher h3, .stacks_in_2202707Calligrapher h2, .stacks_in_2202707Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202707Calligrapher, .stacks_in_2202707Calligrapher h1, .stacks_in_2202707Calligrapher h2, .stacks_in_2202707Calligrapher h3, .stacks_in_2202707Calligrapher h4, .stacks_in_2202707Calligrapher h5, .stacks_in_2202707Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202707Calligrapher, .stacks_in_2202707Calligrapher h1, .stacks_in_2202707Calligrapher h2, .stacks_in_2202707Calligrapher h3, .stacks_in_2202707Calligrapher h4, .stacks_in_2202707Calligrapher h5, .stacks_in_2202707Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202707targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202707Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2202707Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2202707Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2202707Calligrapher 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_2202711Calligrapher{			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_2202711Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202711Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202711Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202711Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202711Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202711Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202711Calligrapher h6, .stacks_in_2202711Calligrapher h5, .stacks_in_2202711Calligrapher h4, .stacks_in_2202711Calligrapher h3, .stacks_in_2202711Calligrapher h2, .stacks_in_2202711Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202711Calligrapher, .stacks_in_2202711Calligrapher h1, .stacks_in_2202711Calligrapher h2, .stacks_in_2202711Calligrapher h3, .stacks_in_2202711Calligrapher h4, .stacks_in_2202711Calligrapher h5, .stacks_in_2202711Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202711Calligrapher, .stacks_in_2202711Calligrapher h1, .stacks_in_2202711Calligrapher h2, .stacks_in_2202711Calligrapher h3, .stacks_in_2202711Calligrapher h4, .stacks_in_2202711Calligrapher h5, .stacks_in_2202711Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202711targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202711Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202711Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202711Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202711Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202711 {
	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_2202715.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2202715.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#usefulStackstacks_in_2202231 {
	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_2202231 {
		display: none;
	}
}












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

#usefulStackstacks_in_2202390 {
	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_2202390 {
		display: none;
	}
}













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

/* CSS code for the EVENT POSTPONED button */

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

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

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





















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






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

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











/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202403Calligrapher{			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_2202403Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202403Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202403Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202403Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202403Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202403Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202403Calligrapher h6, .stacks_in_2202403Calligrapher h5, .stacks_in_2202403Calligrapher h4, .stacks_in_2202403Calligrapher h3, .stacks_in_2202403Calligrapher h2, .stacks_in_2202403Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202403Calligrapher, .stacks_in_2202403Calligrapher h1, .stacks_in_2202403Calligrapher h2, .stacks_in_2202403Calligrapher h3, .stacks_in_2202403Calligrapher h4, .stacks_in_2202403Calligrapher h5, .stacks_in_2202403Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202403targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202403Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202403Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202403Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202403Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202404 {
	padding: 20px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202239Calligrapher{			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_2202239Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202239Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202239Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202239Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202239Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202239Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202239Calligrapher h6, .stacks_in_2202239Calligrapher h5, .stacks_in_2202239Calligrapher h4, .stacks_in_2202239Calligrapher h3, .stacks_in_2202239Calligrapher h2, .stacks_in_2202239Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202239Calligrapher, .stacks_in_2202239Calligrapher h1, .stacks_in_2202239Calligrapher h2, .stacks_in_2202239Calligrapher h3, .stacks_in_2202239Calligrapher h4, .stacks_in_2202239Calligrapher h5, .stacks_in_2202239Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202239targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202239Calligrapher a:link{			color: #000000 !important;			text-decoration: none !important;		}				.stacks_in_2202239Calligrapher a:visited{			color: #000000 !important;		}				.stacks_in_2202239Calligrapher a:active{			color: #000000 !important;		}				.stacks_in_2202239Calligrapher a:hover{			color: #666666 !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Contact Form stack CSS code */.stacks_in_2202240formwrap{	margin: 0;}#stacks_in_2202240comment{display: none;height: 0px;padding: 0px;margin: 0px;}.stacks_in_2202240mail{padding: 0;}.stacks_in_2202240fieldset{	border: none;	outline: none;	float : none !important;	text-align: left !important;}.stacks_in_2202240formail{}.stacks_in_2202240fieldset{	padding: 0 20px 0 3px;}#stacks_in_2202240 label{display: block;margin: 10px 0 0 0;padding: 0 0 5px 0;line-height: 1.1em;}#stacks_in_2202240 label *{display: inline;}#stacks_in_2202240 .stacks_in_2202240input{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_2202240 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_2202240sendmail{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_2202240response{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_2202240loader{float: left;width: 35px;height: 35px;padding: 0 15px 30px 0;}.stacks_in_2202240autoreplay{visibility: hidden;height: 0px;display: none;}#stacks_in_2202240 textarea{	color: #555555 !important;}/* End Contact Form stack CSS code */
#stacks_in_2202240 {
	padding: 20px 0px 0px 0px;
}
/* Start dooMax stack CSS code */#stacks_in_2202248, .stacks_in_2202248MaxWidthContainer{	-webkit-box-sizing: border-box;	-moz-box-sizing: border-box;	box-sizing: border-box;}     .stacks_in_2202248MaxWidthContainer{	    max-width: 960px;	}    .stacks_in_2202248MaxWidthContainer{		margin: 0 auto 0 auto;	}@media only screen and (max-width: 1024px) {	 	    .stacks_in_2202248MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2202248MaxWidthContainer{			margin: 0 auto 0 auto;		}		}@media only screen and (max-width: 480px) {	 	    .stacks_in_2202248MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2202248MaxWidthContainer{			margin: 0 auto 0 auto;		}		}/* End dooMax stack CSS code */
#stacks_in_2202248 {
	padding: 60px 0px 60px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202249Calligrapher{			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_2202249Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202249Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202249Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202249Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202249Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202249Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202249Calligrapher h6, .stacks_in_2202249Calligrapher h5, .stacks_in_2202249Calligrapher h4, .stacks_in_2202249Calligrapher h3, .stacks_in_2202249Calligrapher h2, .stacks_in_2202249Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202249Calligrapher, .stacks_in_2202249Calligrapher h1, .stacks_in_2202249Calligrapher h2, .stacks_in_2202249Calligrapher h3, .stacks_in_2202249Calligrapher h4, .stacks_in_2202249Calligrapher h5, .stacks_in_2202249Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202249targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202249Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202249Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202249Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202249Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */