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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Start Agent-X stack CSS code */.stacks_in_2202390label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_2202390iPhoneContent, .stacks_in_2202390iPadContent, .stacks_in_2202390AndroidContent, .stacks_in_2202390BlackberryContent, .stacks_in_2202390DesktopContent {	display: none;}.stacks_in_2202390label{	display: none;}/* End Agent-X stack CSS code */ .target_stacks_in_2202391{ }.target_stacks_in_2202391.rotate{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;transform-origin:center center}.target_stacks_in_2202391.width-flexible{width:100%}.target_stacks_in_2202391.width-fixed{width:250px}.target_stacks_in_2202391.height-flexible{height:100%}.target_stacks_in_2202391.height-fixed{height:250px}.target_stacks_in_2202391.top_pt{top:5%}.target_stacks_in_2202391.top_px{top:5px}.target_stacks_in_2202391.bottom_pt{bottom:5%}.target_stacks_in_2202391.bottom_px{bottom:5px}.target_stacks_in_2202391.right_pt{right:10%}.target_stacks_in_2202391.right_px{right:10px}.target_stacks_in_2202391.left_pt{left:10%}.target_stacks_in_2202391.left_px{left:10px}  
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202552Calligrapher{			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_2202552Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202552Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202552Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202552Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202552Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202552Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202552Calligrapher h6, .stacks_in_2202552Calligrapher h5, .stacks_in_2202552Calligrapher h4, .stacks_in_2202552Calligrapher h3, .stacks_in_2202552Calligrapher h2, .stacks_in_2202552Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202552Calligrapher, .stacks_in_2202552Calligrapher h1, .stacks_in_2202552Calligrapher h2, .stacks_in_2202552Calligrapher h3, .stacks_in_2202552Calligrapher h4, .stacks_in_2202552Calligrapher h5, .stacks_in_2202552Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202552Calligrapher, .stacks_in_2202552Calligrapher h1, .stacks_in_2202552Calligrapher h2, .stacks_in_2202552Calligrapher h3, .stacks_in_2202552Calligrapher h4, .stacks_in_2202552Calligrapher h5, .stacks_in_2202552Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202552targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202552Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202552Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202552Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202552Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202553 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202556Calligrapher{			font-size: 100% !important;			color: #CCCCCC !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.1em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202556Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202556Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202556Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202556Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202556Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202556Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202556Calligrapher h6, .stacks_in_2202556Calligrapher h5, .stacks_in_2202556Calligrapher h4, .stacks_in_2202556Calligrapher h3, .stacks_in_2202556Calligrapher h2, .stacks_in_2202556Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202556Calligrapher, .stacks_in_2202556Calligrapher h1, .stacks_in_2202556Calligrapher h2, .stacks_in_2202556Calligrapher h3, .stacks_in_2202556Calligrapher h4, .stacks_in_2202556Calligrapher h5, .stacks_in_2202556Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202556Calligrapher, .stacks_in_2202556Calligrapher h1, .stacks_in_2202556Calligrapher h2, .stacks_in_2202556Calligrapher h3, .stacks_in_2202556Calligrapher h4, .stacks_in_2202556Calligrapher h5, .stacks_in_2202556Calligrapher h6{	text-shadow: 1px 1px 2px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202556targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202556Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202556Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202556Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202556Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202557 {
	padding: 5px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_2202560 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

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








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












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

#usefulStackstacks_in_2202577 {
	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_2202577 {
		display: none;
	}
}












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

#usefulStackstacks_in_2202428 {
	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_2202428 {
		display: none;
	}
}












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

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








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












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

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



#ContentFader_stacks_in_2202442{
}
#stacks_in_2202443 {
	padding: 70px 0px 0px 0px;
}
#stacks_in_2202450 *,
#stacks_in_2202450 *:before,
#stacks_in_2202450 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#usefulStackstacks_in_2202685 {
	padding-bottom: 5%;
	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_2202685 {
		display: none;
	}
}












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

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








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












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

#usefulStackstacks_in_2202265 {
	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_2202265 {
		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_2202311 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202317 {
	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_2202317 {
		display: none;
	}
}












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

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202342 {
	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_2202342 {
		display: none;
	}
}












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

#listerWrapperstacks_in_2202348 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202354 {
	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_2202354 {
		display: none;
	}
}












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

#listerWrapperstacks_in_2202360 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202367 {
	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_2202367 {
		display: none;
	}
}












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

#listerWrapperstacks_in_2202619 {
	visibility: visible;
}

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

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

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

/* @end */

/* @group Style Overrides */

/*  */

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

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

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

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

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

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

#usefulStackstacks_in_2202626 {
	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_2202626 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202627Calligrapher{			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_2202627Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202627Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202627Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202627Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202627Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202627Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202627Calligrapher h6, .stacks_in_2202627Calligrapher h5, .stacks_in_2202627Calligrapher h4, .stacks_in_2202627Calligrapher h3, .stacks_in_2202627Calligrapher h2, .stacks_in_2202627Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202627Calligrapher, .stacks_in_2202627Calligrapher h1, .stacks_in_2202627Calligrapher h2, .stacks_in_2202627Calligrapher h3, .stacks_in_2202627Calligrapher h4, .stacks_in_2202627Calligrapher h5, .stacks_in_2202627Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202627targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202627Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202627Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202627Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202627Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202628 {
	padding: 5px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202307Calligrapher{			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_2202307Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202307Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202307Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202307Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202307Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202307Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202307Calligrapher h6, .stacks_in_2202307Calligrapher h5, .stacks_in_2202307Calligrapher h4, .stacks_in_2202307Calligrapher h3, .stacks_in_2202307Calligrapher h2, .stacks_in_2202307Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202307Calligrapher, .stacks_in_2202307Calligrapher h1, .stacks_in_2202307Calligrapher h2, .stacks_in_2202307Calligrapher h3, .stacks_in_2202307Calligrapher h4, .stacks_in_2202307Calligrapher h5, .stacks_in_2202307Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202307targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202307Calligrapher a:link{			color: #333333 !important;			text-decoration: none !important;		}				.stacks_in_2202307Calligrapher a:visited{			color: #333333 !important;		}				.stacks_in_2202307Calligrapher a:active{			color: #333333 !important;		}				.stacks_in_2202307Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202308 {
	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_223733label{	display: block;	background: #83c681;	padding: 4px 10px 4px 10px;	-webkit-border-radius: 10px;	color: #ffffff;	text-align: center;	margin-top: 10px;}.stacks_in_223733iPhoneContent, .stacks_in_223733iPadContent, .stacks_in_223733AndroidContent, .stacks_in_223733BlackberryContent, .stacks_in_223733DesktopContent {	display: none;}.stacks_in_223733label{	display: none;}/* End Agent-X stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2201807Calligrapher{			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_2201807Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201807Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201807Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201807Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201807Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201807Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201807Calligrapher h6, .stacks_in_2201807Calligrapher h5, .stacks_in_2201807Calligrapher h4, .stacks_in_2201807Calligrapher h3, .stacks_in_2201807Calligrapher h2, .stacks_in_2201807Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2201807Calligrapher, .stacks_in_2201807Calligrapher h1, .stacks_in_2201807Calligrapher h2, .stacks_in_2201807Calligrapher h3, .stacks_in_2201807Calligrapher h4, .stacks_in_2201807Calligrapher h5, .stacks_in_2201807Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2201807Calligrapher, .stacks_in_2201807Calligrapher h1, .stacks_in_2201807Calligrapher h2, .stacks_in_2201807Calligrapher h3, .stacks_in_2201807Calligrapher h4, .stacks_in_2201807Calligrapher h5, .stacks_in_2201807Calligrapher h6{	text-shadow: 1px 1px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2201807targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2201807Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2201807Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2201807Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2201807Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2201809 {
	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_2201811.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2201811.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2201811.CR6_L,
.stacks_in_2201811.CR6_L1 {
	float: left;
}
.stacks_in_2201811.CR6_R,
.stacks_in_2201811.CR6_R1 {
	float: left;
}
.stacks_in_2201811.CR6 {
	width: 13%;
}
.stacks_in_2201811.CR6_S {
	width: 13.2%;
}
.stacks_in_2201811.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_2201811.CR6_LF,
.stacks_in_2201811.CR6_LL,
.stacks_in_2201811.CR6_RF,
.stacks_in_2201811.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_2201811.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_2201811.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_2201811.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2201811.CR6,
	.stacks_in_2201811.CR6_S {
		width: 47%;
	}
	.stacks_in_2201811.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_2201811.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_2201811.CR6.CR6_Goff,
	.stacks_in_2201811.CR6_S.CR6_Goff,
	.stacks_in_2201811.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2201811.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2201811.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2201811.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2201811.CR6,
	.stacks_in_2201811.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_2201811 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2201814Calligrapher{			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_2201814Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201814Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201814Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201814Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201814Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201814Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201814Calligrapher h6, .stacks_in_2201814Calligrapher h5, .stacks_in_2201814Calligrapher h4, .stacks_in_2201814Calligrapher h3, .stacks_in_2201814Calligrapher h2, .stacks_in_2201814Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2201814Calligrapher, .stacks_in_2201814Calligrapher h1, .stacks_in_2201814Calligrapher h2, .stacks_in_2201814Calligrapher h3, .stacks_in_2201814Calligrapher h4, .stacks_in_2201814Calligrapher h5, .stacks_in_2201814Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2201814Calligrapher, .stacks_in_2201814Calligrapher h1, .stacks_in_2201814Calligrapher h2, .stacks_in_2201814Calligrapher h3, .stacks_in_2201814Calligrapher h4, .stacks_in_2201814Calligrapher h5, .stacks_in_2201814Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2201814targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2201814Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2201814Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2201814Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2201814Calligrapher 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_2201818Calligrapher{			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_2201818Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201818Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201818Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201818Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201818Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201818Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201818Calligrapher h6, .stacks_in_2201818Calligrapher h5, .stacks_in_2201818Calligrapher h4, .stacks_in_2201818Calligrapher h3, .stacks_in_2201818Calligrapher h2, .stacks_in_2201818Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2201818Calligrapher, .stacks_in_2201818Calligrapher h1, .stacks_in_2201818Calligrapher h2, .stacks_in_2201818Calligrapher h3, .stacks_in_2201818Calligrapher h4, .stacks_in_2201818Calligrapher h5, .stacks_in_2201818Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2201818Calligrapher, .stacks_in_2201818Calligrapher h1, .stacks_in_2201818Calligrapher h2, .stacks_in_2201818Calligrapher h3, .stacks_in_2201818Calligrapher h4, .stacks_in_2201818Calligrapher h5, .stacks_in_2201818Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2201818targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2201818Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2201818Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2201818Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2201818Calligrapher 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_2201823Calligrapher{			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_2201823Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201823Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201823Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201823Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201823Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201823Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201823Calligrapher h6, .stacks_in_2201823Calligrapher h5, .stacks_in_2201823Calligrapher h4, .stacks_in_2201823Calligrapher h3, .stacks_in_2201823Calligrapher h2, .stacks_in_2201823Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2201823Calligrapher, .stacks_in_2201823Calligrapher h1, .stacks_in_2201823Calligrapher h2, .stacks_in_2201823Calligrapher h3, .stacks_in_2201823Calligrapher h4, .stacks_in_2201823Calligrapher h5, .stacks_in_2201823Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2201823Calligrapher, .stacks_in_2201823Calligrapher h1, .stacks_in_2201823Calligrapher h2, .stacks_in_2201823Calligrapher h3, .stacks_in_2201823Calligrapher h4, .stacks_in_2201823Calligrapher h5, .stacks_in_2201823Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2201823targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2201823Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2201823Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2201823Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2201823Calligrapher 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_2201827Calligrapher{			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_2201827Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201827Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201827Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201827Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201827Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201827Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201827Calligrapher h6, .stacks_in_2201827Calligrapher h5, .stacks_in_2201827Calligrapher h4, .stacks_in_2201827Calligrapher h3, .stacks_in_2201827Calligrapher h2, .stacks_in_2201827Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2201827Calligrapher, .stacks_in_2201827Calligrapher h1, .stacks_in_2201827Calligrapher h2, .stacks_in_2201827Calligrapher h3, .stacks_in_2201827Calligrapher h4, .stacks_in_2201827Calligrapher h5, .stacks_in_2201827Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2201827Calligrapher, .stacks_in_2201827Calligrapher h1, .stacks_in_2201827Calligrapher h2, .stacks_in_2201827Calligrapher h3, .stacks_in_2201827Calligrapher h4, .stacks_in_2201827Calligrapher h5, .stacks_in_2201827Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2201827targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2201827Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2201827Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2201827Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2201827Calligrapher 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_2201849Calligrapher{			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_2201849Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201849Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201849Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201849Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201849Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201849Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201849Calligrapher h6, .stacks_in_2201849Calligrapher h5, .stacks_in_2201849Calligrapher h4, .stacks_in_2201849Calligrapher h3, .stacks_in_2201849Calligrapher h2, .stacks_in_2201849Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2201849Calligrapher, .stacks_in_2201849Calligrapher h1, .stacks_in_2201849Calligrapher h2, .stacks_in_2201849Calligrapher h3, .stacks_in_2201849Calligrapher h4, .stacks_in_2201849Calligrapher h5, .stacks_in_2201849Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2201849Calligrapher, .stacks_in_2201849Calligrapher h1, .stacks_in_2201849Calligrapher h2, .stacks_in_2201849Calligrapher h3, .stacks_in_2201849Calligrapher h4, .stacks_in_2201849Calligrapher h5, .stacks_in_2201849Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2201849targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2201849Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2201849Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2201849Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2201849Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2201849 {
	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_2201853.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_2201853.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_2201853.CR6_L,
.stacks_in_2201853.CR6_L1 {
	float: left;
}
.stacks_in_2201853.CR6_R,
.stacks_in_2201853.CR6_R1 {
	float: left;
}
.stacks_in_2201853.CR6 {
	width: 15%;
}
.stacks_in_2201853.CR6_S {
	width: 15.2%;
}
.stacks_in_2201853.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_2201853.CR6_LF,
.stacks_in_2201853.CR6_LL,
.stacks_in_2201853.CR6_RF,
.stacks_in_2201853.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_2201853.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_2201853.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_2201853.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_2201853.CR6,
	.stacks_in_2201853.CR6_S {
		width: 49%;
	}
	.stacks_in_2201853.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_2201853.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_2201853.CR6.CR6_Goff,
	.stacks_in_2201853.CR6_S.CR6_Goff,
	.stacks_in_2201853.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_2201853.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_2201853.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_2201853.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_2201853.CR6,
	.stacks_in_2201853.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2201856Calligrapher{			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_2201856Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201856Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201856Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201856Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201856Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201856Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201856Calligrapher h6, .stacks_in_2201856Calligrapher h5, .stacks_in_2201856Calligrapher h4, .stacks_in_2201856Calligrapher h3, .stacks_in_2201856Calligrapher h2, .stacks_in_2201856Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2201856Calligrapher, .stacks_in_2201856Calligrapher h1, .stacks_in_2201856Calligrapher h2, .stacks_in_2201856Calligrapher h3, .stacks_in_2201856Calligrapher h4, .stacks_in_2201856Calligrapher h5, .stacks_in_2201856Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2201856Calligrapher, .stacks_in_2201856Calligrapher h1, .stacks_in_2201856Calligrapher h2, .stacks_in_2201856Calligrapher h3, .stacks_in_2201856Calligrapher h4, .stacks_in_2201856Calligrapher h5, .stacks_in_2201856Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2201856targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2201856Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2201856Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2201856Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2201856Calligrapher 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_2201861Calligrapher{			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_2201861Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201861Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201861Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201861Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201861Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201861Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2201861Calligrapher h6, .stacks_in_2201861Calligrapher h5, .stacks_in_2201861Calligrapher h4, .stacks_in_2201861Calligrapher h3, .stacks_in_2201861Calligrapher h2, .stacks_in_2201861Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2201861Calligrapher, .stacks_in_2201861Calligrapher h1, .stacks_in_2201861Calligrapher h2, .stacks_in_2201861Calligrapher h3, .stacks_in_2201861Calligrapher h4, .stacks_in_2201861Calligrapher h5, .stacks_in_2201861Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2201861Calligrapher, .stacks_in_2201861Calligrapher h1, .stacks_in_2201861Calligrapher h2, .stacks_in_2201861Calligrapher h3, .stacks_in_2201861Calligrapher h4, .stacks_in_2201861Calligrapher h5, .stacks_in_2201861Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2201861targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2201861Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_2201861Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_2201861Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_2201861Calligrapher 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_2202386Calligrapher{			font-size: 120% !important;			color: #FC6666 !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: center !important;		}				.stacks_in_2202386Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202386Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202386Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202386Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202386Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202386Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202386Calligrapher h6, .stacks_in_2202386Calligrapher h5, .stacks_in_2202386Calligrapher h4, .stacks_in_2202386Calligrapher h3, .stacks_in_2202386Calligrapher h2, .stacks_in_2202386Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- */ .stacks_in_2202386Calligrapher, .stacks_in_2202386Calligrapher h1, .stacks_in_2202386Calligrapher h2, .stacks_in_2202386Calligrapher h3, .stacks_in_2202386Calligrapher h4, .stacks_in_2202386Calligrapher h5, .stacks_in_2202386Calligrapher h6{	font-family: "Graduate" !important;}/* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202386Calligrapher, .stacks_in_2202386Calligrapher h1, .stacks_in_2202386Calligrapher h2, .stacks_in_2202386Calligrapher h3, .stacks_in_2202386Calligrapher h4, .stacks_in_2202386Calligrapher h5, .stacks_in_2202386Calligrapher h6{	text-shadow: 1px 1px 2px #191919 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202386targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202386Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202386Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202386Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202386Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202387 {
	padding: 20px 0px 40px 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_223987.cleanResponse2_L.CR2_Goff {
	width: 75%;
}
.stacks_in_223987.cleanResponse2_R.CR2_Goff {
	width: 25%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_223996.CR6_L,
.stacks_in_223996.CR6_L1 {
	float: left;
}
.stacks_in_223996.CR6_R,
.stacks_in_223996.CR6_R1 {
	float: left;
}
.stacks_in_223996.CR6 {
	width: 13%;
}
.stacks_in_223996.CR6_S {
	width: 13.2%;
}
.stacks_in_223996.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_223996.CR6_LF,
.stacks_in_223996.CR6_LL,
.stacks_in_223996.CR6_RF,
.stacks_in_223996.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_223996.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_223996.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_223996.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_223996.CR6,
	.stacks_in_223996.CR6_S {
		width: 47%;
	}
	.stacks_in_223996.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_223996.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_223996.CR6.CR6_Goff,
	.stacks_in_223996.CR6_S.CR6_Goff,
	.stacks_in_223996.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_223996.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_223996.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_223996.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_223996.CR6,
	.stacks_in_223996.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_223996 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_223999Calligrapher{			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_223999Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_223999Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_223999Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_223999Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_223999Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_223999Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_223999Calligrapher h6, .stacks_in_223999Calligrapher h5, .stacks_in_223999Calligrapher h4, .stacks_in_223999Calligrapher h3, .stacks_in_223999Calligrapher h2, .stacks_in_223999Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_223999Calligrapher, .stacks_in_223999Calligrapher h1, .stacks_in_223999Calligrapher h2, .stacks_in_223999Calligrapher h3, .stacks_in_223999Calligrapher h4, .stacks_in_223999Calligrapher h5, .stacks_in_223999Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_223999Calligrapher, .stacks_in_223999Calligrapher h1, .stacks_in_223999Calligrapher h2, .stacks_in_223999Calligrapher h3, .stacks_in_223999Calligrapher h4, .stacks_in_223999Calligrapher h5, .stacks_in_223999Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_223999targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_223999Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_223999Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_223999Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_223999Calligrapher 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_224003Calligrapher{			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_224003Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224003Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224003Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224003Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224003Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224003Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224003Calligrapher h6, .stacks_in_224003Calligrapher h5, .stacks_in_224003Calligrapher h4, .stacks_in_224003Calligrapher h3, .stacks_in_224003Calligrapher h2, .stacks_in_224003Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_224003Calligrapher, .stacks_in_224003Calligrapher h1, .stacks_in_224003Calligrapher h2, .stacks_in_224003Calligrapher h3, .stacks_in_224003Calligrapher h4, .stacks_in_224003Calligrapher h5, .stacks_in_224003Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_224003Calligrapher, .stacks_in_224003Calligrapher h1, .stacks_in_224003Calligrapher h2, .stacks_in_224003Calligrapher h3, .stacks_in_224003Calligrapher h4, .stacks_in_224003Calligrapher h5, .stacks_in_224003Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_224003targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_224003Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_224003Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_224003Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_224003Calligrapher 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_224008Calligrapher{			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_224008Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224008Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224008Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224008Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224008Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224008Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224008Calligrapher h6, .stacks_in_224008Calligrapher h5, .stacks_in_224008Calligrapher h4, .stacks_in_224008Calligrapher h3, .stacks_in_224008Calligrapher h2, .stacks_in_224008Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_224008Calligrapher, .stacks_in_224008Calligrapher h1, .stacks_in_224008Calligrapher h2, .stacks_in_224008Calligrapher h3, .stacks_in_224008Calligrapher h4, .stacks_in_224008Calligrapher h5, .stacks_in_224008Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_224008Calligrapher, .stacks_in_224008Calligrapher h1, .stacks_in_224008Calligrapher h2, .stacks_in_224008Calligrapher h3, .stacks_in_224008Calligrapher h4, .stacks_in_224008Calligrapher h5, .stacks_in_224008Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_224008targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_224008Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_224008Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_224008Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_224008Calligrapher 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_224012Calligrapher{			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_224012Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224012Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224012Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224012Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224012Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224012Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224012Calligrapher h6, .stacks_in_224012Calligrapher h5, .stacks_in_224012Calligrapher h4, .stacks_in_224012Calligrapher h3, .stacks_in_224012Calligrapher h2, .stacks_in_224012Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_224012Calligrapher, .stacks_in_224012Calligrapher h1, .stacks_in_224012Calligrapher h2, .stacks_in_224012Calligrapher h3, .stacks_in_224012Calligrapher h4, .stacks_in_224012Calligrapher h5, .stacks_in_224012Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_224012Calligrapher, .stacks_in_224012Calligrapher h1, .stacks_in_224012Calligrapher h2, .stacks_in_224012Calligrapher h3, .stacks_in_224012Calligrapher h4, .stacks_in_224012Calligrapher h5, .stacks_in_224012Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_224012targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_224012Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_224012Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_224012Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_224012Calligrapher 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_224034Calligrapher{			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_224034Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224034Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224034Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224034Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224034Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224034Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224034Calligrapher h6, .stacks_in_224034Calligrapher h5, .stacks_in_224034Calligrapher h4, .stacks_in_224034Calligrapher h3, .stacks_in_224034Calligrapher h2, .stacks_in_224034Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_224034Calligrapher, .stacks_in_224034Calligrapher h1, .stacks_in_224034Calligrapher h2, .stacks_in_224034Calligrapher h3, .stacks_in_224034Calligrapher h4, .stacks_in_224034Calligrapher h5, .stacks_in_224034Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_224034Calligrapher, .stacks_in_224034Calligrapher h1, .stacks_in_224034Calligrapher h2, .stacks_in_224034Calligrapher h3, .stacks_in_224034Calligrapher h4, .stacks_in_224034Calligrapher h5, .stacks_in_224034Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_224034targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_224034Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_224034Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_224034Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_224034Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_224034 {
	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_224038.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_224038.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_224621.CR6_L,
.stacks_in_224621.CR6_L1 {
	float: left;
}
.stacks_in_224621.CR6_R,
.stacks_in_224621.CR6_R1 {
	float: left;
}
.stacks_in_224621.CR6 {
	width: 13%;
}
.stacks_in_224621.CR6_S {
	width: 13.2%;
}
.stacks_in_224621.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_224621.CR6_LF,
.stacks_in_224621.CR6_LL,
.stacks_in_224621.CR6_RF,
.stacks_in_224621.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_224621.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_224621.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_224621.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_224621.CR6,
	.stacks_in_224621.CR6_S {
		width: 47%;
	}
	.stacks_in_224621.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_224621.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_224621.CR6.CR6_Goff,
	.stacks_in_224621.CR6_S.CR6_Goff,
	.stacks_in_224621.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_224621.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_224621.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_224621.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_224621.CR6,
	.stacks_in_224621.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_224621 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_224624Calligrapher{			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_224624Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224624Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224624Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224624Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224624Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224624Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224624Calligrapher h6, .stacks_in_224624Calligrapher h5, .stacks_in_224624Calligrapher h4, .stacks_in_224624Calligrapher h3, .stacks_in_224624Calligrapher h2, .stacks_in_224624Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_224624Calligrapher, .stacks_in_224624Calligrapher h1, .stacks_in_224624Calligrapher h2, .stacks_in_224624Calligrapher h3, .stacks_in_224624Calligrapher h4, .stacks_in_224624Calligrapher h5, .stacks_in_224624Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_224624Calligrapher, .stacks_in_224624Calligrapher h1, .stacks_in_224624Calligrapher h2, .stacks_in_224624Calligrapher h3, .stacks_in_224624Calligrapher h4, .stacks_in_224624Calligrapher h5, .stacks_in_224624Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_224624targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_224624Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_224624Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_224624Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_224624Calligrapher 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_224628Calligrapher{			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_224628Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224628Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224628Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224628Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224628Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224628Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224628Calligrapher h6, .stacks_in_224628Calligrapher h5, .stacks_in_224628Calligrapher h4, .stacks_in_224628Calligrapher h3, .stacks_in_224628Calligrapher h2, .stacks_in_224628Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_224628Calligrapher, .stacks_in_224628Calligrapher h1, .stacks_in_224628Calligrapher h2, .stacks_in_224628Calligrapher h3, .stacks_in_224628Calligrapher h4, .stacks_in_224628Calligrapher h5, .stacks_in_224628Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_224628Calligrapher, .stacks_in_224628Calligrapher h1, .stacks_in_224628Calligrapher h2, .stacks_in_224628Calligrapher h3, .stacks_in_224628Calligrapher h4, .stacks_in_224628Calligrapher h5, .stacks_in_224628Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_224628targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_224628Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_224628Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_224628Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_224628Calligrapher 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_224633Calligrapher{			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_224633Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224633Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224633Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224633Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224633Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224633Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224633Calligrapher h6, .stacks_in_224633Calligrapher h5, .stacks_in_224633Calligrapher h4, .stacks_in_224633Calligrapher h3, .stacks_in_224633Calligrapher h2, .stacks_in_224633Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_224633Calligrapher, .stacks_in_224633Calligrapher h1, .stacks_in_224633Calligrapher h2, .stacks_in_224633Calligrapher h3, .stacks_in_224633Calligrapher h4, .stacks_in_224633Calligrapher h5, .stacks_in_224633Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_224633Calligrapher, .stacks_in_224633Calligrapher h1, .stacks_in_224633Calligrapher h2, .stacks_in_224633Calligrapher h3, .stacks_in_224633Calligrapher h4, .stacks_in_224633Calligrapher h5, .stacks_in_224633Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_224633targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_224633Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_224633Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_224633Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_224633Calligrapher 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_224637Calligrapher{			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_224637Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224637Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224637Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224637Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224637Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224637Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224637Calligrapher h6, .stacks_in_224637Calligrapher h5, .stacks_in_224637Calligrapher h4, .stacks_in_224637Calligrapher h3, .stacks_in_224637Calligrapher h2, .stacks_in_224637Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_224637Calligrapher, .stacks_in_224637Calligrapher h1, .stacks_in_224637Calligrapher h2, .stacks_in_224637Calligrapher h3, .stacks_in_224637Calligrapher h4, .stacks_in_224637Calligrapher h5, .stacks_in_224637Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_224637Calligrapher, .stacks_in_224637Calligrapher h1, .stacks_in_224637Calligrapher h2, .stacks_in_224637Calligrapher h3, .stacks_in_224637Calligrapher h4, .stacks_in_224637Calligrapher h5, .stacks_in_224637Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_224637targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_224637Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_224637Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_224637Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_224637Calligrapher 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_224659Calligrapher{			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_224659Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224659Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224659Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224659Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224659Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224659Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224659Calligrapher h6, .stacks_in_224659Calligrapher h5, .stacks_in_224659Calligrapher h4, .stacks_in_224659Calligrapher h3, .stacks_in_224659Calligrapher h2, .stacks_in_224659Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_224659Calligrapher, .stacks_in_224659Calligrapher h1, .stacks_in_224659Calligrapher h2, .stacks_in_224659Calligrapher h3, .stacks_in_224659Calligrapher h4, .stacks_in_224659Calligrapher h5, .stacks_in_224659Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_224659Calligrapher, .stacks_in_224659Calligrapher h1, .stacks_in_224659Calligrapher h2, .stacks_in_224659Calligrapher h3, .stacks_in_224659Calligrapher h4, .stacks_in_224659Calligrapher h5, .stacks_in_224659Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_224659targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_224659Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_224659Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_224659Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_224659Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_224659 {
	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_224663.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_224663.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_224663.CR6_L,
.stacks_in_224663.CR6_L1 {
	float: left;
}
.stacks_in_224663.CR6_R,
.stacks_in_224663.CR6_R1 {
	float: left;
}
.stacks_in_224663.CR6 {
	width: 15%;
}
.stacks_in_224663.CR6_S {
	width: 15.2%;
}
.stacks_in_224663.CR6_M {
	float: left; 
	margin: 0 1% 10px 1%;
}
.stacks_in_224663.CR6_LF,
.stacks_in_224663.CR6_LL,
.stacks_in_224663.CR6_RF,
.stacks_in_224663.CR6_RL {
	margin: 0 1% 10px 1%;
}
.stacks_in_224663.CR6_L1 {
	margin: 0 1% 10px 0;
}
.stacks_in_224663.CR6_R1 {
	margin: 0 0 10px 1%;
}
@media (max-width: 1099px) {
	.stacks_in_224663.CR6_S {
		width: 15%;
	}
}
@media (max-width: 800px) {
	.stacks_in_224663.CR6,
	.stacks_in_224663.CR6_S {
		width: 49%;
	}
	.stacks_in_224663.CR6_LF {
		float: left;
		margin: 0 1% 10px 0;
	}
	.stacks_in_224663.CR6_LL {
		float: left;
		margin: 0 0 10px 1%;
	}
	.stacks_in_224663.CR6.CR6_Goff,
	.stacks_in_224663.CR6_S.CR6_Goff,
	.stacks_in_224663.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_224663.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_224663.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_224663.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_224663.CR6,
	.stacks_in_224663.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_224666Calligrapher{			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_224666Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224666Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224666Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224666Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224666Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224666Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224666Calligrapher h6, .stacks_in_224666Calligrapher h5, .stacks_in_224666Calligrapher h4, .stacks_in_224666Calligrapher h3, .stacks_in_224666Calligrapher h2, .stacks_in_224666Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_224666Calligrapher, .stacks_in_224666Calligrapher h1, .stacks_in_224666Calligrapher h2, .stacks_in_224666Calligrapher h3, .stacks_in_224666Calligrapher h4, .stacks_in_224666Calligrapher h5, .stacks_in_224666Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_224666Calligrapher, .stacks_in_224666Calligrapher h1, .stacks_in_224666Calligrapher h2, .stacks_in_224666Calligrapher h3, .stacks_in_224666Calligrapher h4, .stacks_in_224666Calligrapher h5, .stacks_in_224666Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_224666targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_224666Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_224666Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_224666Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_224666Calligrapher 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_224671Calligrapher{			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_224671Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224671Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224671Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224671Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224671Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224671Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_224671Calligrapher h6, .stacks_in_224671Calligrapher h5, .stacks_in_224671Calligrapher h4, .stacks_in_224671Calligrapher h3, .stacks_in_224671Calligrapher h2, .stacks_in_224671Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_224671Calligrapher, .stacks_in_224671Calligrapher h1, .stacks_in_224671Calligrapher h2, .stacks_in_224671Calligrapher h3, .stacks_in_224671Calligrapher h4, .stacks_in_224671Calligrapher h5, .stacks_in_224671Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_224671Calligrapher, .stacks_in_224671Calligrapher h1, .stacks_in_224671Calligrapher h2, .stacks_in_224671Calligrapher h3, .stacks_in_224671Calligrapher h4, .stacks_in_224671Calligrapher h5, .stacks_in_224671Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_224671targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_224671Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_224671Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_224671Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_224671Calligrapher 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_2202299Calligrapher{			font-size: 120% !important;			color: #FC6666 !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: center !important;		}				.stacks_in_2202299Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202299Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202299Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202299Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202299Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202299Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202299Calligrapher h6, .stacks_in_2202299Calligrapher h5, .stacks_in_2202299Calligrapher h4, .stacks_in_2202299Calligrapher h3, .stacks_in_2202299Calligrapher h2, .stacks_in_2202299Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- */ .stacks_in_2202299Calligrapher, .stacks_in_2202299Calligrapher h1, .stacks_in_2202299Calligrapher h2, .stacks_in_2202299Calligrapher h3, .stacks_in_2202299Calligrapher h4, .stacks_in_2202299Calligrapher h5, .stacks_in_2202299Calligrapher h6{	font-family: "Graduate" !important;}/* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_2202299Calligrapher, .stacks_in_2202299Calligrapher h1, .stacks_in_2202299Calligrapher h2, .stacks_in_2202299Calligrapher h3, .stacks_in_2202299Calligrapher h4, .stacks_in_2202299Calligrapher h5, .stacks_in_2202299Calligrapher h6{	text-shadow: 1px 1px 2px #191919 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202299targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202299Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202299Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202299Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202299Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_2202300 {
	padding: 20px 0px 40px 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_136391.cleanResponse2_L.CR2_Goff {
	width: 45%;
}
.stacks_in_136391.cleanResponse2_R.CR2_Goff {
	width: 55%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stacks_in_222508.CR6_L,
.stacks_in_222508.CR6_L1 {
	float: left;
}
.stacks_in_222508.CR6_R,
.stacks_in_222508.CR6_R1 {
	float: left;
}
.stacks_in_222508.CR6 {
	width: 13%;
}
.stacks_in_222508.CR6_S {
	width: 13.2%;
}
.stacks_in_222508.CR6_M {
	float: left; 
	margin: 0 2% 10px 2%;
}
.stacks_in_222508.CR6_LF,
.stacks_in_222508.CR6_LL,
.stacks_in_222508.CR6_RF,
.stacks_in_222508.CR6_RL {
	margin: 0 2% 10px 2%;
}
.stacks_in_222508.CR6_L1 {
	margin: 0 2% 10px 0;
}
.stacks_in_222508.CR6_R1 {
	margin: 0 0 10px 2%;
}
@media (max-width: 1099px) {
	.stacks_in_222508.CR6_S {
		width: 13%;
	}
}
@media (max-width: 800px) {
	.stacks_in_222508.CR6,
	.stacks_in_222508.CR6_S {
		width: 47%;
	}
	.stacks_in_222508.CR6_LF {
		float: left;
		margin: 0 2% 10px 0;
	}
	.stacks_in_222508.CR6_LL {
		float: left;
		margin: 0 0 10px 2%;
	}
	.stacks_in_222508.CR6.CR6_Goff,
	.stacks_in_222508.CR6_S.CR6_Goff,
	.stacks_in_222508.CR6_R1.CR6_LL.CR6_S.CR6_Goff,
	.stacks_in_222508.CR6_L1.CR6_LF.CR6_S.CR6_Goff {
		width:50%;
	}
	.stacks_in_222508.CR6_LF.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
	.stacks_in_222508.CR6_LL.CR6_Goff {
		float: left;
		margin: 0 0 10px 0;
	}
}
@media (max-width: 600px) {
	.stacks_in_222508.CR6,
	.stacks_in_222508.CR6_S {
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
}
#stacks_in_222508 {
	padding: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_137969Calligrapher{			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_137969Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_137969Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_137969Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_137969Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_137969Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_137969Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_137969Calligrapher h6, .stacks_in_137969Calligrapher h5, .stacks_in_137969Calligrapher h4, .stacks_in_137969Calligrapher h3, .stacks_in_137969Calligrapher h2, .stacks_in_137969Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_137969Calligrapher, .stacks_in_137969Calligrapher h1, .stacks_in_137969Calligrapher h2, .stacks_in_137969Calligrapher h3, .stacks_in_137969Calligrapher h4, .stacks_in_137969Calligrapher h5, .stacks_in_137969Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_137969Calligrapher, .stacks_in_137969Calligrapher h1, .stacks_in_137969Calligrapher h2, .stacks_in_137969Calligrapher h3, .stacks_in_137969Calligrapher h4, .stacks_in_137969Calligrapher h5, .stacks_in_137969Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_137969targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_137969Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_137969Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_137969Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_137969Calligrapher 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_136400Calligrapher{			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_136400Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_136400Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_136400Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_136400Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_136400Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_136400Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_136400Calligrapher h6, .stacks_in_136400Calligrapher h5, .stacks_in_136400Calligrapher h4, .stacks_in_136400Calligrapher h3, .stacks_in_136400Calligrapher h2, .stacks_in_136400Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_136400Calligrapher, .stacks_in_136400Calligrapher h1, .stacks_in_136400Calligrapher h2, .stacks_in_136400Calligrapher h3, .stacks_in_136400Calligrapher h4, .stacks_in_136400Calligrapher h5, .stacks_in_136400Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_136400Calligrapher, .stacks_in_136400Calligrapher h1, .stacks_in_136400Calligrapher h2, .stacks_in_136400Calligrapher h3, .stacks_in_136400Calligrapher h4, .stacks_in_136400Calligrapher h5, .stacks_in_136400Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_136400targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_136400Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_136400Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_136400Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_136400Calligrapher 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_222456Calligrapher{			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_222456Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222456Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222456Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222456Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222456Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222456Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222456Calligrapher h6, .stacks_in_222456Calligrapher h5, .stacks_in_222456Calligrapher h4, .stacks_in_222456Calligrapher h3, .stacks_in_222456Calligrapher h2, .stacks_in_222456Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_222456Calligrapher, .stacks_in_222456Calligrapher h1, .stacks_in_222456Calligrapher h2, .stacks_in_222456Calligrapher h3, .stacks_in_222456Calligrapher h4, .stacks_in_222456Calligrapher h5, .stacks_in_222456Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_222456Calligrapher, .stacks_in_222456Calligrapher h1, .stacks_in_222456Calligrapher h2, .stacks_in_222456Calligrapher h3, .stacks_in_222456Calligrapher h4, .stacks_in_222456Calligrapher h5, .stacks_in_222456Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_222456targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_222456Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_222456Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_222456Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_222456Calligrapher 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_222504Calligrapher{			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_222504Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222504Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222504Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222504Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222504Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222504Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222504Calligrapher h6, .stacks_in_222504Calligrapher h5, .stacks_in_222504Calligrapher h4, .stacks_in_222504Calligrapher h3, .stacks_in_222504Calligrapher h2, .stacks_in_222504Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_222504Calligrapher, .stacks_in_222504Calligrapher h1, .stacks_in_222504Calligrapher h2, .stacks_in_222504Calligrapher h3, .stacks_in_222504Calligrapher h4, .stacks_in_222504Calligrapher h5, .stacks_in_222504Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_222504Calligrapher, .stacks_in_222504Calligrapher h1, .stacks_in_222504Calligrapher h2, .stacks_in_222504Calligrapher h3, .stacks_in_222504Calligrapher h4, .stacks_in_222504Calligrapher h5, .stacks_in_222504Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_222504targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_222504Calligrapher a:link{			color: #D0CCA2 !important;			text-decoration: none !important;		}				.stacks_in_222504Calligrapher a:visited{			color: #D0CCA2 !important;		}				.stacks_in_222504Calligrapher a:active{			color: #D0CCA2 !important;		}				.stacks_in_222504Calligrapher 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_222812Calligrapher{			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_222812Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222812Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222812Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222812Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222812Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222812Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222812Calligrapher h6, .stacks_in_222812Calligrapher h5, .stacks_in_222812Calligrapher h4, .stacks_in_222812Calligrapher h3, .stacks_in_222812Calligrapher h2, .stacks_in_222812Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_222812Calligrapher, .stacks_in_222812Calligrapher h1, .stacks_in_222812Calligrapher h2, .stacks_in_222812Calligrapher h3, .stacks_in_222812Calligrapher h4, .stacks_in_222812Calligrapher h5, .stacks_in_222812Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_222812Calligrapher, .stacks_in_222812Calligrapher h1, .stacks_in_222812Calligrapher h2, .stacks_in_222812Calligrapher h3, .stacks_in_222812Calligrapher h4, .stacks_in_222812Calligrapher h5, .stacks_in_222812Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_222812targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_222812Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_222812Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_222812Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_222812Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_222812 {
	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_222809.cleanResponse2_L.CR2_Goff {
	width: 50%;
}
.stacks_in_222809.cleanResponse2_R.CR2_Goff {
	width: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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








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












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

#usefulStackstacks_in_2202692 {
	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_2202692 {
		display: none;
	}
}













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

/* CSS code for the POSTPONED button */

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

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

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





















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






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

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











/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_222288Calligrapher{			font-size: 100% !important;			color: #666666 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_222288Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222288Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222288Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222288Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222288Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222288Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_222288Calligrapher h6, .stacks_in_222288Calligrapher h5, .stacks_in_222288Calligrapher h4, .stacks_in_222288Calligrapher h3, .stacks_in_222288Calligrapher h2, .stacks_in_222288Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_222288Calligrapher, .stacks_in_222288Calligrapher h1, .stacks_in_222288Calligrapher h2, .stacks_in_222288Calligrapher h3, .stacks_in_222288Calligrapher h4, .stacks_in_222288Calligrapher h5, .stacks_in_222288Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_222288targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_222288Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_222288Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_222288Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_222288Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_222296 {
	padding: 20px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202244Calligrapher{			font-size: 90% !important;			color: #666666 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.8em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_2202244Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202244Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202244Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202244Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202244Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202244Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202244Calligrapher h6, .stacks_in_2202244Calligrapher h5, .stacks_in_2202244Calligrapher h4, .stacks_in_2202244Calligrapher h3, .stacks_in_2202244Calligrapher h2, .stacks_in_2202244Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202244Calligrapher, .stacks_in_2202244Calligrapher h1, .stacks_in_2202244Calligrapher h2, .stacks_in_2202244Calligrapher h3, .stacks_in_2202244Calligrapher h4, .stacks_in_2202244Calligrapher h5, .stacks_in_2202244Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202244targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202244Calligrapher a:link{			color: #000000 !important;			text-decoration: none !important;		}				.stacks_in_2202244Calligrapher a:visited{			color: #000000 !important;		}				.stacks_in_2202244Calligrapher a:active{			color: #000000 !important;		}				.stacks_in_2202244Calligrapher a:hover{			color: #666666 !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Contact Form stack CSS code */.stacks_in_2202245formwrap{	margin: 0;}#stacks_in_2202245comment{display: none;height: 0px;padding: 0px;margin: 0px;}.stacks_in_2202245mail{padding: 0;}.stacks_in_2202245fieldset{	border: none;	outline: none;	float : none !important;	text-align: left !important;}.stacks_in_2202245formail{}.stacks_in_2202245fieldset{	padding: 0 20px 0 3px;}#stacks_in_2202245 label{display: block;margin: 10px 0 0 0;padding: 0 0 5px 0;line-height: 1.1em;}#stacks_in_2202245 label *{display: inline;}#stacks_in_2202245 .stacks_in_2202245input{padding: 3px 7px 3px 7px;width: 100%;font-size: 12px;background: #FFFFFF !important;color: #555555 !important;margin: 0;border: 1px solid #D8D8D8 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px !important;}#stacks_in_2202245 textarea{padding: 7px;width: 100%;font-size: 13px;border: 1px solid #D8D8D8 !important;background: #FFFFFF !important;color: #555555 !important;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}.stacks_in_2202245sendmail{margin-top: 20px !important;padding: 4px 7px 4px 7px !important;display: block;text-align: center !important;font-size: 12px;color: #444444 !important;border: 1px solid #D8D8D8 !important;background-color: #FFFFFF !important;-moz-border-radius: 3px !important;-webkit-border-radius: 3px !important;border-radius: 3px;cursor: pointer;}#sendmail:hover{cursor: pointer;}.stacks_in_2202245response{display: none;width: 80%;border: 1px solid #D6392B;background: #FEF4FA;padding: 10px;margin: 20px auto 0 0;color: #444444;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;min-height: 35px;}.stacks_in_2202245loader{float: left;width: 35px;height: 35px;padding: 0 15px 30px 0;}.stacks_in_2202245autoreplay{visibility: hidden;height: 0px;display: none;}#stacks_in_2202245 textarea{	color: #555555 !important;}/* End Contact Form stack CSS code */
#stacks_in_2202245 {
	padding: 20px 0px 0px 0px;
}
/* Start dooMax stack CSS code */#stacks_in_2202253, .stacks_in_2202253MaxWidthContainer{	-webkit-box-sizing: border-box;	-moz-box-sizing: border-box;	box-sizing: border-box;}     .stacks_in_2202253MaxWidthContainer{	    max-width: 960px;	}    .stacks_in_2202253MaxWidthContainer{		margin: 0 auto 0 auto;	}@media only screen and (max-width: 1024px) {	 	    .stacks_in_2202253MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2202253MaxWidthContainer{			margin: 0 auto 0 auto;		}		}@media only screen and (max-width: 480px) {	 	    .stacks_in_2202253MaxWidthContainer{		    max-width: 960px;		}										    .stacks_in_2202253MaxWidthContainer{			margin: 0 auto 0 auto;		}		}/* End dooMax stack CSS code */
#stacks_in_2202253 {
	padding: 60px 0px 60px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_2202254Calligrapher{			font-size: 90% !important;			color: #666666 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_2202254Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202254Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202254Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202254Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202254Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202254Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold;		}		.stacks_in_2202254Calligrapher h6, .stacks_in_2202254Calligrapher h5, .stacks_in_2202254Calligrapher h4, .stacks_in_2202254Calligrapher h3, .stacks_in_2202254Calligrapher h2, .stacks_in_2202254Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_2202254Calligrapher, .stacks_in_2202254Calligrapher h1, .stacks_in_2202254Calligrapher h2, .stacks_in_2202254Calligrapher h3, .stacks_in_2202254Calligrapher h4, .stacks_in_2202254Calligrapher h5, .stacks_in_2202254Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_2202254targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_2202254Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_2202254Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_2202254Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_2202254Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */